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
06-06-2006 09:55 PM
06-06-2006 09:55 PM
Please answer for my following queries.
1.How can we get the ip address of remote machines accessing my hp ux server and what applications each ip is accessing.
2.is there any way to analyse the data frame coming in or going out of the server?
3.Or is there any way to find the mac address of the incoming requests..?
thanks in advance...
s.o
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2006 10:02 PM
06-06-2006 10:02 PM
Solution1) You can do it by # who -T and # whodo commands
2) Use packet sniffers like TCPDUMP or Ethereal. Both are part of Internet express package http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1111
3) arp -a
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2006 01:57 AM
06-07-2006 01:57 AM
Re: network-
your answeres are excellent. I would like to askone more doubt to you. who -T is giving ip address but how can i know that what port the request from these ip machines are accessing?
Hope you could give me the answer for this either..
Thanks again and assigning the points.
s.o
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2006 02:06 AM
06-07-2006 02:06 AM
Re: network-
To get the port details, you have use another tool, lsof
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/lsof-4.77/
Also, netstat -na |grep -E
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2006 03:28 AM
06-07-2006 03:28 AM
Re: network-
you can also try the binary version from:
http://the-other.wiretapped.net/security/host-security/lsof/binaries/hpux/B.11.11/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2006 12:40 PM
06-07-2006 12:40 PM
Re: network-
The arp -a (or arp -an to avoid the DNS lookups) will only show MAC address for systems in the same local LAN segment and who are _NOT_ using a router to get to your system. If the client is on the other side of a router, you will either see the client's IP associated with the router's MAC if you are using Proxy ARP, or you will not see the client's IP/MAC in the arp output at all.
That same restriction would apply to tcpdump and/or ethereal - for remote clients, the MAC one will see will be the MAC of the router.