mirror of
https://gitlab.com/shorewall/code.git
synced 2025-04-16 15:28:35 +02:00
Fix 'disable_ipv6 -- take 2
This commit is contained in:
parent
fde24c16df
commit
c028fefa30
@ -32,9 +32,11 @@ clear_firewall() {
|
|||||||
echo 1 > /proc/sys/net/ipv4/ip_forward
|
echo 1 > /proc/sys/net/ipv4/ip_forward
|
||||||
|
|
||||||
if [ -n "$DISABLE_IPV6" ]; then
|
if [ -n "$DISABLE_IPV6" ]; then
|
||||||
$IP6TABLES -P INPUT ACCEPT 2> /dev/null
|
if [ -x $IPTABLES ]; then
|
||||||
$IP6TABLES -P OUTPUT ACCEPT 2> /dev/null
|
$IP6TABLES -P INPUT ACCEPT 2> /dev/null
|
||||||
$IP6TABLES -P FORWARD ACCEPT 2> /dev/null
|
$IP6TABLES -P OUTPUT ACCEPT 2> /dev/null
|
||||||
|
$IP6TABLES -P FORWARD ACCEPT 2> /dev/null
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
run_clear_exit
|
run_clear_exit
|
||||||
|
Loading…
Reference in New Issue
Block a user