*BSD News Article 60428


Return to BSD News archive

#! rnews 2168 bsd
Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!news.mel.connect.com.au!munnari.OZ.AU!news.ecn.uoknor.edu!news.cis.okstate.edu!news.ksu.ksu.edu!news.physics.uiowa.edu!math.ohio-state.edu!howland.reston.ans.net!newsfeed.internetmci.com!usenet.eel.ufl.edu!pacifier!rainrgnews0!news.aracnet.com!news
From: Troy Curtiss <troyc@aracnet.com>
Newsgroups: comp.unix.bsd.freebsd.misc
Subject: Re: ppp works, why so slow?
Date: Tue, 23 Jan 1996 20:44:37 -0800
Organization: None
Lines: 39
Message-ID: <3105B935.41C67EA6@aracnet.com>
References: <4dro52$boo@osprey.unf.edu> <4e1ksp$d5b@helena.MT.net>
NNTP-Posting-Host: ppp-m20.aracnet.com
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: Mozilla 2.0b5 (X11; I; FreeBSD 2.1.0-RELEASE i386)
CC: caddy@osprey.unf.edu

Nate Williams wrote:
> 
> In article <4dro52$boo@osprey.unf.edu>,
> Cliff Addy <caddy@osprey.unf.edu> wrote:
> >It works, in that I can ping other sites on the net, telnet, ftp, etc, but
> >it's incredibly slow.
> 

I had this exact same problem right after I installed 2.1R on my system.
Turns out, it was the TCP extensions bunging up my ISP's terminal servers/net
equipment.

> >An ftp transfer of a 218K file started off in a massive burst
> >where it finished the first 20K in about 5 seconds, then stalled and finally
> >I gave up.  If I telnet into a site and do an ls, I'll get nothing for
> >several seconds, then a burst of a dozen lines, another huge pause, another
> >dozen lines, etc.

Try changing the line about TCP extensions in /etc/sysconfig to say NO and reboot.
----snip of my file-----
#
# Some broken implementations can't handle the RFC 1323 and RFC 1644
# TCP options.  If TCP connections randomly hang, try disabling this,
# and bug the vendor of the losing equipment.
#
tcp_extensions=NO
-----end of snip-------

or do a:
sysctl -w net.inet.tcp.rfc1323=0
sysctl -w net.inet.tcp.rfc1644=0

as root, and try again.  

I tried bugging my ISP about the stuff, but he said something about 'Linux works
just fine with it', so I'll just live without the TCP extensions (whatever they
do exactly anyway???)

-Troy