Package: kernel-image
Version: 2.6.8-2-686
i'm using ebtables 2.0.6-3 (from stable debian distribution) to make a brouter.
Here are the rules used:
ebtables -t broute -A BROUTING -p ipv4 -i eth1 --ip-dst 10.70.12.102 -j
redirect \
--redirect-target DROP
ebtables -t broute -A BROUTING -p ipv4 -i eth0 --ip-dst 10.50.22.102 -j
redirect \
--redirect-target DROP
ebtables -t broute -A BROUTING -p arp -i eth1 -d 00:12:3F:20:D8:E2 -j redirect \
--redirect-target DROP
ebtables -t broute -A BROUTING -p arp -i eth0 -d 00:12:3F:20:D8:E1 -j redirect \
--redirect-target DROP
ebtables -t broute -A BROUTING -p arp -i eth1 -d broadcast --arp-ip-dst
10.70.12.102 -j \
redirect --redirect-target DROP
ebtables -t broute -A BROUTING -p arp -i eth0 -d broadcast --arp-ip-dst
10.50.22.102 -j \
redirect --redirect-target DROP
ebtables -t broute -A BROUTING -p ipv4 -i eth1 --ip-src $RX_INTERNE -j redirect
\
--redirect-target DROP
When i want to make an arp broadcast from this brouter with arping for example
arping -B.
The kernel panic : Unable to handle kernel NULL pointer dereference at virtual
address 00000170
Oops: 0000 [#1]
Could you explain me if it is a bug or an error of utilisation?
Here's the /etc/network/interfaces file:
# The loopback network interface
auto lo
iface lo inet loopback
auto br0
iface br0 inet static
address 0.0.0.0
netmask 0.0.0.0
bridge_bridgeprio 10001
bridge_ports all
bridge_stp on
bridge_maxwait 0
bridge_fd 5
auto eth0
iface eth0 inet static
address 10.50.22.102
netmask 255.255.255.0
network 10.50.22.0
broadcast 10.50.22.255
gateway 10.50.22.254
dns-nameservers 10.50.22.254
dns-search interne
auto eth1
iface eth1 inet static
address 10.70.12.102
netmask 255.255.255.0
network 10.70.12.0
broadcast 10.70.12.255
I am using Debian GNU/Linux 3.1, kernel 2.6.8-2-686 and libc6 2.3.2.ds1-22.
Thanks.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]