Subject: Re: IP NAT Freezing!
To: None <port-mac68k@netbsd.org>
From: Bruce Anderson <brucea@wavefront.com>
List: port-mac68k
Date: 08/30/1998 19:42:00
On Sat, Aug 29, 1998 10:59 PM, Sky Huvard <mailto:sky@huvard.com> wrote:
> Hey guys, I have recently installed NetBSD on my old 600cd with a
> DiiMOCache 50mhz card. Everything runs great, I have gotten IP NAT to
work,
> but once I route a few computers through it, it freezes. I am running
> 1.3.2! Thanks
>
>
> Sky Huvard - cyboboy@cybozone.com
> Webmaster - http://www.cybozone.com
>
Make sure routing is turned on ie. (net.inet.ip.forwarding=1)
# cat /etc/netstart.local
if [ -f /etc/ipnat.conf ]; then
sysctl -w net.inet.ip.forwarding=1;
echo 'starting IP network address translation (ipnat)...';
/usr/sbin/ipnat -f /etc/ipnat.conf
fi
# end /etc/netstart.local
And if you have ppp going with vj compression add
sysctl -w net.inet.tcp.rfc1323=0
to /etc/netstart.local
BA-