- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How or can I bind multiple ips to a single nic.
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
01-14-2004 04:56 AM
01-14-2004 04:56 AM
A while back I was trying to bind multiple ips to a single nic. At the time HP told me that they dont support it.
Right now I am running 11i has this changed?
Why would it be a bad idea to bind multiple ips to a nic?
How do i acomplish this?
Thanks
richard
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:03 AM
01-14-2004 05:03 AM
Re: How or can I bind multiple ips to a single nic.
It's done using a virtual IP. Say lan0 is set to 111.222.111.222 & you want another IP in the same subnet then you'd do the following:
ifconfig lan0:1 111.222.111.223 netmask 255.255.255.0 up
The key is the :X after the lan instance. And yes this is fully supported. They may have been stating that virtual IP out of the original subnet are not supported & I believe that's true.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:07 AM
01-14-2004 05:07 AM
Re: How or can I bind multiple ips to a single nic.
This the reason why ISP's are able to host many Internet domains on one physical NIC.... Works well in disaster recovery sitautions too where you can lump several servers on to a single server...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:13 AM
01-14-2004 05:13 AM
Re: How or can I bind multiple ips to a single nic.
It is possible and supported/needed if you run MC/SG. If you have installed the Mission Critical env. you also have MC/SG licensed and installed. I do not know why you want to add multiple ip-adresses on a interface and how. Do you want them in the same subnet ( vlan config on the switch). Can you give more info.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 05:49 AM
01-14-2004 05:49 AM
Re: How or can I bind multiple ips to a single nic.
The problem we've had is un-doing this once it's been done. Unless we're willing to reset every piece of network gear, we can never be sure the ip/arp mapping is not cached somewhere, and then....
months later, some network guy resets a piece of gear, and I lose connection to some server object out there, and realizing that this is caused by removing an address months before, does not occur to us. It has bitten up painfully.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-14-2004 06:45 AM
01-14-2004 06:45 AM
Re: How or can I bind multiple ips to a single nic.
I try to always make sure I enter these addresses into
the netconf file when adding them, and remove them when
I'm through. Adding them helps me make sure we don't have a
reboot cause us any troubles... and I don't remove them from
netconf until I've done "ifconfig lanX:X 0.0.0.0"
(Followed by ifconfig "lanX:X down" if needed. Usually not.)
Simply doing the "ifconfig lanX:X down" doesn't always help.
Didn't mean to hijack your thread, Richard.
In case you were interested in making such aliased IP's
persistent across reboots... simply add the entries in the
/etc/rc.config.d/netconf file following the same format. ie...
INTERFACE_NAME[0]=lan2
IP_ADDRESS[0]=10.10.2.55
SUBNET_MASK[0]="0xffff0000"
BROADCAST_ADDRESS[0]=10.10.255.255
ETC[0]...
INTERFACE_NAME[1]=lan2:1
IP_ADDRESS[1]=10.10.2.56
SUBNET_MASK[1]="0xffff0000"
BROADCAST_ADDRESS[1]=10.10.255.255
ETC[1]...