- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- How to cheak network users ip.which are access my ...
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
12-26-2011 11:11 PM
12-26-2011 11:11 PM
How to cheak network users ip.which are access my server ports.
Hello.
How to cheak network users ip.which are access my server ports.
And Is any command to cheak .What are network users doing and ip.
which are connected my network either is windows client or linux or hp ux.
aamir uddin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2012 08:13 AM
01-09-2012 08:13 AM
Re: How to cheak network users ip.which are access my server ports.
If you want to see connections to a particular TCP or UDP port:
lsof -i tcp:<port_number> # or lsof -i udp:<port_number>
Example:
# lsof -i tcp:22 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME sshd 4814 root 3u IPv4 9115 0t0 TCP *:ssh (LISTEN) sshd 4814 root 4u IPv6 9117 0t0 TCP *:ssh (LISTEN)
... looks like sshd is listening for incoming connections for both IPv4 and IPv6, but there are no incoming connections at this time.
If you want to see all connections on the system, use "netstat". For example, "netstat -anAinet -p" might be a good set of options for Linux netstat. (The command "man netstat" will show you a description of options.)