diff options
author | Bill Nottingham <notting@redhat.com> | 2003-02-24 16:15:10 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2003-02-24 16:15:10 +0000 |
commit | 59298506e8d2df987d0d28085f40b1b7b2e11c76 (patch) | |
tree | 3e95ae50520ee6372ded525055c9b09769c9efae /sysconfig/network-scripts/ifup-post | |
parent | bd49fd62336a44a1486ec667ca4f6da8b72f4ccf (diff) | |
download | initscripts-59298506e8d2df987d0d28085f40b1b7b2e11c76.tar initscripts-59298506e8d2df987d0d28085f40b1b7b2e11c76.tar.gz initscripts-59298506e8d2df987d0d28085f40b1b7b2e11c76.tar.bz2 initscripts-59298506e8d2df987d0d28085f40b1b7b2e11c76.tar.xz initscripts-59298506e8d2df987d0d28085f40b1b7b2e11c76.zip |
handle changed chain name
Diffstat (limited to 'sysconfig/network-scripts/ifup-post')
-rwxr-xr-x | sysconfig/network-scripts/ifup-post | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post index 2fbafbfb..35b62622 100755 --- a/sysconfig/network-scripts/ifup-post +++ b/sysconfig/network-scripts/ifup-post @@ -83,12 +83,12 @@ if [ "$PEERDNS" != "no" -o -n "$RESOLV_MODS" -a "$RESOLV_MODS" != "no" ]; then fi if [ "$FIREWALL_MODS" != "no" -a -f /etc/sysconfig/iptables ] && \ - iptables -L -n 2>/dev/null | grep -q RH-Lokkit-0-50-INPUT ; then + iptables -L -n 2>/dev/null | grep -q RH-Lokkit-0-50 ; then ns=`awk '/^nameserver / { print $2 }' /etc/resolv.conf` if [ -n "$ns" ]; then for nameserver in $ns ; do - if ! iptables -L RH-Lokkit-0-50-INPUT -n | grep -q $nameserver ; then - iptables -I RH-Lokkit-0-50-INPUT -m udp -s $nameserver/32 --sport 53 -d 0/0 --dport 1025:65535 -p udp -j ACCEPT + if ! iptables -L RH-Lokkit-0-50 -n | grep -q $nameserver ; then + iptables -I RH-Lokkit-0-50 -m udp -s $nameserver/32 --sport 53 -d 0/0 --dport 1025:65535 -p udp -j ACCEPT [ -x /usr/bin/logger ] && logger $"punching nameserver $nameserver through the firewall" fi done |