]> git.ipfire.org Git - thirdparty/iptables.git/commit
Fix /etc/network usage (Pablo Neira)
authorPablo Neira Ayuso <pablo@netfilter.org>
Wed, 29 Nov 2006 13:32:32 +0000 (13:32 +0000)
committerPatrick McHardy <kaber@trash.net>
Wed, 29 Nov 2006 13:32:32 +0000 (13:32 +0000)
commit267a57007e69d8f316dea80f79ce2560459e0c30
tree830cf99ea2a64617d3e8f3324548cf6dbecacba4
parent2ac1fadaf8a2915c1c0ac66c98edc2f36f8df4ed
Fix /etc/network usage (Pablo Neira)

http://bugs.debian.org/398082

iptables 1.3.5 and 1.3.6 appear to read /etc/networks, but the
information is lost somewhere with 1.3.6.

 # cat /etc/networks
 foonet 10.0.0.0

 # strace -s 255 -o /tmp/foo iptables -v -A INPUT -s foonet/8 -j
ACCEPT #1.3.5 [1]
 ACCEPT  all opt -- in * out *  10.0.0.0/8  -> 0.0.0.0/0

 # strace -s 255 -o /tmp/bar iptables -v -A INPUT -s foonet/8 -j
ACCEPT #1.3.6 [2]
 iptables v1.3.6: host/network `foonet.0.0.0' not found
 Try `iptables -h' or 'iptables --help' for more information.

1. http://people.debian.org/~ljlane/stuff/strace-iptables-1.3.5.txt
2. http://people.debian.org/~ljlane/stuff/strace-iptables-1.3.6.txt
extensions/libipt_NETMAP.c
include/iptables.h
iptables.c