Date: Thu, 17 Aug 2000 23:04:21 -0700 From: Rudy R <rudybulk@monkeybrains.net> To: freebsd-stable@FreeBSD.ORG Subject: Re: ftpd problems... Message-ID: <399CD1E5.E8E931E1@monkeybrains.net> References: <399CC78B.A99D84F0@monkeybrains.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Here is my recommendation, add the following to rc.firewall: case ${natd_enable} in [Yy][Ee][Ss]) if [ -n "${natd_interface}" ]; then ${fwcmd} add 98 divert natd all from any to any via ${natd_interface} fi ;; [Ff][Tt][Pp]) if [ -n "${natd_interface}" ]; then ${fwcmd} add 97 allow tcp from any 20 to any out via ${natd_interface} ${fwcmd} add 98 divert natd all from any to any via ${natd_interface} fi ;; esac Rudy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?399CD1E5.E8E931E1>