Search results

  • 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. A

    Asuswrt-Merlin Layer 7 QoS

    Has anyone actually been able to get layer 7 filtering to block bittorrent traffic? Ive been using insmod /lib/modules/2.6.22.19/kernel/net/netfilter/xt_layer7.ko iptables -I FORWARD -s 192.168.1.0/24 -m layer7 --l7prot o bittorrent -j DROP and verified module is loading with lsmod but...
  2. A

    Selective Routing with Asuswrt-Merlin

    iptables -I FORWARD -i br0 -s 192.168.1.0/24 -o eth0 -j DROP iptables -I FORWARD -s 192.168.1.0/24 -o ! tun11 -p tcp -m multiport --dport 80,443,25,110,143,8888 -j ACCEPT So ive been using the above for a few weeks now to block torrent traffic until the VPN goes up ands its been working as...
  3. A

    Selective Routing with Asuswrt-Merlin

    Ive actually got it working using iptables like this iptables -I FORWARD -i br0 -s 192.168.1.0/24 -o eth0 -j DROP iptables -I FORWARD -s 192.168.1.0/24 -o ! tun11 -p tcp --dport 80 -j ACCEPT iptables -I FORWARD -s 192.168.1.0/24 -o ! tun11 -p tcp --dport 443 -j ACCEPT This forces all traffic...
  4. A

    Selective Routing with Asuswrt-Merlin

    Hey guys, I have another question if anyone wouldnt mind assisting! Ive been trying to use this method for blocking traffic not going through the VPN and it works great with my torrents iptables -I FORWARD -i br0 -s 192.168.1.0/24 -o eth0 -j DROP BUT it blocks ALL traffic until the VPN is up...
  5. A

    Selective Routing with Asuswrt-Merlin

    WOW! that was it alright. I really just copied that as a template to my textedit and replaced his script w/ mine without even thinking about it. All is working as expected now! Thx for the help I really do appreciate it!
  6. A

    Help with openvpn-event script when tun11 goes up/down

    Here is a second method I have tested that is not working either - --------- Please see this particular post, this is what I base mine script on: http://forums.smallnetbuilder.com/sh...2&postcount=64 Note the additional openvpn options: route-nopull < V important script-security 2 route-up...
  7. A

    Selective Routing with Asuswrt-Merlin

    I have been trying to test these settings and after adding the route up portion to the custom config im getting an error like this in syslog Jun 15 07:51:04 openvpn[10161]: WARNING: Failed running command (--route-up): could not execute external program Ive already chmod + x the script so it...
  8. A

    Help with openvpn-event script when tun11 goes up/down

    Hey guys ive created two scripts that I want to use when either the tun11 interface goes up or goes down and ive been trying to call these scripts using the openvpn-event script but has so far been unsuccessful. Ive done some research and I found a template if [ $script_type == "up" -a...
Top