# # # 29-Oct-05 amo Date-of-Birth # # # http://netfilter.org/projects/iptables/files/iptables-1.3.3.tar.bz2 # # http://netfilter.org/downloads.html#rsync # # # # To access the FTP tree, use # rsync -av rsync.netfilter.org::ftp ./ftp # # # # To access the WWW tree, use # rsync -av rsync.netfilter.org::www ./www # # http://samba.anu.edu.au/rsync/ # # http://netfilter.org/documentation/index.html#netfilter-mirror -- MIRROR # # # iptables -V # ============== # iptables v1.2.8 # # cd /usr/local/src # # tar jxpvf iptables-1.3.3.tar.bz2 # cd iptables-1.3.3 # make KERNEL_DIR=/usr/local/src/Kernel/linux-2.4.31 # make install KERNEL_DIR=/usr/local/src/Kernel/linux-2.4.31 # /usr/local/sbin # /usr/local/lib/iptables/ # # # # kernel modules from kernel.org # /lib/modules/2.4.31-ow1/kernel/net/ipv4/netfilter/ # # # Move the old iptables aside # --------------------------- # mv /usr/sbin/iptables /usr/sbin/iptables-1.2.8 # mv /usr/lib/iptables /usr/lib/iptables-1.2.8 # ldconfig # # # modprobe iptable_filter # ======================= # /lib/modules/2.4.31-ow1/kernel/net/ipv4/netfilter/iptable_filter.o: unresolved symbol nf_unregister_hook # /lib/modules/2.4.31-ow1/kernel/net/ipv4/netfilter/iptable_filter.o: unresolved symbol nf_register_hook # # # # bad solution, but it shoudl avoid the unresolved symbols: turn off CONFIG_MODVERSIONS # # # # # /usr/local/sbin/iptables -L # =========================== # modprobe: Can't locate module ip_tables # iptables v1.3.3: can't initialize iptables table `filter': Table does not exist (do you need to insmod?) # Perhaps iptables or your kernel needs to be upgraded. # # # # End of file