- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Telnet connection not allowed
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
04-30-2002 06:55 AM
04-30-2002 06:55 AM
Telnet connection not allowed
Sometimes,when I reboot a HP Server the ICMP protocol is up ( I can ping it ) but Telnet isn??t.
Why can this be going on?
How can I restart the Telnet service without rebooting the Server ?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2002 06:57 AM
04-30-2002 06:57 AM
Re: Telnet connection not allowed
Check you /etc/inetd.conf file and make sure telnet is defined.
The check to see if inetd daemon is running.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2002 07:00 AM
04-30-2002 07:00 AM
Re: Telnet connection not allowed
Hope this clarifies things,
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2002 07:00 AM
04-30-2002 07:00 AM
Re: Telnet connection not allowed
You should check the /etc/rc.log for any startup errors & to see just exactly what is being started at boot time.
Then as Yates pointed out check the /etc/inetd.conf file & insure the telnet line is not commented out. Also check the /var/adm/inetd.sec file to check whether telnet is being disallowed from certain hosts/nets or only allowed from certain hosts/nets.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2002 07:07 AM
04-30-2002 07:07 AM
Re: Telnet connection not allowed
/usr/sbin/telnetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2002 07:57 AM
04-30-2002 07:57 AM
Re: Telnet connection not allowed
ICMP is a protocol, part of the IP protocol suite. /sbin/rc2.d/S340net starts IP on your NICs.
Telnetd is an application. It is spawned for each telnet client request by inetd. /sbin/rc2.d/S500inetd starts inetd.
However long it takes the system to process the other rc scripts between S340net and S500inetd and to run S500inetd is how long the system will respond to ICMP requests but not telnetd.
telnetd doesn't run all the time so you can't actually restart it. Again, a copy of telnetd is started by inetd for each client telnet request. The best way to stop inetd and restart it is to use the rc script:
/sbin/rc2.d/S500inetd stop
/sbin/rc2.d/S500inetd start
Darrell