HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP UX 10.20 CIDR support available?
Operating System - HP-UX
1826398
Members
4127
Online
109692
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
01-04-2002 04:21 AM
01-04-2002 04:21 AM
HP UX 10.20 CIDR support available?
Hi gents,
happy new year.
We are trying to configures some visualise workstations (B180L) running hpux 10.20 with addresses in the range 192.168.0.0/ 255.255.255.128
When configured in SAM or with the setparms script this does not allow us to set anything other than 255.255.255.0 as the subnet.
we already have an interface in a subnet 10.0.1.1 / 255.255.255.0 - is it because both subnets on each interface have to be the same?
Is there any way we can change this or can we apply a patch or a kernel parameter to allow cidr.
Can we set it via ifconfig for it to be allowed?
net 192.168.0.0 - 192.168.0.127
avail 192.168.0.2 - 192.168.0.126
ws1 192.168.0.23 255.255.255.128
defgw 192.168.0.126
thanks
Stuart Smiles
stuart.smiles@nortelnetworks.com
happy new year.
We are trying to configures some visualise workstations (B180L) running hpux 10.20 with addresses in the range 192.168.0.0/ 255.255.255.128
When configured in SAM or with the setparms script this does not allow us to set anything other than 255.255.255.0 as the subnet.
we already have an interface in a subnet 10.0.1.1 / 255.255.255.0 - is it because both subnets on each interface have to be the same?
Is there any way we can change this or can we apply a patch or a kernel parameter to allow cidr.
Can we set it via ifconfig for it to be allowed?
net 192.168.0.0 - 192.168.0.127
avail 192.168.0.2 - 192.168.0.126
ws1 192.168.0.23 255.255.255.128
defgw 192.168.0.126
thanks
Stuart Smiles
stuart.smiles@nortelnetworks.com
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 04:29 AM
01-04-2002 04:29 AM
Re: HP UX 10.20 CIDR support available?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 05:33 AM
01-04-2002 05:33 AM
Re: HP UX 10.20 CIDR support available?
In 10.20, you can modify the rules checking for small subnets. Normally, HP-UX enforces the standard RFC1122 which limits how small a subnet may be. However, RFC1878 does allow smaller subnets and the command nettune (10.20 only, 11.x the command is ndd).
nettune -h (ndd -h for 11.x) will show the tunable network parameters. To enable small subnets, you must turn off the tunable called ip_check_subnet_add.
First, check the current setting:
# /usr/contrib/bin/nettune -l ip_check_subnet_addr
or
# /usr/bin/ndd -get /dev/ip
ip_check_subnet_addr
To turn off this checking feature:
# /usr/contrib/bin/nettune -s ip_check_subnet_addr 0
or
# /usr/bin/ndd -set /dev/ip ip_check_subnet_addr 0
To make the change permanent, you'll need to put the values into a startup script. For 10.20, there is no nettune script, so you'll need to put a simple start script in /sbin/init.d:
#!/sbin/sh
/usr/contrib/bin/nettune -s ip_check_subnet_addr 0
You can call it nettune. Change permissions to 555 and ownership to bin:bin and to make it run starting at run level 2, use the command:
# ln -s /sbin/init.d/nettune /sbin/rc2.d/S006nettune
and for 11.x, it is much more standard. Edit the file in /etc/rc.config.d called ndd and add these lines:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_check_subnet_addr
NDD_VALUE[0]=0
Note: the [0] refers to an array reference so related items belong together. If other tunables are desired, use the next available array location (starting from 0) for the next 3 items.
Bill Hassell, sysadmin
nettune -h (ndd -h for 11.x) will show the tunable network parameters. To enable small subnets, you must turn off the tunable called ip_check_subnet_add.
First, check the current setting:
# /usr/contrib/bin/nettune -l ip_check_subnet_addr
or
# /usr/bin/ndd -get /dev/ip
ip_check_subnet_addr
To turn off this checking feature:
# /usr/contrib/bin/nettune -s ip_check_subnet_addr 0
or
# /usr/bin/ndd -set /dev/ip ip_check_subnet_addr 0
To make the change permanent, you'll need to put the values into a startup script. For 10.20, there is no nettune script, so you'll need to put a simple start script in /sbin/init.d:
#!/sbin/sh
/usr/contrib/bin/nettune -s ip_check_subnet_addr 0
You can call it nettune. Change permissions to 555 and ownership to bin:bin and to make it run starting at run level 2, use the command:
# ln -s /sbin/init.d/nettune /sbin/rc2.d/S006nettune
and for 11.x, it is much more standard. Edit the file in /etc/rc.config.d called ndd and add these lines:
TRANSPORT_NAME[0]=ip
NDD_NAME[0]=ip_check_subnet_addr
NDD_VALUE[0]=0
Note: the [0] refers to an array reference so related items belong together. If other tunables are desired, use the next available array location (starting from 0) for the next 3 items.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2002 08:41 AM
01-04-2002 08:41 AM
Re: HP UX 10.20 CIDR support available?
Hi Gents,
Thanks for the replies.
We will try them on monday morning.
thanks again
Stuart
Thanks for the replies.
We will try them on monday morning.
thanks again
Stuart
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Support
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP