home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / protocol / tcpip / 5649 < prev    next >
Encoding:
Text File  |  1992-12-16  |  2.6 KB  |  60 lines

  1. Newsgroups: comp.protocols.tcp-ip
  2. Path: sparky!uunet!cs.utexas.edu!qt.cs.utexas.edu!yale.edu!news.yale.edu!wardmac1.med.yale.edu!user
  3. From: matt@wardsgi.med.yale.edu (Matt Healy)
  4. Subject: Re: setting TCP parameters
  5. Message-ID: <matt-161292134253@wardmac1.med.yale.edu>
  6. Followup-To: comp.protocols.tcp-ip
  7. Sender: news@news.yale.edu (USENET News System)
  8. Nntp-Posting-Host: wardmac1.med.yale.edu
  9. Organization: Yale U. - Genetics
  10. References: <gmarzot-161292084738@gmarzot.mitre.org>
  11. Date: Wed, 16 Dec 1992 18:54:40 GMT
  12. Lines: 46
  13.  
  14. In article <gmarzot-161292084738@gmarzot.mitre.org>, gmarzot@mitre.org (G.
  15. S. Marzot) wrote:
  16. > Here is a question that I am sure has been asked before but no one I talk
  17. > to seems to know the answer. On a Sun Sparc 2 SunOS 4.1.X I would like to
  18. > set the default TCP window size to be as large as possible(32kbytes no ?).
  19. > Does anyone know a good source for this type of information.  I am working
  20. > on TCP over a satellite and I would also like to extend default time outs
  21. > to drop the TCP connection.  Does anyone know how to set this parameter as
  22. > well?  I assume it is in a header someplace and then I rebuild the kernel
  23. > but it would be nice to see the procedure written down before I start
  24. > flailing the system. Thanks in advance. -GSM
  25.  
  26. I don't know about Suns; as you can tell from my address I am on a
  27. Silicon Graphics workstation myself.  On SGIs, you change the parameters
  28. in various header files and then run the command "autoconfig" to
  29. reconfigure
  30. the kernel via lboot.  On my machine the various files live in the
  31. directory /usr/sysgen/master.d/* with fairly intuitive filenames and
  32. they are heavily commented.  Look for files called README or something
  33. similar in your /usr/sysgen/* directory tree.
  34.  
  35. I just did [grep "tcp" /usr/sysgen/master.d/*] on my sgi:
  36.  
  37. ----------------------------output follows---------
  38. wardsgi 42% grep "tcp" /usr/sysgen/master.d/*
  39. /usr/sysgen/master.d/bsd:int tcpprintfs  = 0;
  40. /usr/sysgen/master.d/bsd:unsigned 
  41. long tcp_sendspace = 60 * 1024;       /* must be < 64K */
  42. /usr/sysgen/master.d/bsd:unsigned 
  43. long tcp_recvspace = 60 * 1024;       /* must be < 64K */
  44. /usr/sysgen/master.d/bsd:int tcp_ttl = 60;
  45. /usr/sysgen/master.d/master.c:int tcpprintfs  = 0;
  46. /usr/sysgen/master.d/master.c:unsigned 
  47. long tcp_sendspace = 60 * 1024;  /* must be < 64K */
  48. /usr/sysgen/master.d/master.c:unsigned 
  49. long tcp_recvspace = 60 * 1024;  /* must be < 64K */
  50. /usr/sysgen/master.d/master.c:int tcp_ttl = 60;
  51. wardsgi 43%
  52. -------------------end of output------------
  53.  
  54. Matt Healy
  55. "I pretend to be a network administrator;
  56.  the lab net pretends to work"
  57.  
  58. matt@wardsgi.med.yale.edu
  59.