- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Route problem
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-17-2004 04:33 PM
08-17-2004 04:33 PM
Route problem
I have this HP-UX machine in another subnetwork.
I added a route in this machine as
route add 11.255.23.0 11.255.23.1 1 and to make it permanent, I have updated netconf file.
After I do 'route -f' and '/sbin/init.d/net start' , I can telnet to this machine from the remote network for first 5 minutes.. after that I'm not able to reach this machine from a remote network.
What could be the problem..
Can these two route entries co-exist in the table ..?
results of 'netstat -rn'
11.255.23.0 Boston U 2 lan0 1500
11.255.23.0 11.255.23.1 UG 0 lan0 1500
'Boston ' is the machine that i'm working on..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2004 05:22 PM
08-17-2004 05:22 PM
Re: Route problem
11.255.23.0 Boston U 2 lan0 1500
11.255.23.0 11.255.23.1 UG 0 lan0 1500
You are trying to give gateway as Boston and as well as 11.255.23.1
Just change as,
11.255.23.1 11.255.23.1 UG 0 lan0 1500
It will work now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2004 06:14 PM
08-17-2004 06:14 PM
Re: Route problem
Here's the o/p of netstat -rn.
Routing tables
Destination Gateway Flags Refs Interface pmtu
127.0.0.1 127.0.0.1 UH 0 lo0 4136
11.255.23.163 11.255.23.163 UH 0 lan0 4136
11.255.23.0 11.255.23.163 U 2 lan0 1500
default 11.255.23.1 UG 0 lan0 0
With this info I'm able to telnet to the machine after 5 mins of 'route -f' .. cannot telnet the machine thereon !!
Can you pls help !!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2004 07:02 PM
08-17-2004 07:02 PM
Re: Route problem
Chek the arp table with "arp -a" on local server and mac address on remote system to see if they ALWAYS match.
Does ping works, even after the 5 minutes elaspe time ?
Maybe you have a firewall between the system, or the system is dropping the connections after 5 minutes of inactivyty. Is this possible ?
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-17-2004 08:57 PM
08-17-2004 08:57 PM
Re: Route problem
Thanks for the reply,,, I figured out from the other route related topics..I had to disable dead gateway detection param.
I set it to 0 and a reboot... system is up and can be connected..
Cheers !!!
Prasanna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 02:59 PM
08-18-2004 02:59 PM
Re: Route problem
Yes you are right it is a dead gateway issue. This is what you could do.
#ndd -get /dev/ip ip_ire_gw_probe
if 1 = dead gateway is enabled
if 0 = dead gateway is disabled.
To make a temporarp change do this
#ndd -set /dev/ip ip_ire_gw_probe 0
To make a permanent change
edit /etc/rc.config.d/nddconf (add these)
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
Hope this helps.
Thanks
Pratyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 07:19 PM
08-18-2004 07:19 PM
Re: Route problem
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=673099
JP.