So, I too am having issues with this release on my beloved
RT-AC88U. I feel like
right now!
I went from release
380.69_2 to
384.4_2. After updating, I initialized and reconfigured the settings with the exception of the nat-start script. I also run a
VPN client using AirVPN service but reconfigured that last. Now, both the 2.4 ghz and 5 ghz wireless worked at first however, once I put in my nat-start script for port forwarding through my VPN, everything broke. My laptop's LAN connection appears fine, as in it shows I'm connected with no issues, and wireless shows to be connected but with no internet, yet I cannot access anything on the web even through just my LAN connection. I discovered that if I rename the
nat-start script so it doesn't get loaded and reboot the router, everything works again.
So it's either...
1) The
384.4_2 breaks port forwarding in which I will have to revert to
380.69_2 or try a maybe 38x.x
or
2) My nat-start script is broken (though it worked before) in which case can someone here please review it?
This is what I was using that
did work.
Code:
#!/bin/sh
iptables -t nat -A POSTROUTING -s [URL='http://10.4.0.0/24']10.8.0.0/24[/URL] -o eth0 -j MASQUERADE
#Port forwarding for transmission
iptables -t nat -I PREROUTING -i tun11 -p tcp --dport 61xxx -j DNAT --to-destination 192.168.1.x
iptables -t nat -I PREROUTING -i tun11 -p udp --dport 61xxx -j DNAT --to-destination 192.168.1.x
iptables -I FORWARD -i tun11 -p udp -d 192.168.1.x --dport 61xxx -j ACCEPT
iptables -I FORWARD -i tun11 -p tcp -d 192.168.1.x --dport 61xxx -j ACCEPT
Does my script need to be modified? Is there another method to forward a single port to a single IP on my network?
I have to this forum and everyone in this community has been invaluable. I would appreciate any assistance and recommendations on any of this.