- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Firewall reporting excessive ICMP from HP-UX b...
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-19-2006 05:28 AM
10-19-2006 05:28 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2006 05:52 AM
10-19-2006 05:52 AM
Re: Firewall reporting excessive ICMP from HP-UX boxes
I'd like to see a log with some data before getting excited about this. I am not sure what the definition of excessive is.
HP-UX 11i can operate just fine with ICMP disabled. It takes a single ndd command to allow an 11.00 server to operate the same way.
I'd start with as a reseach tool tcpdump or ethereal(now known as wireshark).
You can look at port 8 or 11 (I can't remember which and see if there really are a lot of ping requests coming off the HP-UX boxes.
As a security measure, I'd make sure users can't use ping. Its a adminitrator tool and by default can not be used by unpriviledged users, eg users who are not root.
The tcpdump output will at least let you identify which servers are problematic.
The causes vary and could be due to a hardware or wiring fault or abuse of icmp commands.
The firewall can be configured to block ICMP from HP-UX boxes. This will annoy the admins but not effect normal operation of the systems.
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
10-19-2006 05:53 AM
10-19-2006 05:53 AM
Re: Firewall reporting excessive ICMP from HP-UX boxes
What are you running on the HP-UX machines? Openview? Big Brother? Any other type of monitoring software? Some monitoring software regularly sends pings to determine if the host is up or not. This may be what is happening.
If the pings happen at fixed intervals check cron and see if any cron jobs are doing pings.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2006 05:56 AM
10-19-2006 05:56 AM
Re: Firewall reporting excessive ICMP from HP-UX boxes
There are many ways to approach this. The first thing I would do is compare the firewall log to the cron log (/var/adm/cron/log). Try to correlate ICMP packet requests with cronjobs that have run. Also see if anything out of the ordinary is running ('top') or scheduled to run ('crontab -l
Another method would be to monitor network traffic from your HP-UX servers. If they are linked to your firewall via a hub, you may be able to passively monitor network traffic with a PC attached to the same hub. This will require software such as Wireshark, which is available for Linux and Windows, among other OSes. If this is not an option, you could install tcpdump on your HP-UX servers (available here: http://hpux.connect.org.uk/hppd/hpux/Networking/Admin/tcpdump-3.9.5/) to do the same thing.
With your monitoring software, you will want to look for other packets sent from your server immediately before or after the ICMP packets. Try to determine the source application by analyzing the contents of these packets.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2006 07:22 AM
10-19-2006 07:22 AM
Solution1. A long-forgotten cron script that is checking if various IP addresses are 'working'.
2. The networking software is performing a dead gateway detection probe (more likely). The ndd program can show the current state and if necessary, turn off this option. To see the current value:
ndd -get /dev/tcp ip_ire_gw_probe
If you see 1, then the network driver is probing all gateways with an ICMP request to see if they are 'working'. (working is a misnomer -- it really means a reply ws created and has no bearing on functionality except that the power is turned on). Many firewall and router managers will disable ICMP responses in which case, if your setting is 1, within 5 minutes, your link will go down due to dead gateway detection failure.
Turn off this feature with:
ndd -set /dev/tcp ip_ire_gw_probe 1
Then check with the network folks to see if the ICMP packets have stopped. To make this change permanent, edit /etc/rc.config.d/nddconf file. Then test to see that the file is valid with:
ndd -c
NOTE: early versions of ndd failed the -c option. Make sure your ndd is fully patched.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2006 09:05 AM
10-19-2006 09:05 AM
Re: Firewall reporting excessive ICMP from HP-UX boxes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2006 09:28 AM
10-19-2006 09:28 AM
Re: Firewall reporting excessive ICMP from HP-UX boxes
Bill Hassell, sysadmin