- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: telnet
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2005 07:30 PM
09-22-2005 07:30 PM
telnet
i'm using very old 2.2 kernel machine,now
how do i findout how many telnet sessions are allowed and how many are there?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2005 07:58 PM
09-22-2005 07:58 PM
Re: telnet
# netstat -na | grep -w '23'
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2005 08:02 PM
09-22-2005 08:02 PM
Re: telnet
refer this thread:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=73301
Basec on /etc/xinet.d/telnet file for instance information, session count is activated for telnet.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2005 08:11 PM
09-22-2005 08:11 PM
Re: telnet
netstat -an|grep -i esta|grep ":23 "|wc -l
How much are allowed:
in the file /etc/xinetd.d/telnet,
check for "instances = X", where X is the number of sessions allowed for the service telnet.
Rgds,
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2005 08:48 PM
09-22-2005 08:48 PM
Re: telnet
it uses inetd.conf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-22-2005 09:51 PM
09-22-2005 09:51 PM
Re: telnet
For example, in Tru64 Unix (old version), you must manually create the pty devices to allow more telnet connections, with MAKEDEV pty.
Now, I think that in Linux (Not sure for your kernel version), ptys are allocated dynamically.
See:
http://www.linux.com/howtos/Text-Terminal-HOWTO-6.shtml
http://www.atnf.csiro.au/people/rgooch/linux/docs/devfs.html
Now, for the number of current sessions, you can run:
netstat -an |grep ESTABLISHED|grep w.x.y.z:23 | wc -l
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2005 06:37 PM
09-25-2005 06:37 PM
Re: telnet
i use 2.2.14 kernel ( redhat 6.2)
--chakri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2005 08:10 PM
09-25-2005 08:10 PM
Re: telnet
Just refer the following link. You can get the info:
http://groups.google.com/group/comp.os.linux.networking/browse_thread/thread/49e02bae57bd3667/2a3ed2543192651d?lnk=st&q=increase++telnet+session+Linux&rnum=2&hl=en#2a3ed2543192651d
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2005 07:22 PM
09-28-2005 07:22 PM