- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- A problem of IP Address
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
12-18-2002 07:59 PM
12-18-2002 07:59 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 08:04 PM
12-18-2002 08:04 PM
SolutionHave a look at the following from the TKB as to how to turn off this "feature".
*****************
How To Turn off Ip Subnet Checking
DocId: KBRC00001356
Updated: 4/6/00 3:09:38 PM
PROBLEM
When using ip schemes that do not conform to RFC-1122 there is a variable that can be changed which disables the checking for conformance to the RFC.
RESOLUTION
Issue the following command:
ndd -h unsupported |more
The Variable ip_check_subnet_addr - Controls the subnet portion of a host address
To bypass RFC-1122 address checking, set the ip_check_subnet_addr variable to zero. To make this a permanent setting, include this setting in the /etc/rc.config.d/nddconf file.
Summary:
The following output is what is seen if you are checking subnets:
# ndd -get /dev/ip ip_check_subnet_addr 1
Set value
ndd -set /dev/ip ip_check_subnet_addr 0
Now reread the netconf and nddconf files:
/sbin/init.d/net start
To make this permanent edit /etc/rc.config.d/nddconf and add a set of lines:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_check_subnet_addr
NDD_VALUE[0]=0
On Hp-ux 10.20
With HP-UX 10.20 use the nettune command to make this change
/usr/contrib/bin/nettune -s ip_check_subnet_addr 0
To make the change permanent:
1. Create a text file called nettune_script with the following line:
nettune -s ip_check_subnet_addr 0
2. mv nettune_script /sbin/init.d
3. chmod 555 /sbin/init.d/nettune_script
4. chgrp bin /sbin/init.d/nettune_script
5. chown bin /sbin/init.d/nettune_script
6. cd /sbin/rc2.d
7. ln -s /sbin/init.d/nettune_script /sbin/rc2.d/S006subnet
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 08:46 PM
12-18-2002 08:46 PM
Re: A problem of IP Address
Check /etc/rc.config.d/nddconf to set it permanently.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2002 09:10 PM
12-18-2002 09:10 PM
Re: A problem of IP Address
you are trying to use 0.0.0.0 as the subnet which hp-ux doesn't allow.
follwing the Patrick's post will solve your problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2002 09:50 AM
12-20-2002 09:50 AM