From 002d379bf40613a5d2e572d329a88a42c0b56e59 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Tue, 15 May 2001 14:36:31 +0000 Subject: full path for iptables --- perl-install/standalone/drakgw | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'perl-install/standalone/drakgw') diff --git a/perl-install/standalone/drakgw b/perl-install/standalone/drakgw index 5a69ae0c4..ec545faaa 100755 --- a/perl-install/standalone/drakgw +++ b/perl-install/standalone/drakgw @@ -457,20 +457,20 @@ echo 1 > /proc/sys/net/ipv4/ip_forward # In the NAT table (-t nat), Append a rule (-A) after routing (POSTROUTING) # which says to MASQUERADE the connection (-j MASQUERADE). -iptables -t nat -A POSTROUTING -s $lan_address.0/24 -j MASQUERADE +/sbin/iptables -t nat -A POSTROUTING -s $lan_address.0/24 -j MASQUERADE # Allows forwarding specifically to our LAN -iptables -A FORWARD -s $lan_address.0/24 -j ACCEPT +/sbin/iptables -A FORWARD -s $lan_address.0/24 -j ACCEPT # Allow dhcp requests -iptables -A INPUT -i $device -p udp --sport bootpc --dport bootps -j ACCEPT -iptables -A INPUT -i $device -p tcp --sport bootpc --dport bootps -j ACCEPT -iptables -A INPUT -i $device -p udp --sport bootps --dport bootpc -j ACCEPT -iptables -A INPUT -i $device -p tcp --sport bootps --dport bootpc -j ACCEPT +/sbin/iptables -A INPUT -i $device -p udp --sport bootpc --dport bootps -j ACCEPT +/sbin/iptables -A INPUT -i $device -p tcp --sport bootpc --dport bootps -j ACCEPT +/sbin/iptables -A INPUT -i $device -p udp --sport bootps --dport bootpc -j ACCEPT +/sbin/iptables -A INPUT -i $device -p tcp --sport bootps --dport bootpc -j ACCEPT # Allow dns requests -iptables -A INPUT -i $device -p udp --dport domain -j ACCEPT -iptables -A INPUT -i $device -p tcp --dport domain -j ACCEPT +/sbin/iptables -A INPUT -i $device -p udp --dport domain -j ACCEPT +/sbin/iptables -A INPUT -i $device -p tcp --dport domain -j ACCEPT )); chmod 0700, $rc_firewall_24; @@ -656,6 +656,9 @@ Click on Configure to launch the setup wizard.", $setup_state)); #------------------------------------------------- #- $Log$ +#- Revision 1.43 2001/05/15 14:36:31 gc +#- full path for iptables +#- #- Revision 1.42 2001/04/12 13:50:24 gc #- add some rule so later on tinyfirewall will not prevent everything from working #- -- cgit v1.2.1