From: "Mark Feijo" <cheesie@accglobal.net>
To: netfilter@lists.samba.org
Subject: can't access FTPs
Date: Mon, 20 May 2002 16:31:00 -0400 [thread overview]
Message-ID: <000001c2003d$41588300$0a00a8c0@feijo.local> (raw)
[-- Attachment #1: Type: text/plain, Size: 2063 bytes --]
Hello all,
Im having trouble allowing internal computers to access remote FTP
sites on the net. The new version of CUTE FTP can seem to connect ok.
But Internet Explorer gives an error Invalid PORT command. And Bullet
Proof FTP says it cant open the socket.
Also, one other question. Below is a section from my script. I wrote
most of my script from scratch but added this from another one that I
found. I notice that it slows down my internet a little. Any ideas
why?
# ICMP Control and Status Messages
# Log and drop initial ICMP fragments
iptables -A INPUT --fragment -p icmp -j LOG \
--log-prefix "Fragmented incoming ICMP: "
iptables -A INPUT --fragment -p icmp -j DROP
iptables -A OUTPUT --fragment -p icmp -j LOG \
--log-prefix "Fragmented outgoing ICMP: "
iptables -A OUTPUT --fragment -p icmp -j DROP
iptables -A FORWARD --fragment -p icmp -j LOG \
--log-prefix "Fragmented forwarded ICMP: "
iptables -A FORWARD --fragment -p icmp -j DROP
iptables -A INPUT -p icmp \
--icmp-type source-quench -d $NETIP -j ACCEPT
iptables -A OUTPUT -p icmp \
--icmp-type source-quench -j ACCEPT
iptables -A FORWARD -p icmp \
--icmp-type source-quench -j ACCEPT
iptables -A INPUT -p icmp \
--icmp-type parameter-problem -j ACCEPT
iptables -A OUTPUT -p icmp \
--icmp-type parameter-problem -j ACCEPT
iptables -A FORWARD -p icmp \
--icmp-type parameter-problem -j ACCEPT
iptables -A INPUT -p icmp \
--icmp-type destination-unreachable -j ACCEPT
iptables -A OUTPUT -p icmp \
--icmp-type fragmentation-needed -j ACCEPT
iptables -A FORWARD -p icmp \
--icmp-type fragmentation-needed -j ACCEPT
# Don¹t log dropped outgoing ICMP error messages
iptables -A OUTPUT -p icmp \
--icmp-type destination-unreachable -j DROP
iptables -A FORWARD -o $NETFACE -p icmp \
--icmp-type destination-unreachable -j DROP
thanks for any help.
Mark.
[-- Attachment #2: Type: text/html, Size: 17610 bytes --]
reply other threads:[~2002-05-20 20:31 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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='000001c2003d$41588300$0a00a8c0@feijo.local' \
--to=cheesie@accglobal.net \
--cc=netfilter@lists.samba.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox