- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Subnet conf. on HPUX 11.0
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
07-29-2002 09:18 AM
07-29-2002 09:18 AM
The IP addresses are class 'C'.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 09:31 AM
07-29-2002 09:31 AM
Re: Subnet conf. on HPUX 11.0
Please post the IP, subnet mask, and broadcast addr you were trying to setup.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 09:33 AM
07-29-2002 09:33 AM
Re: Subnet conf. on HPUX 11.0
you can define your ip and netmask in the /etc/rc.config.d/netconf file .
you can also provide the default getway in this file .
you can also do it with SAM ( you can active acsi mode of sam )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 09:50 AM
07-29-2002 09:50 AM
Re: Subnet conf. on HPUX 11.0
The netmask is 255.255.255.128.
The broadcast is 205.236.244.127.
I used SAM, set_parms and also manually modified netconf. Still no success.
NOTE: using SAM and set_parms returns an error stating that the subnet mask is invalid.
To get the system to partially work the defaults are used (netmask= 255.255.255.0).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 10:18 AM
07-29-2002 10:18 AM
Re: Subnet conf. on HPUX 11.0
ndd -set /dev/ip ip_check_subnet_addr 0
Now the rules will handle smaller subnets. To make this change permanent, edit the file: /etc/rc.config.d/ndd and include this parameter (ip_check_subnet_addr) and value (0).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 10:55 AM
07-29-2002 10:55 AM
Re: Subnet conf. on HPUX 11.0
Now I back to my main problem that is for a small period of time after the fresh startup I can 'traceroute' remote machines (like www.hp.com) and use NETSCAPE, but after 1 minute or less of activities I get Network Unreachable errors. This also occurs for machines on the other subnet portion.
Any idea?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2002 03:46 PM
07-29-2002 03:46 PM
Re: Subnet conf. on HPUX 11.0
Can you ping your gateway right after a reboot? Can you still ping it after a few minutes?
Do a
netstat -rn
right after a reboot and then later after it starts working and compare.
Try your trace using the IP address instead of the name and see if that works better. Might be a problem with the DNS but I suspect it's a gateway issue.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 04:14 AM
07-30-2002 04:14 AM
Re: Subnet conf. on HPUX 11.0
1) TRUE the gateway does not accept 'pings'. It is working for all other systems.
2) I can not ping the gateway immediatly after reboot but the packets goes through.
3) Traceroute works from boot time up to 1 minute approx.
4) Using host name or IP give the same result.
5) netstat shows no changes before and after. The routing table is very limitted: loopback, host and default.
6) The DNS server is on the gateway system and is still accessible after the Network Unreachable error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 06:06 AM
07-30-2002 06:06 AM
SolutionHP-UX 11.0 introduces the "Dead Gateway Detection" feature. Network connections hang after varying intervals. The "Dead Gateway Detection" feature sends ICMP echo requests (ping packets) to all gateways. As UNIX 11.X enables "dead gateway detection" as a default, when you block icmp packets, after a while the system assumes your gateway is dead and doesn't use it anymore.
To find out if the gateway is "dead":
#ndd -get /dev/ip ip_ire_status | grep -e IRE_GATEWAY -e flag
If the output for default route says "IRE_GATEWAY_DEAD", then there is a dead gateway problem. To fix this problem, use ndd to disable ip_ire_gw_probe to 0.
To disable dead gateway detection using ndd:
To get the current value:
#ndd -get /dev/ip ip_ire_gw_probe
To set it to zero:
#ndd -set /dev/ip ip_ire_gw_probe 0
http://people.hp.se/stevesk/bastion11.html tells how to set this and other ndd options at boot. Otherwise ndd changes go away after a boot.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 06:42 AM
07-30-2002 06:42 AM
Re: Subnet conf. on HPUX 11.0
The changes worked very well.
Also thank you for the link to the document. Good stuff in.