- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Receving ICMP Packet on VLAN interface
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-16-2006 04:55 PM
01-16-2006 04:55 PM
We have a application which composes ICMP echo request packet and sends over to virtual lan interface. It then expects an ICMP echo reply on that virtual LAN interface.
Somehow i am not receving that reply packet and doubt whether that packet is been discarded by the base interface (Physical Interface) since the MAC received must be of virtual LAN interface.
Can anybody around tell me what exactly is happening and how i can get that ICMP echo reply packet??
Thanks for all your valuable suggestions.
Regards,
Bharat
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2006 05:07 PM
01-16-2006 05:07 PM
Re: Receving ICMP Packet on VLAN interface
grep -i echo /etc/inetd.conf
/etc/inetd.conf:#echo stream tcp nowait root internal
/etc/inetd.conf:#echo dgram udp nowait root internal
/etc/inetd.conf:#echo stream tcp nowait root internal
/etc/inetd.conf:#echo dgram udp nowait root internal
grep -i echo /etc/services
echo 7/tcp # Echo
echo 7/udp #
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2006 05:37 PM
01-16-2006 05:37 PM
Re: Receving ICMP Packet on VLAN interface
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2006 06:07 PM
01-16-2006 06:07 PM
Re: Receving ICMP Packet on VLAN interface
This is Prasanna, Bharat's friend.
Below is what we have on our systems:
# cat /etc/services | grep -i echo
echo 7/tcp # Echo
echo 7/udp #
# cat /etc/inetd.conf | grep -i echo
echo stream tcp6 nowait root internal
echo dgram udp6 nowait root internal
--
thanks and regards,
Prasanna
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2006 06:42 PM
01-16-2006 06:42 PM
Re: Receving ICMP Packet on VLAN interface
Also packet trace would be helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2006 08:44 PM
01-16-2006 08:44 PM
Re: Receving ICMP Packet on VLAN interface
How are you doin man.
Well you said:
Does this setup involves two different cards on two different machines?? Yes
If yes, is there a gateway/firewall between??
No
Is ICMP allowed (at least echo) on it??
Yes
Basically we have a two VLAN's on a one single interface say vlan1 and vlan2 on system SYS1. Now base NIC card has one MAC address and both vlans's have different MAC addresses. Similarly on the other machine SYS2 we have vlan1 and vlan2.
Now we expect vlan1 to talk to vlan1 and same for vlan2.
But when our application sends ICMP echo request on vlan1 of SYS1 and expect ICMP echo reply on vlan1 it is not happening. This is were we are stucked at.
What we suspect is whether packets supposed to be recevied on vlan1 are discarded by the physical (base) card since it's MAC address is different.
Thanks a lot for your suggestions.
Regards,
Bharat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2006 08:53 PM
01-16-2006 08:53 PM
Re: Receving ICMP Packet on VLAN interface
Also did you look at
netstat -p icmp
Monitor it and see it you see anything there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-16-2006 10:36 PM
01-16-2006 10:36 PM
Re: Receving ICMP Packet on VLAN interface
We did not configure any MAC addresses. The server side VLAN configuration sets up two MAC addresses. I followed SAM steps to configure these virtual lans.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2006 12:31 PM
01-17-2006 12:31 PM
SolutionThe suggestion to start tcpdump tracing is a good one. Make sure the ICMP echo request arrives at the destination, see if the response arrives at one of the interfaces in the system.
How are you instructing the stack to send/route the ICMP echo request you are generating?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2006 12:39 PM
01-17-2006 12:39 PM
Re: Receving ICMP Packet on VLAN interface
HTH,
Jay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2006 06:55 PM
03-19-2006 06:55 PM
Re: Receving ICMP Packet on VLAN interface
It helped to resolve our problem.