From: Jason Opperisano <opie@817west.com>
To: netfilter@lists.netfilter.org
Subject: Re: FTP rules
Date: Mon, 31 Jan 2005 11:41:38 -0500 [thread overview]
Message-ID: <20050131164138.GA25132@bender.817west.com> (raw)
In-Reply-To: <web-42708298@infinito.it>
On Mon, Jan 31, 2005 at 05:40:24PM +0100, hamals@infinito.it wrote:
>
> my PCs behind my firewall didn't get ftp connection to
> any external ftp server. Why?
>
> /sbin/modprobe ip_contrack
> /sbin/modprobe ip_contrack_ftp
how about this as well:
/sbin/modprobe ip_nat_ftp
> # LAN -> INTERNET
> iptables -A FORWARD -i $LAN -o $INET -p tcp --dport 21 -j
> ACCEPT
> iptables -A FORWARD -i $LAN -o $INET -p tcp --dport 20 -j
> ACCEPT
second rule is unnecessary.
> # INTERNET ->LAN
> iptables - A FORWARD -i $INET -o $LAN -p tcp -m state
> --state ESTABLISHED, RELATED -j ACCEPT
you need to allow ESTABLISHED,RELATED packets from LAN -> INTERNET as
well, try using:
iptables -A FORWARD -m state --state ESTABLISHED,RELATED -j ACCEPT
instead of your rule above.
> # NAT
> iptables -t nat -A POSTROUTING -s $IPs_LAN -o $INET -j
> SNAT --to-source $INET_IP
-j
--
"My cat's breath smells like cat food."
--The Simpsons
next prev parent reply other threads:[~2005-01-31 16:41 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-01-31 16:40 FTP rules hamals
2005-01-31 16:41 ` Jason Opperisano [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-08-16 11:00 ftp rules varun_saa
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=20050131164138.GA25132@bender.817west.com \
--to=opie@817west.com \
--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.