- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Gateway / Routing 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
03-15-2004 08:08 PM
03-15-2004 08:08 PM
i have a little Gateway / Routing Problem with one of our servers and i can´t figure out what the problem is.
The situation: I moved a HPUX 11.0 server from 10.16.70.11 to another net (10.16.192.14)
I changed the default route to 10.16.192.1 and changed the /etc/rc.config.d/netconf to
ROUTE_DESTINATION[0]=default
ROUTE_MASK[0]=""
ROUTE_GATEWAY[0]=10.16.192.1
ROUTE_COUNT[0]=1
ROUTE_ARGS[0]=""
netstat -rn shows
phxsvr02:/etc/rc.config.d (phoenix) $ netstat -rn
Routing tables
Dest/Netmask Gateway Flags Refs Use Interface Pmtu
127.0.0.1 127.0.0.1 UH 0 71817 lo0 4136
10.16.192.14 10.16.192.14 UH 0 60980 lan0 4136
10.16.192.0 10.16.192.14 U 2 0 lan0 1500
127.0.0.0 127.0.0.1 U 0 0 lo0 4136
default 10.16.192.1 UG 0 0 lan0 1500
phxsvr02:/etc/rc.config.d (phoenix) $
The misterious thing ist -> when i reboot the server. I can use it from an other subnet without problems for around 30sec - 1 min. Then it stops replying to pings and i can´t login with ssh anymore. When i jump to a server in the same subnet the server still replies and i can login over that one.
Any1 knows how that could be, and how i can fix it?
thanks
P
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 08:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 08:32 PM
03-15-2004 08:32 PM
Re: Gateway / Routing Problem
phxsvr02:/etc/rc.config.d (root) $ ndd -get /dev/ip ip_ire_gw_probe
1
so i set it to 0 like you said
then i insert into nddconf
TRANSPORT_NAME[0]=tcp
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
TRANSPORT_NAME[0]=udp
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
hope thats ok?
i brought the interface down and up again
(ifconfig lan0 down / up)
still now working -> don´t wanna restart atm
Another service or something to restar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2004 10:42 PM
03-15-2004 10:42 PM
Re: Gateway / Routing Problem
The above config changes will sort you out.
dont forget to reboot.
Regards
Martin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 01:41 AM
03-16-2004 01:41 AM
Re: Gateway / Routing Problem
TRANSPORT_NAME[0]=tcp
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
TRANSPORT_NAME[0]=udp
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
But:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_ire_gw_probe
NDD_VALUE[0]=0
Also it helps to remove the default gateway and readd it. Seems that once you turn off dead gateway detection the process that removes a gateway from the dead list stops too.
Did you run a second ndd -get to check that it had worked?
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 01:43 AM
03-16-2004 01:43 AM
Re: Gateway / Routing Problem
it works already
(seems also that ip and udp from me worked)
thx & greetz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2004 10:11 AM
03-16-2004 10:11 AM
Re: Gateway / Routing Problem
Ron