- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Packets to LAN3 go to LAN1.
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
10-09-2002 08:29 AM
10-09-2002 08:29 AM
Packets to LAN3 go to LAN1.
We have Nclass (11.0, MC/SG) with 5 NIC cards with lan1 and lan 3 as primary and lan4 and lan5 as standby. lan1 and lan 3 are in diff. subnet. But when i send a packet from an external box to lan3's ip it always goes to lan1. How would that happen? I have asked this question before but have not got the solution. I really don't understand how a packet can come into the switch and across the SSR port with the IP of the LAN3 interface as the destination IP, and still go into the LAN1 interface. It doesn't make sense. Please help me here Gurus..
Thanks
Joe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2002 08:52 AM
10-09-2002 08:52 AM
Re: Packets to LAN3 go to LAN1.
Can you try turning off ip_forwarding on your Nclass server?.
ndd -set /dev/ip ip_forwarding 0
Then ping from external box to the lan3's IP.
After lunch,
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2002 09:42 AM
10-09-2002 09:42 AM
Re: Packets to LAN3 go to LAN1.
Still the same result.
Thanks
Joe.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2002 09:57 AM
10-09-2002 09:57 AM
Re: Packets to LAN3 go to LAN1.
route add net (remoted LAN add 123.123.123.0) (gateway address 111.111.111.1)
man route
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2002 10:18 AM
10-09-2002 10:18 AM
Re: Packets to LAN3 go to LAN1.
netstat -rn
No doubt it will tell the box to use lan1 as the default or at least as the route to the distant network.
If you are talking about packets entering the box then you have to look at your routers' routing tables to see what they are doing.
If you are doing a traceroute to the Lan3 address then the reason you are getting a reply from Lan1 is that the routing table tells it to send a pcaket back to you via that interface and since it does it puts its lan1 IP address on the packet as the source and that's what you see in the results of the traceroute. Look at
netstat -i
and you will see (if there is no other traffic) that the traceroute packets come in on lan3 and go out on lan1. Remember that the outbound routing software does not care how a packet originally got to the box. It just looks up the destination in the routing table and does whatever the table tells it and if the table says use lan1 to get to network x then that's what it does.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2002 10:30 AM
10-09-2002 10:30 AM
Re: Packets to LAN3 go to LAN1.
If you ping to lan3's ip from the remote host, all the top layer IPs (if there is any routing going on somewhere) get ripped off when it reaches lan1 and should get dropped because the IP does not match. If ip_forwarding is on, then lan1 will know about lan3 and take the packet. I assume you are not running gated on the HP box.
Please post your netstat -rn outputs of your Nclass and remote box. Also post the output of 'ping -o Nclass -n 2 ' on the remote.
-Sri