- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: telnetd
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
01-15-2003 01:55 AM
01-15-2003 01:55 AM
When I do a "ps -ef |grep telnetd", nothing is running. When I do a "ps -ef |grep inetd", there is one process running.
Even if I restart my inetd, my telnetd is still not running. How do I rectify this problem?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 01:58 AM
01-15-2003 01:58 AM
Re: telnetd
you will not have all the time telnetd process running .
the inetd process is oper the telnetd process each time when you have a request for a telnet .
dont warry about this issue .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 02:01 AM
01-15-2003 02:01 AM
Re: telnetd
Check /etc/inetd.conf
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 02:11 AM
01-15-2003 02:11 AM
Re: telnetd
Pls chk in /etc/inetd.conf the entry:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
and in /etc/services:
telnet 23/tcp # Virtual Terminal Protocol
To reconfigure inetd daemon after any change execute "inetd -c"
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 03:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 03:58 AM
01-15-2003 03:58 AM
Re: telnetd
$ netstat -an | grep "\.23 "
tcp 0 0 *.23 *.* LISTEN
Regards,
Jochen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 04:07 AM
01-15-2003 04:07 AM
Re: telnetd
(just learning)
So if you log in to the console telnetd would not have to run.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-15-2003 04:28 AM
01-15-2003 04:28 AM
Re: telnetd
The inetd receives request from the client through the specified port in the /etc/services file for telnet then the inetd executes the telnetd to process that request.