Path: utzoo!attcan!uunet!cs.utexas.edu!rice!sun-spots-request From: smb@ulysses.att.com Newsgroups: comp.sys.sun Subject: Re: Moving to Unix System Keywords: SunOS Message-ID: <9333@brazos.Rice.edu> Date: 27 Jun 90 14:02:59 GMT Sender: root@rice.edu Organization: Sun-Spots Lines: 15 Approved: Sun-Spots@rice.edu X-Refs: Original: v9n232 X-Sun-Spots-Digest: Volume 9, Issue 231, message 10 | From: pearmana@prl.philips.co.uk | Subject: Moving to Unix system | | 1) Is there a limit, either with device files or the kernel, on the number | of remote logins permitted across ethernet ? We are thinking of using | TCP/IP terminal servers instead of RS232 cabling. If so is there a work | around ? (this would have to be something like just making more device | files as we will not have a source license) We will be using vt100's, | pc's, etc (NOT X-terminals). From a quick glance at the 4.0 source, you're limited to ~64 remote users. The telnet and rlogin daemons only look for 64 ptys. That's a piece of bad code inherited, I believe, from Berkeley -- the right way to have done it would be to have a subroutine that did all that, so you could fix it in one place. But that would have been too simple...