Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Nov 2000 09:51:26 +0900
From:      Satoshi Hasebe <hasebe@telecom0.eng.niigata-u.ac.jp>
To:        sdodson@beoclu-01.phy.gasou.edu
Cc:        stable@freebsd.org
Subject:   Re: natd issues
Message-ID:  <20001128095126M.hasebe@telecom0.eng.niigata-u.ac.jp>
In-Reply-To: <20001127192944.A435@beoclu-01.phy.gasou.edu>
References:  <20001127192944.A435@beoclu-01.phy.gasou.edu>

next in thread | previous in thread | raw e-mail | index | archive | help
In Message-ID: <20001127192944.A435@beoclu-01.phy.gasou.edu>
Scott Dodson <sdodson@beoclu-01.phy.gasou.edu> wrote  :

/etc/rc.firewall has changed from
---
case ${natd_enable} in
[Yy][Ee][Ss])
        if [ -n "${natd_interface}" ]; then
              ${fwcmd} add 50 divert natd all from any to any via ${natd_interface}
        fi
        ;;
esac
---

to

---
case ${firewall_type} in
[Oo][Pp][Ee][Nn]|[Cc][Ll][Ii][Ee][Nn][Tt])
        case ${natd_enable} in
        [Yy][Ee][Ss])
                if [ -n "${natd_interface}" ]; then
                        ${fwcmd} add 50 divert natd all from any to any via ${natd_interface}
                fi
                ;;
        esac
esac
---

that can cause a problem if you don't set firewall_type in /etc/rc.conf.

-- Satoshi Hasebe @ Niigata Univ. http://telecom0.eng.niigata-u.ac.jp/~hasebe/

> Since updating to 4.2 i have lost natd functionality.  I also ran
> mergemaster at the same time when I updated.  I can't seem to find
> any mention of changes concerning natd, am I missing something?
> 
> --scott
> 
> 
> To Unsubscribe: send mail to majordomo@FreeBSD.org
> with "unsubscribe freebsd-stable" in the body of the message
> 


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?20001128095126M.hasebe>