- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- TCP/IP stack IP address, subnet mask and default g...
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
03-07-2007 05:10 AM
03-07-2007 05:10 AM
TCP/IP stack IP address, subnet mask and default gateway configuration
Thank´s In Advanced...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 06:05 AM
03-07-2007 06:05 AM
Re: TCP/IP stack IP address, subnet mask and default gateway configuration
sysman net_wizard
or
netconfig
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2007 10:17 AM
03-07-2007 10:17 AM
Re: TCP/IP stack IP address, subnet mask and default gateway configuration
You can do the following:
netstat -rn (see ip_default address)
route delete default ip_default
route add default ip_new_default
netstat -rn (see ip_new_default)
and you could see new configuration ...
you can run "man route" for learning more ...
Regards.
<><
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 04:34 AM
03-08-2007 04:34 AM
Re: TCP/IP stack IP address, subnet mask and default gateway configuration
To make the netmask a permanent change, modify the appropriate IFCONFIG_ line in /etc/rc.config.
The make the default route a permanent change, edit the default line in /etc/routes.
Then reboot.
If you wish to make these changes on the fly, try the following:
ifconfig {interface_name} down
ifconfig {interface_name} delete
ifconfig {interface_name} 146.163.64.?/22
route delete default
route add default 146.163.64.1
In the third ifconfig command above, you'll need to subtitute the actual host address.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2007 04:36 AM
03-08-2007 04:36 AM
Re: TCP/IP stack IP address, subnet mask and default gateway configuration
It is good for adds but questionable for changes and deletions.