- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- cannot able to find process
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
04-05-2011 04:44 AM
04-05-2011 04:44 AM
From Firewall team, i got a message that my unix server is trying to ping another server continously and firewall is denying.
He asked to me to kill that process.
I can't trace that. How will i trace the ping process. I have killed all the session now only console is there. How tio kill that process
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2011 04:50 AM
04-05-2011 04:50 AM
Re: cannot able to find process
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2011 05:07 AM
04-05-2011 05:07 AM
Re: cannot able to find process
HP-UX provides the nettl command to perform network tracing and logging.
for more;
man nettl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2011 05:36 AM
04-05-2011 05:36 AM
Re: cannot able to find process
He shared me the logs. Attached here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2011 01:01 PM
04-05-2011 01:01 PM
Solutionhttp://www.iana.org/assignments/icmp-parameters
Ping (or "ICMP Echo") would be type 8, code 0; a ping response (also known as "pong" or "ICMP Echo Reply") is type 0, code 0.
So, the "Port unreachable" message the firewall is blocking is sent from IP address 172.17.162.176 to IP address 172.20.117.175. In effect, .176 is telling to .175: "No, I don't have the service you're trying to reach. Please stop trying."
That means the system 172.20.117.175 is again and again trying to access some port on the 172.17.162.176 system. If, as you said, you've stopped all applications and ended all sessions on .176, then there are no network services running, and all connection attempts to the .176 will be rejected with similar ICMP messages (or in the case of TCP protocol, with TCP RESET packets).
The "Port unreachable" messages are sent by the OS kernel. Sending them is a very low-priority task: if the system is busy with more important tasks, the "Port unreachable" messages would be delayed or not sent at all. But if you have stopped everything on .176, the kernel doesn't have anything more important to do...
You should examine the 172.20.117.175 system to try and find out what service it's trying to access on .176. Once you find and make it stop its useless attempts, the ICMP messages will stop too.
To see what port the .175 system is trying to access, you might have to use nettl (as Hakki suggested) to dump the incoming traffic on .176 and find the port numbers from the dump. The destination port number will often (but not always) identify the service: once you know that, you might be able to figure out which process on .175 is trying to reach that service on .176.
Alternatively, if you have the free (and very useful) lsof tool installed on .175, you might be able to identify the process by running "lsof -i :
MK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2011 11:05 AM
04-06-2011 11:05 AM
Re: cannot able to find process
You are a genious. I will try to find it and stop.
Even network guy who working inmy team doesn't know these stuffs.
Thanks . I will check it