#!/bin/sh
drv=sk98lin

echo 0 > /proc/sys/net/ipv6/conf/all/forwarding
modprobe ipv6
ifconfig eth0 down
ifconfig eth1 down
rmmod forcedeth
rmmod $drv

modprobe $drv
# the bug happens in the next line
ifconfig eth0 192.168.0.23 up ; ifconfig eth0 add 2003:1234:1234::1/64 ; echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
sleep 9
cat /proc/net/igmp6 > /root/igmp6.$$
rmmod $drv

