From 97565f21515574944cd08e43437eff1c69754cab Mon Sep 17 00:00:00 2001 From: Marco Platania Date: Thu, 3 Aug 2017 17:36:08 -0400 Subject: Change OAM CIDR to /16 Change-Id: Ib0f72a46b934458a5a40f88d8416fb2c57a63d04 Signed-off-by: Marco Platania --- vagrant/setup_proxy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vagrant') 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 -- cgit 1.2.3-korg