summaryrefslogtreecommitdiff
path: root/ipmasq/rules
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2002-01-03 12:54:18 +0000
committerJonas Smedegaard <dr@jones.dk>2002-01-03 12:54:18 +0000
commit164c744e8ebfea454fdd5559895a519b0602c567 (patch)
treea09dcd01b62c6174ffadcd6c8c248ce7a791dc73 /ipmasq/rules
parent17828c7caf5b7f0492c40d0a482a35bd4f0fc1f3 (diff)
ipmasq: Remove A10dhcpcd.rul: Problem fixed in 2.5.8 (bug #85767).
Diffstat (limited to 'ipmasq/rules')
-rw-r--r--ipmasq/rules/A10dhcpcd.rul22
1 files changed, 0 insertions, 22 deletions
diff --git a/ipmasq/rules/A10dhcpcd.rul b/ipmasq/rules/A10dhcpcd.rul
deleted file mode 100644
index 3f39085..0000000
--- a/ipmasq/rules/A10dhcpcd.rul
+++ /dev/null
@@ -1,22 +0,0 @@
-# Based on A10dhcpd.rul by Kalle Olavi Niemitalo <tosi@ees2.oulu.fi>:
-
-if [ -n "$INTERNAL" ]; then
- for i in $INTERNAL; do
- ipnm_cache $i
- case $MASQMETHOD in
- ipfwadm)
- $IPFWADM -I -i accept -S 0.0.0.0/0 67 -D 255.255.255.255/32 68 -W ${i%%:*} -P udp
-# $IPFWADM -O -i accept -S $IPOFIF/32 68 -D 255.255.255.255/32 67 -W ${i%%:*} -P udp
- ;;
- ipchains)
- $IPCHAINS -I input -j ACCEPT -s 0.0.0.0/0 67 -d 255.255.255.255/32 68 -i ${i%%:*} -p udp
-# $IPCHAINS -I output -j ACCEPT -s $IPOFIF/32 68 -d 255.255.255.255/32 67 -i ${i%%:*} -p udp
- ;;
- iptables)
- $IPTABLES -I INPUT -j ACCEPT -s 0.0.0.0/0 67 -d 255.255.255.255/32 68 -i ${i%%:*} -p udp
-# $IPTABLES -I OUTPUT -j ACCEPT -s $IPOFIF/32 68 -d 255.255.255.255/32 67 -i ${i%%:*} -p udp
- ;;
- esac
- done
-fi
-