mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-15 04:04:10 +01:00
Enable loopback interface earlier in startup
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@550 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
56f788e9c1
commit
019fc32d26
@ -3203,6 +3203,12 @@ initialize_netfilter () {
|
|||||||
setcontinue INPUT
|
setcontinue INPUT
|
||||||
setcontinue OUTPUT
|
setcontinue OUTPUT
|
||||||
|
|
||||||
|
#
|
||||||
|
# Enable the Loopback interface
|
||||||
|
#
|
||||||
|
run_iptables -A INPUT -i lo -j ACCEPT
|
||||||
|
run_iptables -A OUTPUT -o lo -j ACCEPT
|
||||||
|
|
||||||
#
|
#
|
||||||
# Allow DNS lookups during startup for FQDNs and deep-six INVALID packets
|
# Allow DNS lookups during startup for FQDNs and deep-six INVALID packets
|
||||||
#
|
#
|
||||||
@ -3511,12 +3517,6 @@ add_common_rules() {
|
|||||||
#
|
#
|
||||||
setup_blacklist
|
setup_blacklist
|
||||||
|
|
||||||
#
|
|
||||||
# Enable the Loopback interface
|
|
||||||
#
|
|
||||||
run_iptables -A INPUT -i lo -j ACCEPT
|
|
||||||
run_iptables -A OUTPUT -o lo -j ACCEPT
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Route Filtering
|
# Route Filtering
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user