- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: configure 2 interfaces on the same lan
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
09-28-2005 01:32 AM
09-28-2005 01:32 AM
I'm trying to configure a rp4440 running HP-UX 11iv1 to have 2 network interfaces connected to the same LAN.
Both are configured with the same subnet mask.
When I run the ifconfig on lan1, the route configuration seems OK, for example (subnet mask is 139.54.129.192, hostname is 'visan'):
Destination Gateway Flags Refs Interface Pmtu
localhost localhost UH 0 lo0 4136
139.54.129.240 139.54.129.240 UH 0 lan1 4136
visan visan UH 0 lan0 4136
139.54.129.192 139.54.129.240 U 2 lan1 1500
139.54.129.192 visan U 2 lan0 1500
...
loopback localhost U 0 lo0 0
default 139.54.129.254 UG 0 lan0 0
but at this point, I can no more ping the default gateway from my server, nor connect to it from outside. It seems to jam the network service.
Can someone tell me where I am wrong ??
thanks.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2005 02:10 AM
09-28-2005 02:10 AM
SolutionYou either need to have the 2 NICs on different subnets, or utilize software like AutoPort Aggregation to combine the 2 physical NICs into a single logical NIC.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2005 02:26 AM
09-28-2005 02:26 AM
Re: configure 2 interfaces on the same lan
Example:
nic1 192.168.0.10 netmask 255.255.255.0
nic2 192.168.1.20 netmask 255.255.255.0
netmask says that the first 3 octets are the network.
192.168.0
192.168.1
supported
nic1 192.168.1.10 netmask 255.255.255.0
nic2 192.168.1.20 netmask 255.255.255.0
unsupported.
I tried this once on HP-UX. It caused the machine to drop off the network immediately. It required console access to fix it.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2005 02:48 AM
09-28-2005 02:48 AM
Re: configure 2 interfaces on the same lan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2005 04:55 AM
09-29-2005 04:55 AM
Re: configure 2 interfaces on the same lan
There can be ways to get outbound traffic to flow through each NIC without APA - in involves setting ip_strong_es_model to a value other than default. At that point, traffic will tend to flow out the same NIC on which it arrived. The downside is that now each NIC will only accept traffic with destination IP addresses matching those assigned to the NIC. I believe there was going to be a middle ground for ip_strong_es_model, but am not sure if that is released at present. The intent was to have source IP included in route selection without the inbound restriction.
You could also add specific static routes using specific local IPs as the gateway - assuming of course that your routers support proxy ARP.
Still, it _is_ best to use APA when you want multiple NICs on the same "lan" - it gives failover, load balancing etc all without needing to do clever things at the transport layer.