All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexandros Papadopoulos <apapadop@cmu.edu>
To: netfilter@lists.netfilter.org
Subject: Re: non-standard FTP ports and connection tracking (redux)
Date: Mon, 9 Dec 2002 21:46:39 -0500	[thread overview]
Message-ID: <200212092146.39732.apapadop@cmu.edu> (raw)
In-Reply-To: <200212091805.06266.apapadop@cmu.edu>

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Actually, it doesn't work like a charm. It seems that only active 
connections can be established. When the client switches to passive 
mode, the SYN packets it sends to my ftp server never make it through. 
:-(

I have the following in my script:

## Insert connection-tracking modules.
/sbin/modprobe ipt_state
/sbin/modprobe ip_conntrack
/sbin/modprobe ip_conntrack_ftp ports=2121
#/sbin/modprobe ipt_owner

## Flush all rules
/sbin/iptables -F
## Delete all custom tables
/sbin/iptables -X
## Zero all counters
/sbin/iptables -Z

## Set default policy to DROP for all chains
/sbin/iptables -P INPUT DROP
/sbin/iptables -P FORWARD DROP
/sbin/iptables -P OUTPUT DROP

#####################
#### CHAIN INPUT ####
#####################

## Accept everything incoming on loopback interface
/sbin/iptables -A INPUT -s 127.0.0.1 -d 127.0.0.1 -i lo -j ACCEPT

## Accept all incoming traffic from related or established connections
/sbin/iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

## Allow connections to our ftp server
/sbin/iptables -A INPUT -p tcp --dport 2121 -j ACCEPT


..but still, the packets with the SYN flag set when the client tries to 
establish the new data connection are dropped. Someone please tell me 
what am I missing? I'm sure it's something obvious but I can't seem to 
find it!

In case it helps, here's the output of /sbin/lsmod ^ip :

iptable_filter          2412   1  (autoclean)
ip_conntrack_ftp        5088   0  (unused)
ipt_state               1048   5
ip_conntrack           21244   2  [ip_conntrack_ftp ipt_state]
ip_tables              14936   2  [iptable_filter ipt_state]

(I don't do NAT - this is a single-homed machine)

Thanks

- -A
- -- 
http://andrew.cmu.edu/~apapadop/pub_key.asc
3DAD 8435 DB52 F17B 640F  D78C 8260 0CC1 0B75 8265
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE99VWPgmAMwQt1gmURAh/WAJ9SSTwSq4W3vIV2ZY+75JNIqHGyCwCfUkPf
3vAEp5uSYj7mUdrZcC/oCPE=
=QDnL
-----END PGP SIGNATURE-----



  reply	other threads:[~2002-12-10  2:46 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-12-09 22:01 non-standard FTP ports and connection tracking Kim Leandersson
2002-12-09 23:05 ` Alexandros Papadopoulos
2002-12-10  2:46   ` Alexandros Papadopoulos [this message]
2002-12-10  7:52     ` non-standard FTP ports and connection tracking (redux) Jozsef Kadlecsik
2002-12-10  8:12       ` Alexandros Papadopoulos
2002-12-10  8:46         ` Jozsef Kadlecsik
2002-12-10 16:18           ` Alexandros Papadopoulos
2002-12-12  9:16             ` Jozsef Kadlecsik
2002-12-13  6:09             ` Joel Newkirk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200212092146.39732.apapadop@cmu.edu \
    --to=apapadop@cmu.edu \
    --cc=netfilter@lists.netfilter.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.