a little more verbose error message to point out the issue if vsys fails to execute...
[vsys.git] / factory / setup-nat
index 5955868..9a0c4f5 100755 (executable)
@@ -8,7 +8,7 @@ read KEY
 ETUN0=nat$KEY
 ETUN1=natx$KEY
 ip link add name $ETUN0 type veth peer name $ETUN1
-ifconfig $ETUN1 10.0.$KEY.1 up
+ifconfig $ETUN1 10.0.$KEY.1/24 up
 
 iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
 iptables -A FORWARD -i eth0 -o $ETUN1 -m state --state RELATED,ESTABLISHED -j ACCEPT
@@ -23,7 +23,7 @@ cat > $GRAB <<EOF
 
 read PID
 
-ip link set $ETUN0 netns $PID 
+ip link set $ETUN0 netns \$PID 
 EOF
 chmod +x $GRAB