ip_nat_irc is misstyped here is the diff to patch it --- /usr/sbin/ipkungfu 2004-02-09 16:34:37.000000000 -0500 +++ ipkungfu 2003-10-03 13:05:59.000000000 -0400 @@ -138,7 +138,7 @@ if [ $INIT != 1 ] ; then echo "Loading FTP NAT module..." fi - $MODPROBE ip_nat_ftp + $MODPROBE ip_nat_irc fi fi } Reproducible: Always Steps to Reproduce: 1. try to use it on a 2.6 kernel 2. 3. Actual Results: module already loaded error Expected Results: worked Either get the update from the author, or add this patch: --- /usr/sbin/ipkungfu 2004-02-09 16:34:37.000000000 -0500 +++ ipkungfu 2003-10-03 13:05:59.000000000 -0400 @@ -138,7 +138,7 @@ if [ $INIT != 1 ] ; then echo "Loading FTP NAT module..." fi - $MODPROBE ip_nat_ftp + $MODPROBE ip_nat_irc fi fi } that will fix it, or and could someone mark it ~amd64, it's working there patched. Thanks
I ran the diff backwards, sorry bout that: this is correct: --- ipkungfu 2003-10-03 13:05:59.000000000 -0400 +++ /usr/sbin/ipkungfu 2004-02-09 16:34:37.000000000 -0500 @@ -138,7 +138,7 @@ if [ $INIT != 1 ] ; then echo "Loading FTP NAT module..." fi - $MODPROBE ip_nat_irc + $MODPROBE ip_nat_ftp fi fi }
Thanks for the bug report. I've added ipkungfu-0.5.2-r1 to fix this using the following patch; --- ipkungfu 2003-10-03 13:05:59.000000000 -0400 +++ ipkungfu 2004-02-09 16:34:37.000000000 -0500 @@ -138,7 +138,7 @@ if [ $INIT != 1 ] ; then echo "Loading FTP NAT module..." fi - $MODPROBE ip_nat_irc + $MODPROBE ip_nat_ftp fi fi }