You are not logged in.

#1 2009-04-30 02:44:21

darthaxul
Member
Registered: 2008-09-24
Posts: 156

segfault on iptables

Anyone have similar problems with the ftp protocol, for example
iptables -p ftp -j ACCEPT
...segfault...
the ftp protocol is compiled into the kernel so i dont know what happened with the package or something.

Offline

#2 2009-04-30 09:37:25

fumbles
Member
Registered: 2006-12-22
Posts: 246

Re: segfault on iptables

ftp is tcp, which is what the -p is for
you need something liek this:

iptables -p tcp -m tcp --dport 21 -j ACCEPT

Offline

Board footer

Powered by FluxBB