- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Unix newbie
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-30-2000 06:06 AM
08-30-2000 06:06 AM
I'm an Unix newbie and I'm having problems with my HP-UX 10.20 server, because everytime that my link with my brach goes down some strange routes appears in my server (netstat -r) and I have to delete them because nothing works (route delete xxxx). I tried the netconf, but GATED=0 and RDPD=0, so my server doesn't have any dynamic route enable and on my init.d directory I haven't see anything that could be my problem (See attached file).
Please, someone have any idea about what could be my problem?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2000 06:08 AM
08-30-2000 06:08 AM
Re: Unix newbie
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2000 06:14 AM
08-30-2000 06:14 AM
Re: Unix newbie
/etc/ifconfig lan0 inet
check with netstat -r
then /etc/route ass default < route addr> 1
again netstat -r
if it works, go and correct your file /etc/rc.config.d/netconf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2000 06:15 AM
08-30-2000 06:15 AM
Re: Unix newbie
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2000 06:19 AM
08-30-2000 06:19 AM
Re: Unix newbie
route table dump
route -f
route add default 198.20.1.2
rout add 127.0.0.1 127.0.0.1
route add 198.20.1.3 127.0.0.1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2000 06:45 AM
08-30-2000 06:45 AM
Re: Unix newbie
Your routes are being created dynamically by your router(s). If your primary link is unable to direct the packet to its destination, then it will send an ICMP Redirect to your UNIX box and specify an alternate gateway for the packet. This alternate gateway may not be valid but UNIX does not care. All it knows is that it recevied an ICMP Redirect from the primary router. You can turn off ICMP Redirects on your router if you would like.
netstat -nr will show you the routing table. Check out what gateways are specified for the devices you are having trouble with. You can delete the entry with:
route delete net|host destination
You can add an entry with:
route add net|host destination 1
The 1 at the end defines this entry to be a gateway and sets the UG flags
Also, check out the man pages on route and routing.
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2000 06:52 AM
08-30-2000 06:52 AM
Solutionshow ip route
and check if the default routes are correct. Specifically the entry with the * near it.
Tony