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. J

    Selective Routing for Netflix

    hmmm Netflix still isn't working but the script seems to execute ok with no errors now and i have it in nat-start but ipset -L NETFLIX returns not set edit - typo in nat-start im an idiot
  2. J

    Selective Routing for Netflix

    But... I get the Netflix streaming error :( Think this issue is here netsv4 is empty + curl https://ipinfo.io/AS2906 + grep -E a href.*2906\/ + grep -v : + sed s/^.*\">//; s/<.*//; /^\s*$/d + netsv4=
  3. J

    Selective Routing for Netflix

    looks good + ip rule del prio 9990 + ip rule add from 0/0 fwmark 8 table main prio 9990 + iptables -t mangle -D PREROUTING -i br0 -p tcp -m set --set NETFLIX dst,dst -j MARK --set-mark 8 + iptables -t mangle -A PREROUTING -i br0 -p tcp -m set --set NETFLIX dst,dst -j MARK --set-mark 8 +...
  4. J

    Selective Routing for Netflix

    final issue + ip rule del prio 9990 + ip rule add from 0/0 fwmark 0x7000/0x7000 table main prio 9990 Error: argument "0x7000/0x7000" is wrong: fwmark value is invalid + iptables -t mangle -D PREROUTING -i br0 -p tcp -m set --set NETFLIX dst,dst -j MARK --set-mark 0x7000/0x7000 + iptables -t...
  5. J

    Selective Routing for Netflix

    almost there it needs to be nethash not hash:net for 4.5 as per @redhat27's script # Create IPSET lists ipset -N WAN0 nethash ipset -N NETFLIX nethash ipset -N AMAZONAWS nethash
  6. J

    Selective Routing for Netflix

    no success + ipset -N WAN0 hash:net ipset v4.5: Couldn't load settype `hash:net':File not found Try `ipset -H' or 'ipset --help' for more information. + ipset -N NETFLIX hash:net ipset v4.5: Couldn't load settype `hash:net':File not found Try `ipset -H' or 'ipset --help' for more information...
  7. J

    Selective Routing for Netflix

    no it wasn't created + ipset -N WAN0 AMAZONAWS ipset v4.5: Couldn't load settype `AMAZONAWS':File not found
  8. J

    Selective Routing for Netflix

    I added some ipset version checking in but I still get an error, also i don't know if it should be 6 or 6.0 as I don't have v6 #get ipset version info IPSET_VER=$(ipset -v) IPSET_VER=${IPSET_VER:7:3} # Create IPSET lists if [ "$IPSET_VER" == "6" ];then ipset create AMAZONAWS hash:net family...
  9. J

    Selective Routing for Netflix

    RTN66U Merlin 380.70, sorry should've read the note :D in 4.5 i changed add to -N but the note also says something about create? I'm still getting the following. I will try to modify the script to check the version of ipset and use the relevent commands accordingly. Try `ipset -H' or 'ipset...
  10. J

    Selective Routing for Netflix

    Any ideas set add AMAZONAWS 52.144.194.0/26 Bad argument `add' Try `ipset -H' or 'ipset --help' for more information. + ipset add AMAZONAWS 54.150.0.0/16 Bad argument `add' Try `ipset -H' or 'ipset --help' for more information. + ipset add AMAZONAWS 18.200.0.0/16 Bad argument `add' Try `ipset...
  11. J

    Selective Routing for Netflix

    Am I correct this thinking this is the most upto date script to simply route Netflix to WAN. I'm running PIA on merlin and simply want to route Netflix to the WAN and bypass the VPN. There are many versions spread across this thread maybe you could keep a upto date tutorial in post 1 with the...
Top