- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Cannot 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
10-11-2007 07:39 PM
10-11-2007 07:39 PM
Cannot Telnet
I can ping to my server but cannot telnet to/from the server. Verified /etc/services and telnet is enabled.
Appreciate your help in resolving the issue.
Thanks,
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2007 07:48 PM
10-11-2007 07:48 PM
Re: Cannot Telnet
check
# ps -ef |grep inetd
root 857 1 0 Oct 10 ? 0:05 /usr/sbin/inetd
root 20489 20472 1 15:29:56 pts/ta 0:00 grep inetd
# telnet 0
Trying...
Connected to 0.
Escape character is '^]'.
Local flow control on
Telnet TERMINAL-SPEED option ON
HP-UX pluto B.11.11 U 9000/800 (tb)
login:
For a start troubleshooting
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2007 08:07 PM
10-11-2007 08:07 PM
Re: Cannot Telnet
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2007 11:12 PM
10-11-2007 11:12 PM
Re: Cannot Telnet
check /etc/inetd.conf
netstat -an | grep 23
netstat -an | grep 22
See if they are listening. If not its time to configure the daemons.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2007 02:25 AM
10-12-2007 02:25 AM
Re: Cannot Telnet
commands and actual results.
Have you tried Telnetting from the HP-UX
system to itself? To 127.0.0.1? What
happens when you do?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2007 02:58 AM
10-12-2007 02:58 AM
Re: Cannot Telnet
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1168646
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2007 07:15 PM
10-14-2007 07:15 PM
Re: Cannot Telnet
Entry in
#/etc/inetd.conf
telnet streat tcp6 nowait root /usr/lbin/telnetd
---------
entry in
#/etc/services
telnet 23/tcp # Virtual Terminal Protocol
---------
entry in
#/etc/nsswitch.conf
hosts: files [NOTFOUND=continue UNAVAIL=continue] dns [NOTFOUND=return UNAVAIL=continue TRYAGAIN=return]
networks: files nis
protocols: files
rpc: files nis
publickey: files
netgroup: nis
automount: files nis
aliases: files nis
services: files nis
ipnodes: files [NOTFOUND=continue] dns
-----------
Tried to telnet 127.0.0.1 again got unknown service.
inetd daemon is running
is it a firewall problem?? Is there a way to disable firewal??
Do you think I'm missing any patches??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2007 08:28 PM
10-14-2007 08:28 PM
Re: Cannot Telnet
have a look here in your reply:
Entry in
#/etc/inetd.conf
telnet streat tcp6 nowait root /usr/lbin/telnetd
this needs to be:
telnet stream tcp6 nowait root /usr/lbin/telnetd
after changing "streat" to "stream" run "inetd -c"
and then check via "netstat -a|grep 23"
or "netstat -a|grep -i telnet"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2007 09:41 PM
10-14-2007 09:41 PM
Re: Cannot Telnet
I want to close the thread.My problem is been solved by configuring /etc/nsswitch.conf file. Actually the file was missing.
Thanks all. Thanks for your support.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2007 09:43 PM
10-14-2007 09:43 PM
Re: Cannot Telnet
I want to close the thread.My problem is been solved by configuring /etc/nsswitch.conf file. Actually the file was missing.
Thanks all. Thanks for your support.