- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- networking issue in eth0 and eth1 , arp
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
08-06-2009 02:12 AM
08-06-2009 02:12 AM
networking issue in eth0 and eth1 , arp
I have two network cards eth0 and eth1 in rhel5 .
eth0 - 192.168.168.23 - macaddress1
eth1 - 192.168.168.26 - macaddress2
Iam able to ping both ip address from windows xp machine
if iam typing arp -a command ,iam getting same mac address for both 192.168.168.23 and 192.168.168.26
arp -a in win xp gives
192.168.168.23 macaddress1
192.168.168.26 macaddress1
iam getting the mac address of eth0 for both the ip .
How to trouble shoot ????
thanks and regards,
M.Gunasekaran.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2009 02:16 AM
08-06-2009 02:16 AM
Re: networking issue in eth0 and eth1 , arp
Are they in the same subnet?
Goran
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2009 02:20 AM
08-06-2009 02:20 AM
Re: networking issue in eth0 and eth1 , arp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2009 02:34 AM
08-06-2009 02:34 AM
Re: networking issue in eth0 and eth1 , arp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2009 02:35 AM
08-06-2009 02:35 AM
Re: networking issue in eth0 and eth1 , arp
Connecting one machine with two separate NICs and IP addresses to one subnet is not a recommended configuration and will usually lead to exactly the same symptoms you saw.
If you only need two IP addresses, configure one of the addresses as an IP alias:
192.168.168.23 = eth0 just as before,
192.168.168.26 = eth0:1 IP alias.
Please read the documentation of your Linux distribution to find the recommended way to configure IP aliases.
If you need more network bandwidth than one NIC can provide, you should bond the interfaces together into a single bond0 interface. When the bond0 interface is configured, you can then use IP aliases just like with a single NIC.
See this URL for general information about NIC bonding:
http://www.mjmwired.net/kernel/Documentation/networking/bonding.txt
Please read the documentation of your Linux distribution to find how to configure NIC bonding.
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2009 08:43 AM
08-07-2009 08:43 AM
Re: networking issue in eth0 and eth1 , arp
One way to deal with this is to use sysctl to set the "arp_ignore" parameters to a value of 1. You can put the setting for the "def" one you see in:
sysctl -a | grep ignore
into /etc/sysctl.conf and it will be applied on subsequent reboots.
Now, backing up from your specific question, why are you configuring multiple interfaces (from the point of view of the transport) into the same IP subnet? What end do you wish to achieve?