Date: Mon, 04 Sep 1995 05:58:53 -0700 From: "Justin T. Gibbs" <gibbs@freefall.FreeBSD.org> To: Charlie Root <root@www.htl-tex.ac.at> Cc: freebsd-questions@freebsd.org Message-ID: <199509041258.FAA02704@freefall.FreeBSD.org> In-Reply-To: Your message of "Mon, 04 Sep 95 12:11:04 GMT." <199509041211.MAA00366@www.htl-tex.ac.at>
next in thread | previous in thread | raw e-mail | index | archive | help
>Subject: network-problem
>
>We have a little problem with our FreeBSD installation:
>
>
> When we try to get data via FTP/HTTPD from our server to our local
> network, we can get appr. 1K, then the data is "stuck".
> (netstat tells me, that there are 67000 bytes not acknowledged from
> remote system!)
>
> When we try to get data via FTP/HTTPD from our server to any other
> network, voila - NO PROBLEM.
>
>We have tried several hours fixing this problem, we came to no solution.
>
>
> PLEASE help us.
>
>
> RPG & BROWN (root@www.htl-tex.ac.at)
Turn off the RFC 1323 and 1644 TCP extensions. It sounds like your SLIP
or PPP line can't handle them (you're provider's terminal server is
broken). From /etc/netstart:
#
# XXX This is known to cause an error if /usr is nfs mounted since it
# will not be avaliable until after the network is up :-(. Once the
# relocation of sysctl to /sbin is done that problem will go away.
#
if [ -n "$tcp_extensions" -a "x$tcp_extensions" = "xNO" ] ; then
sysctl -w net.inet.tcp.rfc1323=0
sysctl -w net.inet.tcp.rfc1644=0
fi
--
Justin T. Gibbs
===========================================
Software Developer - Walnut Creek CDROM
FreeBSD: Turning PCs into workstations
===========================================
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199509041258.FAA02704>
