- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- PING fails but rlogin works.
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
08-20-2003 07:39 AM
08-20-2003 07:39 AM
I have a situation here where i am able to rlogin to a box but pinging the box hangs? what would be the reason.
Thanks
David.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 07:42 AM
08-20-2003 07:42 AM
Re: PING fails but rlogin works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 07:47 AM
08-20-2003 07:47 AM
Re: PING fails but rlogin works.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 07:53 AM
08-20-2003 07:53 AM
Re: PING fails but rlogin works.
- firewall blocking icmp traffic (nowadays very possible, with all these viruses)
- icmp dropped on the hpux hosts (check with ndd)
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 07:54 AM
08-20-2003 07:54 AM
Re: PING fails but rlogin works.
Thanks
David.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 07:57 AM
08-20-2003 07:57 AM
Re: PING fails but rlogin works.
Since you've already checked on name resolution, the only other answer I can think of is to check the firewall.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 08:01 AM
08-20-2003 08:01 AM
Re: PING fails but rlogin works.
Since i am logged in to the box right now, is there a way i can check for the firewall?
Thanks
David.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 08:05 AM
08-20-2003 08:05 AM
Re: PING fails but rlogin works.
I think you would have to login to the firewall to find out if it's blocking ICMP packets. Is this only one host that you can't ping? Is the unpingable host local or outside the firewall? Have you checked nslookup?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 08:10 AM
08-20-2003 08:10 AM
Re: PING fails but rlogin works.
Thanks
David.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 08:17 AM
08-20-2003 08:17 AM
Re: PING fails but rlogin works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 08:17 AM
08-20-2003 08:17 AM
Re: PING fails but rlogin works.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2003 09:25 AM
08-20-2003 09:25 AM
Re: PING fails but rlogin works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 01:00 PM
08-21-2003 01:00 PM
Re: PING fails but rlogin works.
Thanks
David.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2003 01:59 PM
08-21-2003 01:59 PM
Re: PING fails but rlogin works.
You might try traceroute, but I bet thats blocked too.
Post the output and makesure its at least stopping at the firewall and not someplace else.
These network guys need to be trained to document and notify prior to making changes.
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
08-21-2003 05:17 PM
08-21-2003 05:17 PM
SolutionIf you are running 11.0 then you may do this..
1. netstat -rn (pick up your gateway from the default column)
2. route delete default
3. netstat -rn (you should not see the gateway now)
4. ndd -set /dev/ip ip_ire_gw_probe 0
(this will make sure that your host will not ping the router (which it will do otherwise every 5 minutes))
now set the default gateway back as hop 1
5. route add default
(note the 1)
6. netstat -rn (you should be able to see the gateway again)
Now you should be able to reach the network and hopefully you might not see the network unreachable message.
Thanks
Giri Sekar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2003 10:32 AM
08-22-2003 10:32 AM
Re: PING fails but rlogin works.
Thanks
David.