- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP 9000 creating ping traffic to internet address
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-23-2001 01:55 PM
08-23-2001 01:55 PM
Does anyone know what may be causing this type of activity
Thanks
Dave Siegfried
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2001 11:23 PM
08-23-2001 11:23 PM
Re: HP 9000 creating ping traffic to internet address
Could this possibly be the internet address of your default gateway that the box is trying to ping?
Regards,
Vincent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2001 07:58 AM
08-24-2001 07:58 AM
Re: HP 9000 creating ping traffic to internet address
Any idea what outside address is being pinged?
How do you know it is being pinged?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2001 08:11 AM
08-24-2001 08:11 AM
Re: HP 9000 creating ping traffic to internet address
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2001 09:25 AM
08-24-2001 09:25 AM
Re: HP 9000 creating ping traffic to internet address
using HP-UX 11.00
The addresses seem to be universities.
Here are the adresses being "pinged"
128.118.25.3
128.175.7.39
128.105.39.11
192.31.216.38
These 4 addresses cycle through every few seconds. ( None are our default gateway)
Regarding how do we know that ping traffic is actually happening:
Our firewall keeps a log file of this traffic ,which gets very large, quickly.
we are not using a smart relay in the sendmail.cf file
here is the setting in that file:
# "Smart" relay host (may be null)
DS
QUESTION:
Is this a normal activity (pinging the internet)for an HP9000 using sendmail???
Thanks for everyone's input
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-24-2001 09:48 AM
08-24-2001 09:48 AM
Solutionyour ip_pmtu_strategy. Here's a tech note from HP that explains what's happening:
HPSBUX0001-110 Security Vulnerability with PMTU strategy (revised)
The documents are listed below.
-------------------------------------------------------------------------------
Document ID: HPSBUX0001-110
Date Loaded: 20000213
Title: Security Vulnerability with PMTU strategy (revised)
-------------------------------------------------------------------------
**REVISED01**HEWLETT-PACKARD COMPANY SECURITY ADVISORY: #00110, 24 Jan 2000
Last Revised: 11 Feb. 2000
-------------------------------------------------------------------------
The information in the following Security Advisory should be acted upon
as soon as possible. Hewlett-Packard Company will not be liable for any
consequences to any customer resulting from customer's failure to fully
implement instructions in this Security Advisory as soon as possible.
-------------------------------------------------------------------------
PROBLEM: An HP-UX 10.30, 11.00, or 11.04 system can be used as an IP
traffic amplifier. Small amounts of inbound traffic can result
in larger amounts of outbound traffic.
PLATFORM: **REVISED01**
---->>> HP-UX releases 10.30, 11.00 and 11.04 only.
DAMAGE: Depending upon the amount and nature of inbound traffic, an
HP-UX 10.30/11.00/11.04 system can be used to flood a target
system with IP packets which could result in a denial of
service.
SOLUTION: Set the NDD parameter ip_pmtu_strategy to 1.
AVAILABILITY: This capability is already available.
CHANGE SUMMARY: Added HP-UX VirtualVault release 11.04.
-------------------------------------------------------------------------
I.
A. Background
HP provides a proprietary method for determining PMTU. When
traffic needs to be routed to a destination for which the optimum
MTU has not been determined, ICMP packets are used to discover
the MTU for that path while data traffic is shipped in parallel.
This is the default strategy for determining PMTU.
B. Recommended solution
Reference ndd manpage (1M), /etc/rc.config.d/nddconf
To ensure that this parameter is set each time the system
is booted, add the following lines to /etc/rc.config.d/nddconf
TRANSPORT_NAME[<index>]=ip
NDD_NAME[<index>]=ip_pmtu_strategy
NDD_VALUE[<index>]=1
The value of <index> is an integer from 0 to 99. The first
parameter specified in the file should use an <index> of
0, the second an <index> of 1, and so on.
Once these changes have been made, execute the following
command:
/usr/bin/ndd -c
This sets all of the options specified in the file
/etc/rc.config.d/nddconf.
To verify that the parameter is set correctly, use the following
command.
/usr/bin/ndd -get /dev/ip ip_pmtu_strategy
This should report a value of 1.
Another way to change the ip_pmtu_strategy parameter on a running
system is to use the following NDD command:
/usr/bin/ndd -set /dev/ip ip_pmtu_strategy 1
This setting will only last until the system is rebooted
at which point the value of the parameter will be determined by the
default value of 2 or whatever value is set in
/etc/rc.config.d/nddconf