- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- not able to 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
11-04-2003 07:42 PM
11-04-2003 07:42 PM
I am having HP-UX 11.11 Version. I am able to telnet from the Same network. But the same is not happening from a different N/W. There are no firewall restrictions between network.
I was not able to find a inetd.sec in /var/adm
Should I creat it for Access for other network.
Pl. help
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 07:45 PM
11-04-2003 07:45 PM
Re: not able to telnet
Add route for that networj and try.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 08:08 PM
11-04-2003 08:08 PM
Re: not able to telnet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 08:10 PM
11-04-2003 08:10 PM
Re: not able to telnet
route add net [destination] [mask] [gateway] 1
then check with netstat -rn
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 08:13 PM
11-04-2003 08:13 PM
Re: not able to telnet
Are you able to ping the server from other network ? If ping is going through and inetd.sec is default file you should not get any problem.
If ping is not going through try to add route.
Sunil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 08:13 PM
11-04-2003 08:13 PM
Re: not able to telnet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 08:40 PM
11-04-2003 08:40 PM
Re: not able to telnet
One thing I noticed is that I am not able to ping my gateway but which is happening from other systems over the network.
After adding the default route it started wkg.
Thanks for all the support.
Senthil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2003 01:59 AM
11-06-2003 01:59 AM
SolutionThis is what you have to do now.
#ndd -get /dev/ip ip_ire_gw_probe
if it gets a value 1, then your dead gateway detection is enabled in your system. What basically it doing is trying to ping your router, unfortunately it is getting no ICMP request from the gateway, hence it is sending the IP address of the default route to a dead gateway list. Hence the system is unable to cross the network.
To disable the dead gateway.
# edit /etc/rc.config.d/nddconf
add the following to the end of the file
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
#/sbin/init.d/ndd start
It will remove your dead gateway issue.
or if you want to do it online
# ndd set /dev/ip ip_ire_gw_probe 0
and it would fix your problem, but you have to make changes to the nddconf file in order to make the changes permanent.
Thanks
Pratyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2003 03:33 PM
11-06-2003 03:33 PM
Re: not able to telnet
The Solution said by you is working. It was exactly mirroring the Problem what I am facing. The steps said are working fine.
Thanks a Lot for Valid input..
Senthil