* FTP Problem
@ 2007-02-26 19:46 Vincent Elderkamp
2007-02-27 8:23 ` Rob Sterenborg
0 siblings, 1 reply; 3+ messages in thread
From: Vincent Elderkamp @ 2007-02-26 19:46 UTC (permalink / raw)
To: netfilter
Hi,
I'm a new user for netfilter en doesn't have experience with it...
I have written a simple firewall script in the past it works perfect,
but know the FTP section doesn't work at all....
Maybe can somebody help me.
Here is my code :
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -p tcp -i eth0 -s any/0 -d any/0 --dport 21 -j ACCEPT
iptables -A OUTPUT -p tcp -o eth0 -s any/0 --sport 21 -d any/0 ! --syn
-j ACCEPT
iptables -A INPUT -p tcp -i eth0 -s any/0 -d any/0 --dport 20 -j ACCEPT
iptables -A OUTPUT -p tcp -o eth0 -s any/0 --sport 20 -d any/0 ! --syn
-j ACCEPT
I have found some code on the internet but that doesn't work at all :
## FTP
# Allow ftp outbound.
iptables -A INPUT -i eth0 -p tcp --sport 21 -m state --state
ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o eth0 -p tcp --dport 21 -m state --state
NEW,ESTABLISHED -j ACCEPT
# Now for the connection tracking part of ftp. This is discussed more
completely in my section
# on connection tracking to be found here.
# 1) Active ftp.
# This involves a connection INbound from port 20 on the remote machine,
to a local port
# passed over the ftp channel via a PORT command. The ip_conntrack_ftp
module recognizes
# the connection as RELATED to the original outgoing connection to port
21 so we don't
# need NEW as a state match.
iptables -A INPUT -i eth0 -p tcp --sport 20 -m state --state
ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -o eth0 -p tcp --dport 20 -m state --state
ESTABLISHED -j ACCEPT
# 2) Passive ftp.
# This involves a connection outbound from a port >1023 on the local
machine, to a port >1023
# on the remote machine previously passed over the ftp channel via a
PORT command. The
# ip_conntrack_ftp module recognizes the connection as RELATED to the
original outgoing
# connection to port 21 so we don't need NEW as a state match.
iptables -A INPUT -i eth0 -p tcp --sport 1024:65535 --dport 1024:65535 \
-m state --state ESTABLISHED -j ACCEPT
iptables -A OUTPUT -o eth0 -p tcp --sport 1024:65535 --dport 1024:65535 \
-m state --state ESTABLISHED,RELATED -j ACCEPT
Hope someone can help me,
Thank you very much
Vincent
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: FTP Problem
2007-02-26 19:46 FTP Problem Vincent Elderkamp
@ 2007-02-27 8:23 ` Rob Sterenborg
2007-02-27 15:58 ` Vincent Elderkamp
0 siblings, 1 reply; 3+ messages in thread
From: Rob Sterenborg @ 2007-02-27 8:23 UTC (permalink / raw)
To: netfilter
> Hi,
>
> I'm a new user for netfilter en doesn't have experience with it...
>
> I have written a simple firewall script in the past it works perfect,
> but know the FTP section doesn't work at all....
>
> Maybe can somebody help me.
>
> Here is my code :
>
> iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
> iptables -A INPUT -p tcp -i eth0 -s any/0 -d any/0 --dport 21 -j
> ACCEPT iptables -A OUTPUT -p tcp -o eth0 -s any/0 --sport 21 -d any/0
> ! --syn -j ACCEPT iptables -A INPUT -p tcp -i eth0 -s any/0 -d any/0
> --dport 20 -j ACCEPT iptables -A OUTPUT -p tcp -o eth0 -s any/0
> --sport 20 -d any/0 ! --syn -j ACCEPT
Did you "modprobe ip_conntrack_ftp" and "modprobe ip_nat_ftp" ?
Grts,
Rob
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: FTP Problem
2007-02-27 8:23 ` Rob Sterenborg
@ 2007-02-27 15:58 ` Vincent Elderkamp
0 siblings, 0 replies; 3+ messages in thread
From: Vincent Elderkamp @ 2007-02-27 15:58 UTC (permalink / raw)
To: netfilter
Rob Sterenborg schreef:
>> Hi,
>>
>> I'm a new user for netfilter en doesn't have experience with it...
>>
>> I have written a simple firewall script in the past it works perfect,
>> but know the FTP section doesn't work at all....
>>
>> Maybe can somebody help me.
>>
>> Here is my code :
>>
>> iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
>> iptables -A INPUT -p tcp -i eth0 -s any/0 -d any/0 --dport 21 -j
>> ACCEPT iptables -A OUTPUT -p tcp -o eth0 -s any/0 --sport 21 -d any/0
>> ! --syn -j ACCEPT iptables -A INPUT -p tcp -i eth0 -s any/0 -d any/0
>> --dport 20 -j ACCEPT iptables -A OUTPUT -p tcp -o eth0 -s any/0
>> --sport 20 -d any/0 ! --syn -j ACCEPT
>
> Did you "modprobe ip_conntrack_ftp" and "modprobe ip_nat_ftp" ?
>
>
> Grts,
> Rob
>
>
>
>
>
My machine is a Cobalt Raq 4
AMD K6 III 450 mHz
I think I have all the nessesary modules loaded...
--------------------------------------
Module Size Used by
ipt_TOS 6272 34
ipt_LOG 10496 17
iptable_nat 11652 0
xt_state 6272 4
xt_tcpudp 7168 185
xt_limit 6784 25
ip_nat_ftp 7424 0
ip_nat 21420 2 iptable_nat,ip_nat_ftp
iptable_mangle 6912 1
iptable_filter 7168 1
ip_conntrack_ftp 11280 1 ip_nat_ftp
ip_conntrack 50356 5
iptable_nat,xt_state,ip_nat_ftp,ip_nat,ip_conntrack_ftp
ip_tables 18628 3 iptable_nat,iptable_mangle,iptable_filter
x_tables 19204 7
ipt_TOS,ipt_LOG,iptable_nat,xt_state,xt_tcpudp,xt_limit,ip_tables
ipv6 251552 23
--------------------------------------
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-02-27 15:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-02-26 19:46 FTP Problem Vincent Elderkamp
2007-02-27 8:23 ` Rob Sterenborg
2007-02-27 15:58 ` Vincent Elderkamp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox