SSH netstat command

If you wish to debug or track statistics of your network in a Linux environment you can use SSH netstat command. In this article, we will show you the basic usage of the SSH netstat command that you can master on SSH VPS or a Dedicated Server.

Displaying all sockets – TCP and UDP with SSH netstat command

netstat -a

Displaying specific protocols using netstats and SSH

netstat -at # TCP
netstat -au # UDP

Displaying all listening ports

netstat -l
netstat -lt # TCP listening

Displaying all listening, over TCP and UDP, in numeric and their ports

netstat -tulnp
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Linux tar Command

The Linux tar command is used to compress and extract files to and from an archive. In this...

How to Install WordPress via SSH

Since WordPress is the most widely used CMS it’s installation process has been made as simple and...

SSH Execute Command on a Remote server

Via SSH you can connect to a remote server’s shell. This will allow you to execute commands on...

How to connect to your shared hosting account via SFTP with FileZilla

SFTP is a convenient way to use SSH, while also using the interface of a simple FTP. In order to...

SSH head command

If you wish to view the head or the topmost of a large text file you can use SSH head command....