aboutsummaryrefslogtreecommitdiffstats
path: root/sysconfig/network-scripts/ifup-post
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2002-08-12 20:35:02 +0000
committerBill Nottingham <notting@redhat.com>2002-08-12 20:35:02 +0000
commit4edc473e3e708db975b4ef264d35cb4878d7cbfe (patch)
treef6c9e8eab3e1c0ac927563ee0a934f727cf0157b /sysconfig/network-scripts/ifup-post
parentff7a7b021275bce3b2b2e11336a970c8041066af (diff)
downloadinitscripts-4edc473e3e708db975b4ef264d35cb4878d7cbfe.tar
initscripts-4edc473e3e708db975b4ef264d35cb4878d7cbfe.tar.gz
initscripts-4edc473e3e708db975b4ef264d35cb4878d7cbfe.tar.bz2
initscripts-4edc473e3e708db975b4ef264d35cb4878d7cbfe.tar.xz
initscripts-4edc473e3e708db975b4ef264d35cb4878d7cbfe.zip
fix iptables invocation (#71201)
Diffstat (limited to 'sysconfig/network-scripts/ifup-post')
-rwxr-xr-xsysconfig/network-scripts/ifup-post2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysconfig/network-scripts/ifup-post b/sysconfig/network-scripts/ifup-post
index e36b3a93..da1ab88c 100755
--- a/sysconfig/network-scripts/ifup-post
+++ b/sysconfig/network-scripts/ifup-post
@@ -88,7 +88,7 @@ if [ "$FIREWALL_MODS" != "no" -a -f /etc/sysconfig/ipchains ] && \
if [ -n "$ns" ]; then
for nameserver in $ns ; do
if ! iptables -L RH-Lokkit-0-50-INPUT -n | grep -q $nameserver ; then
- iptables -A RH-Lokkit-0-50-INPUT -s $nameserver/32 --sport 53 -d 0/0 --dport 1025:65535 -p udp -m udp -j ACCEPT
+ iptables -A RH-Lokkit-0-50-INPUT -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