Minor changes at NSENTER section.

This commit is contained in:
2021-08-04 07:34:57 +00:00
parent 4fdc90ad35
commit 9a748efe8c

View File

@@ -4,6 +4,8 @@ NAME=$NAME-$COMMENT
CHAIN=$CHAIN
COMMENT=$COMMENT
PROTOCOL=$TYPE
VPN_IP=$VPN_IP
VPN_NETWORK=$VPN_NETWORK
##############################
@@ -41,11 +43,18 @@ if [[ "$NSENTER" == "true" ]] ; then
iptables="nsenter -t $(docker inspect --format {{.State.Pid}} $NAME) -n -- $IPTABLES -t nat";
if $iptables --list POSTROUTING |grep ESTABLISHED |grep RELATED|grep ACCEPT ; then
echo "nothing to do";
else $iptables -I POSTROUTING -m state --state established,related -j ACCEPT;
# DELETE UNECESSARY LINES FROM PREVIOUS RULES
LINES=$($iptables --line-number -n | grep $VPN_NETWORK | awk '{print $1}'| tac)
if [ -n "$LINES" ] ; then
for i in $LINES; do
$iptables -D $CHAIN $i
sleep 0.1
done
fi
$iptables -I POSTROUTING -m state --state established,related -j ACCEPT;
$iptables -I PREROUTING -d $SOURCE_IP -p $PROTOCOL --dport $SOURCE_PORT -m comment --comment "$COMMENT" -j DNAT --to $TARGET_IP:$TARGET_PORT
else