- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Multi-homing
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-06-2000 09:53 AM
тАО09-06-2000 09:53 AM
Multi-homing
What has to be set up on the UNIX system, anything? Is this something you set up through your ISP? I'm so confused. Any help would be much appreciated. Thanks again in advance:-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2000 10:14 AM
тАО09-06-2000 10:14 AM
Re: Multi-homing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2000 11:27 AM
тАО09-06-2000 11:27 AM
Re: Multi-homing
From a security standpoint, multihoming your servers (to the internet) is a bad idea (its like having multiple entry points to your house...) From an traffic accounting standpoint, it can be a nightmare to keep a track of.
But if you absolutely have to (for example if you are setting up vpn's with suppliers etc) you would have to define specific routes for traffic destined for particular networks. I would say, leave the multihoming to another device (firewall or router)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2000 03:13 PM
тАО09-06-2000 03:13 PM
Re: Multi-homing
Here goes..
When a machine has two or more physical connections they are called multi-homed hosts. Multihomed hosts require more than one IP address. Each address correponds to one of the machines network connections.
How is that exactly 50 words!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-07-2000 07:51 AM
тАО09-07-2000 07:51 AM
Re: Multi-homing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2000 04:03 AM
тАО09-08-2000 04:03 AM
Re: Multi-homing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-08-2000 04:07 AM
тАО09-08-2000 04:07 AM
Re: Multi-homing
For 10.20 see man ifalias which came with one of the early network patches.
For 11.00 see man ifconfig.
ifconfig lan0 .....
ifconfig lan0:1 ....
etc.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-10-2000 02:50 PM
тАО09-10-2000 02:50 PM
Re: Multi-homing
ifconfig lan0:0 inet 18.2.2.2
ifconfig lan0:1 inet 18.3.3.3
to make it permanant add the following entries into /etc/rc.comfig.d/netconf
INTERFACE_NAME[0]=lan0
IP_ADDRESS[0]=18.2.2.2
SUBNET_MASK[0]=255.0.0.0
INTERFACE_STATE[0]=up
INTERFACE_NAME[1]=lan0:1
IP_ADDRESS[1]=18.3.3.3
SUBNET_MASK[1]=255.0.0.0
INTERFACE_STATE[1]=up