Recent content by Ciccio

  1. C

    How to setting SNAT source port

    Perfect, it's working! Thank you!
  2. C

    How to setting SNAT source port

    It seems to work. This is my nat-start #!/bin/sh iptables -t nat -I POSTROUTING 2 -o eth0 -j SNAT -p sctp --to-source MyPublicStatipIPv4:32768-49151 iptables -t nat -I POSTROUTING 2 -o eth0 -j SNAT -p udp --to-source MyPublicStatipIPv4:32768-49151 iptables -t nat -I POSTROUTING 2 -o eth0 -j SNAT...
  3. C

    How to setting SNAT source port

    When i am at home I Will try this. Anyway, this Is my POSTROUTING chain, what rule i must delete and How? Thanks Chain POSTROUTING (policy ACCEPT 8185 packets, 572K bytes) pkts bytes target prot opt in out source destination 5274 674K PUPNP all -- * eth0...
  4. C

    How to setting SNAT source port

    Hi, my ISP natively work in IPv6. IPv4 is shared with 4 users, and everyone have assigned 1/4 of ports (I have range from 32768 to 49151) . ISP router has "ONT mode" function that forward to my Asus RT-AC86U pubblic IPv4 address on WAN interfacce (I can see that as WAN IP address) but internet...
  5. C

    USB Application Accounts messed up RT-AC86U

    Ok, many thanks
  6. C

    USB Application Accounts messed up RT-AC86U

    Hi, I have the same problem, but not worked for me because (i think) my admin username has special char (is in the form "abcd-efgh"). So, in /etc/samba/smbpasswd I have abcd▒gh and in the WebUI, sambauser is "abcdgh". I try to write clear text instead $(nvram get http_username) but not working...
  7. C

    Policy Based Routing IPTV problem

    I follow this guide, the https://ipleak.net/ in Torrent address detection show me the VPN IP address, but transmission not downloading, and in log I have Tracker error: "Connection failed" I have install Transmission how reported here...
  8. C

    Policy Based Routing IPTV problem

    I tried what you suggested, but it doesn't work. I also tried to perform the same thing for transmission installed on the router as described here https://github.com/RMerl/asuswrt-merlin/wiki/Policy-based-Port-routing-(manual-method), but I keep seeing my public ip. Here are the iptables rules...
  9. C

    Policy Based Routing IPTV problem

    I'm trying with -p tcp and -p udp but not working.
  10. C

    Policy Based Routing IPTV problem

    The torrent port 47455 is source port, the port 2300 is destination port, so i've created new rule
  11. C

    Policy Based Routing IPTV problem

    I'm here again! :D Hi guys, I continue this post because I have a similar problem. I would like to apply the rule to my torrent client that uses 47455 as the local port, so i've added as follow in vpnclient1-route-up: iptables -t mangle -D PREROUTING -i br0 -m iprange --src 192.168.1.13 -p all...
  12. C

    Policy Based Routing IPTV problem

    Thank you for helping me solve the problem and I hope it can serve other forum users :D I don't think there are any dns leaks because the dns requests come from an ip referable to the vpn provider
  13. C

    Policy Based Routing IPTV problem

    Ok, now It work. Have both nat-start and vpnclient1-route-up. Ok i moved this iptables rules from nat-start to vpnclient1-route-up before "fi" and it seems to work. The devices not in 192.168.1.8/29 use defined DNS in WAN config pages (Google's DNS) and all traffic go by WAN. The devices in...
  14. C

    Policy Based Routing IPTV problem

    Sorry :oops: If you mean UseDNSOnly instead of UseDNSonly, I had already seen it. Now i have the nat-start as follow #!/bin/sh sleep 10 # During the boot process nat-start may run multiple times so this is required # Ensure duplicate rules are not created for VPN_ID in 0 1 2 3 4 5...
  15. C

    Policy Based Routing IPTV problem

    Something went wrong. Accept DNS Configuration: Exclusive Removed custom config "dhcp-option xxx.xxx.xxx.xxx" Removed in nat-start ip rule add from 192.168.1.8/29 to 198.18.0.1 table ovpnc1 prio 8001 Added in nat-start for VPN_ID in 0 1 2 3 4 5 do ip rule del prio 999$VPN_ID...
Back
Top