Recent content by bobo221

  • 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!

  1. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    good catch - that was one of the first things that I confirmed at as part of the computer_1 setup: manual IP config and proper dns setup to prevent dns leak. (at least on the ipv4 side) ... there seems to be some issue with webrtc leak on the ipv6 side with this setup but something that...
  2. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    Success! Thanks to @eibgrad, @kfp, and @Jack Yaz for all of your help. The solution - the NAT rule (below) needs to be run from the nat-start script (and not the firewall-start script where I had it) iptables -t nat -I POSTROUTING -s 192.168.1.0/24 -o tun11 -j MASQUERADE the other 2 rules...
  3. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    Hi all - thanks again for all of the help .... @eibgrad - about your suggestion to add: iptables -I FORWARD -i eth0 -o tun11 -j ACCEPT My first attempt with my firewall-start script did initially have reference to 'eth0' for my wan connection in my forward chain but that didn't seem to...
  4. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    nvram get wan_iface no results ... iptables -I FORWARD -i $(nvram get wan_iface) -o tun11 -j ACCEPT ... so i assume that this won't work without the first command working.
  5. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    here is the output from the 'ip route show' command - using the built-in openvpn client in merlin:
  6. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    the output from both commands - the ip route command returns nothing (!) ....
  7. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    Ok - so I now have the following rules in my firewall-start and it still doesn't seem to want to work for computer_1 when i change it's gw to the VPN router: #accept all from 192.168.1.x subnet - get it to the top of the accept list iptables -I INPUT 1 -s 192.168.1.0/24 -j ACCEPT #forward...
  8. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    thanks for the quick reply! I've got the config done on computer_1 but I'm currently stuck on the iptables rules to add to the VPN router (192.168.9.1) - I've tried to add the following to firewall-start but doesn't seem to work .... maybe the forward rules need to go to the nat-start...
  9. B

    <routing / firewall config question> 2 router VPN setup works but has a small problem

    Hello - I'm hoping that someone can help me (long-time forum lurker/ first time poster) with a small issue that I have with my home network setup. Apologies in advance for the wall of text .... Basically, I have the following setup: Internet | Cable Modem | Primary router (AC66u...
Top