diff options
author | 2017-08-04 14:35:26 +0000 | |
---|---|---|
committer | 2017-08-04 14:35:26 +0000 | |
commit | 98e9a903f874816de88c99beef5871910e1a83f0 (patch) | |
tree | 0388b977a82f6d32768eff70d3ec4b3ef3edc9c9 /vagrant | |
parent | 8b91579e896891863aca6bb0ab4e38adcbce2b3f (diff) | |
parent | 97565f21515574944cd08e43437eff1c69754cab (diff) |
Merge "Change OAM CIDR to /16"
Diffstat (limited to 'vagrant')
-rwxr-xr-x | vagrant/setup_proxy.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vagrant/setup_proxy.sh b/vagrant/setup_proxy.sh index 2161f295..da7452e6 100755 --- a/vagrant/setup_proxy.sh +++ b/vagrant/setup_proxy.sh @@ -31,9 +31,9 @@ sudo iptables -t mangle -F sudo iptables -t nat -F sudo iptables -t nat -N REDSOCKS || true -sudo iptables -t nat -A REDSOCKS -d 0.0.0.0/8 -j RETURN -sudo iptables -t nat -A REDSOCKS -d 10.0.0.0/8 -j RETURN -sudo iptables -t nat -A REDSOCKS -d 127.0.0.0/8 -j RETURN +sudo iptables -t nat -A REDSOCKS -d 0.0.0.0/16 -j RETURN +sudo iptables -t nat -A REDSOCKS -d 10.0.0.0/16 -j RETURN +sudo iptables -t nat -A REDSOCKS -d 127.0.0.0/16 -j RETURN sudo iptables -t nat -A REDSOCKS -d 169.254.0.0/16 -j RETURN sudo iptables -t nat -A REDSOCKS -d 172.16.0.0/12 -j RETURN sudo iptables -t nat -A REDSOCKS -d 192.168.0.0/16 -j RETURN |