- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Telnet Connection Refused
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
11-26-2001 04:52 PM
11-26-2001 04:52 PM
Telnet Connection Refused
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 04:58 PM
11-26-2001 04:58 PM
Re: Telnet Connection Refused
Verify that telnet is not listed in your /var/adm/inetd.sec
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 05:00 PM
11-26-2001 05:00 PM
Re: Telnet Connection Refused
If other users are able to login into this box using telnet, check and see if the systems is behind a firewall. If so you will need your ip to pass through the firewall.
Are all users unable to login using telnet?.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 05:03 PM
11-26-2001 05:03 PM
Re: Telnet Connection Refused
Telnet is not disallowed in inetd.sec
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 05:04 PM
11-26-2001 05:04 PM
Re: Telnet Connection Refused
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 05:11 PM
11-26-2001 05:11 PM
Re: Telnet Connection Refused
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 05:31 PM
11-26-2001 05:31 PM
Re: Telnet Connection Refused
The 'inetd' process is the process
that starts child 'telnetd' processes.
It could be that 'inetd' itself,
although still running has a problem.
Suggest killing it off from the
console and restarting it.
# inetd -k
# /sbin/init.d/inetd start
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 06:02 PM
11-26-2001 06:02 PM
Re: Telnet Connection Refused
I'm not sure I read your post correctly. Can you telnet from the server to itself? If so, then inetd and telnetd are not the problem.
If you can't telnet from the server to itself then I'd suspect inetd.sec, inetd, or telnetd. You could try sending a HUP signal to inetd (kill -HUP inetd_pid).
Re-reading your post now I wonder if your subnet mask is correct? If you are on the same subnet you should be able to ping, rlogin, telnet, whatever assuming inetd.sec does not deny that and inetd.conf has those services enabled.
Have you verified you routes?
Just some things to consider.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 06:23 PM
11-26-2001 06:23 PM
Re: Telnet Connection Refused
This is very strange problem and I am completely out of guesses. Any suggestions are greatly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 06:25 PM
11-26-2001 06:25 PM
Re: Telnet Connection Refused
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 07:26 PM
11-26-2001 07:26 PM
Re: Telnet Connection Refused
If telnet now allows a remote connection from this machine, your DNS server likely does not provide reverse lookup, something that is very important for a secure network. Telnet does validate that the remote system name has an associated IP address to avoid spoofed addresses.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 07:38 PM
11-26-2001 07:38 PM
Re: Telnet Connection Refused
Thanks for the suggestion. It's not a public network and we are not running DNS. I too think this is a networking issue, but I can't put my finger on the cause.
Any other ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 08:50 PM
11-26-2001 08:50 PM
Re: Telnet Connection Refused
1. First check the /etc/services file,it should have an entryas the following.
telnet 23/tcp # Virtual Terminal Protocol
2. next is to check /etc/inetd.conf
It should have an entry like
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
3. Pl. check whether the telnetd file exist at /usr/lbin/ directory
4. If you give a command
netstat -a|grep telnet
a line like mentioned below should indicate the 23 port is open.
tcp 0 0 *.telnet *.* LISTEN
5.If all these are okay check /etc/nsswitch.conf
It should have a entry like.
services: files [NOTFOUND=continue] nis
pl. note that files should precede nis if nis is present.
Pl. check this and let me know..If all these are okay I don't see a reason why it should not work.
Manoj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 01:18 AM
11-27-2001 01:18 AM
Re: Telnet Connection Refused
Perhaps is a hardware error, to check you can use lanscan to know the ppa and lanadmin to check and reset your lan card. You can use like this:
HP4 #> lanscan
Hardware Station Crd Hdw Net-Interface NM MAC HP-DLPI DLPI
Path Address In# State NamePPA ID Type Support Mjr#
0/0/0/0 0x00306E038957 0 UP lan0 snap0 1 ETHER Yes 119
1/12/0/0 0x00306E04703D 3 UP lan3 snap3 2 ETHER Yes 119
0/4/0/0 0x001083FBF880 1 UP lan1 snap1 3 ETHER Yes 119
0/5/0/0 0x001083FBC90B 2 UP lan2 snap2 4 ETHER Yes 119
HP4 #> lanadmin
LOCAL AREA NETWORK ONLINE ADMINISTRATION, Version 1.0
Tue , Nov 27,2001 10:18:06
Copyright 1994 Hewlett Packard Company.
All rights are reserved.
Test Selection mode.
lan = LAN Interface Administration
menu = Display this menu
quit = Terminate the Administration
terse = Do not display command menu
verbose = Display command menu
Enter command: lan
LAN Interface test mode. LAN Interface PPA Number = 0
clear = Clear statistics registers
display = Display LAN Interface status and statistics registers
end = End LAN Interface Administration, return to Test Selection
menu = Display this menu
ppa = PPA Number of the LAN Interface
quit = Terminate the Administration, return to shell
reset = Reset LAN Interface to execute its selftest
specific = Go to Driver specific menu
Enter command: ppa
Enter PPA Number. Currently 0: 0
LAN Interface test mode. LAN Interface PPA Number = 0
clear = Clear statistics registers
display = Display LAN Interface status and statistics registers
end = End LAN Interface Administration, return to Test Selection
menu = Display this menu
ppa = PPA Number of the LAN Interface
quit = Terminate the Administration, return to shell
reset = Reset LAN Interface to execute its selftest
specific = Go to Driver specific menu
Enter command: display
LAN INTERFACE STATUS DISPLAY
Tue , Nov 27,2001 10:18:22
PPA Number = 0
Description = lan0 Hewlett-Packard 10/100 TX Half-Duplex TT
= 1500
Type (value) = ethernet-csmacd(6)
MTU Size = 1500
Speed = 100000000
Station Address = 0x306e038957
Administration Status (value) = up(1)
Operation Status (value) = down(2)
Last Change = 1734
Inbound Octets = 0
Inbound Unicast Packets = 0
Inbound Non-Unicast Packets = 0
Inbound Discards = 0
Inbound Errors = 0
Inbound Unknown Protocols = 0
Outbound Octets = 410
Outbound Unicast Packets = 10
Outbound Non-Unicast Packets = 0
Outbound Discards = 0
Outbound Errors = 0
Outbound Queue Length = 0
Specific = 655367
Press
and for last you can reset the lan card by using the reset option in the menu.
Hope this help,
Justo.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 05:48 AM
11-27-2001 05:48 AM
Re: Telnet Connection Refused
Okay, it's not a network service problem. Nor is it name resolution.
The key is ping is showing a problem so it could be several things:
NIC set to the wrong interface type (BNC, rj45, etc). I'd check this first.
Mismatch duplex setting between the server and the switch. I doubt this one since ping is erratic. Generally you don't see a problem until sending a lot og data over the net.
NIC is flaky. Doubtful since you've replace it.
Switch port is flaky. Try a different port.
Network cabling is flaky. Try a different cable.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 08:54 AM
11-27-2001 08:54 AM
Re: Telnet Connection Refused
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-27-2001 08:59 AM
11-27-2001 08:59 AM
Re: Telnet Connection Refused
To close the loop I will share the story.
After much trial, we finally identified a duplicated IP address on the LAN. We still cannot identify the source, but we were able to re-address the nic on the server in question and all is now fine.
Thank you all.