- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to change subnet mask in HP Unix 11i and O...
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-08-2007 04:14 PM
07-08-2007 04:14 PM
does anyone could tell me where to change subnet mask in HP Unix 11i and Oracle 11i ? We need to do this as because our current class C subnet IP is not enough , thus, have to change to class B so that we can have more IP.
thank you very much
regards
ng
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2007 06:03 PM
07-08-2007 06:03 PM
Solutionyou may check /etc/rc.config.d/netconf or run set_parms script.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2007 06:32 PM
07-08-2007 06:32 PM
Re: How to change subnet mask in HP Unix 11i and Oracle 11i
As Torsten has advised, you can make the changes permanent to the system. If you want to make the changes effective right away - then you can use the ifconfig command to change the subnet mask as in following example.
ifconfig lan0 192.168.1.25 netmask 255.255.0.0 up
But note that before making this change/issuing this command - note that if you are connected using the same interface you will get momentorily disconnected. Also ensure that you have other settings/routing etc correct for say the desktop/workstation/server you are using to access this server.
It would be better to take a planned outage wherein you shutdown any services and carryout this activity, if it is one many servers.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2007 08:02 AM
07-11-2007 08:02 AM
Re: How to change subnet mask in HP Unix 11i and Oracle 11i
To make the subnet change permanent
1. Update the subnet on the /etc/rc.config.d/netconf file with new subnet by repalcing the earlier one.
2. Update the specific card with the
# ifconfig lan3 10.x.x.55 netmask 255.255.0.0
3. If you cna bear the momentarily network stop the use this
#/sbin/init.d/net stop
#/sbin/init.d/net start
4. If needed,update the related /etc/resolv.conf.
5. If you are using IP/subnet in your oracle Finacials then update the related configuration files
regards
Mani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2007 08:18 AM
07-11-2007 08:18 AM
Re: How to change subnet mask in HP Unix 11i and Oracle 11i
if this is a cluster nodes,
1.you need run the cmquerycl
2. Update the subnet entries (if you have configured in the cluster conf file.
3. cmapply conf with the modfied changes and this is an offline change, it will update the cmclconfig.
regards
Mani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2007 12:46 PM
07-11-2007 12:46 PM
Re: How to change subnet mask in HP Unix 11i and Oracle 11i
thanks
Regards
ng