- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- route added has UGH flags
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
Discussions
Discussions
Discussions
Forums
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
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
тАО07-07-2004 02:45 AM
тАО07-07-2004 02:45 AM
A customer of mine has 10 lan interfaces on their serviceguard cluster.
1 heartbeat, 1 to the WAN outside of the cluster 4 others going to various places in the cluster with 4 standbys for them.
Routing is a bit of a headache for me in this instance, as you might imagine.
The problem is that a route I have added to the netconf file for an interface gets added to the routing table as a host type with flags UGH. This means that it doesn't work properly and we cannot transfer files to that host.
After the system has booted, I can add the route manually by typing:
route delete IP gateway-IP
route add net IP gateway-IP 1
So how do I add a 'net' type route to the netconf file? Because it is not acceptable to have to type in routes every time the system boots.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-07-2004 02:53 AM
тАО07-07-2004 02:53 AM
SolutionIt would look like this:
ROUTE_DESTINATION[1]="net xx.xxx.xxx"
ROUTE_MASK[1]="255.255.192.0"
ROUTE_GATEWAY[1]="xx.xxx.xxx.xx"
ROUTE_COUNT[1]="0"
ROUTE_ARGS[1]=""
Of course use the appropriate net & IP addresses. Subnet masks will vary - consult your network group.
And almost always a static route will have a zero hop count to direct it to the appropriate local I/F.
And don't forget to use a unique index value.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-07-2004 03:52 AM
тАО07-07-2004 03:52 AM
Re: route added has UGH flags
ROUTE_COUNT[0]=1
if the gateway is not the host on which you set the route the hop count MUST be 1, not 0 !!!
Hope this helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-07-2004 03:58 AM
тАО07-07-2004 03:58 AM
Re: route added has UGH flags
Say for example, a route to the 141.167.76.0 network is automatically added if your NIC is assigned an IP address of 141.167.76.X/255.255.255.0.
I assume you want to reach some other network using a intermediate gateway. So you would want to use the HOP count of 1.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-07-2004 05:34 AM
тАО07-07-2004 05:34 AM
Re: route added has UGH flags
In this case the route is for our Bulk Data network upon which our backups traverse. It's a supernet & no routing is required.
IF you are setting a static route to a net outside of a local super/subnet, THEN you'd use the IP of the router on the secondary super/subnet as the gateway and use a hop count of 1 of course.
Rgds,
Jeff