Fix for CentOS 8
- Minor fix for IPTables FORWARD rules on CentOS 8 - Cleanup
This commit is contained in:
parent
dc1bcb21f9
commit
28b02f28db
@ -392,10 +392,10 @@ if [ "$ipt_flag" = "1" ]; then
|
||||
iptables -I FORWARD 4 -i ppp+ -o ppp+ -s "$L2TP_NET" -d "$L2TP_NET" -j ACCEPT
|
||||
iptables -I FORWARD 5 -i "$NET_IFACE" -d "$XAUTH_NET" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
|
||||
iptables -I FORWARD 6 -s "$XAUTH_NET" -o "$NET_IFACE" -j ACCEPT
|
||||
iptables -A FORWARD -j DROP
|
||||
iptables -t nat -I POSTROUTING -s "$XAUTH_NET" -o "$NET_IFACE" -m policy --dir out --pol none -j MASQUERADE
|
||||
iptables -t nat -I POSTROUTING -s "$L2TP_NET" -o "$NET_IFACE" -j MASQUERADE
|
||||
echo "# Modified by hwdsl2 VPN script" > "$IPT_FILE"
|
||||
iptables -A FORWARD -j DROP
|
||||
iptables-save >> "$IPT_FILE"
|
||||
fi
|
||||
|
||||
|
@ -454,6 +454,7 @@ if [ "$ipt_flag" = "1" ]; then
|
||||
iptables -I FORWARD 4 -i ppp+ -o ppp+ -s "$L2TP_NET" -d "$L2TP_NET" -j ACCEPT
|
||||
iptables -I FORWARD 5 -i "$NET_IFACE" -d "$XAUTH_NET" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
|
||||
iptables -I FORWARD 6 -s "$XAUTH_NET" -o "$NET_IFACE" -j ACCEPT
|
||||
iptables -A FORWARD -j DROP
|
||||
iptables -t nat -I POSTROUTING -s "$XAUTH_NET" -o "$NET_IFACE" -m policy --dir out --pol none -j MASQUERADE
|
||||
iptables -t nat -I POSTROUTING -s "$L2TP_NET" -o "$NET_IFACE" -j MASQUERADE
|
||||
echo "# Modified by hwdsl2 VPN script" > "$IPT_FILE"
|
||||
@ -471,7 +472,6 @@ if [ "$ipt_flag" = "1" ]; then
|
||||
echo "flush ruleset" >> "$IPT_FILE"
|
||||
nft list ruleset >> "$IPT_FILE"
|
||||
else
|
||||
iptables -A FORWARD -j DROP
|
||||
iptables-save >> "$IPT_FILE"
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user