• SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Recent content by Enghausen

  1. E

    Policy-based ruling VPN block outside access, how to fix it?

    My router made a hiccup without the --match option ;) (Firmware: Merlin 378.55)
  2. E

    Policy-based ruling VPN block outside access, how to fix it?

    #!/bin/sh sleep 30 iptables -I FORWARD -i tun11 -p udp -d 192.168.1.47 --match multiport --dports 80,443,61158 -j ACCEPT iptables -I FORWARD -i tun11 -p tcp -d 192.168.1.47 --match multiport --dports 80,443,61158 -j ACCEPT iptables -t nat -I PREROUTING -i tun11 -p tcp --match multiport --dports...
Back
Top