6 lines
132 B
Plaintext
6 lines
132 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ "$IFACE" == "gre*" ];
|
||
|
then
|
||
|
iptables -t nat -D POSTROUTING -o $IFACE -j SNAT --to-source {{ ffrl_ipv4 }}
|
||
|
fi
|