Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

linux command to see port status code example

Example 1: how to check list of open ports in linux

sudo lsof -i -P -n | grep LISTEN
sudo netstat -tulpn | grep LISTEN
sudo lsof -i:22 # see a specific port such as 22
sudo nmap -sTU -O IP-address-Here

Example 2: linux see used ports

netstat -tulpn

Tags:

Typescript Example

Related

edit item by class name code example sum column eloquent code example vertical bootstrap 4 cards code example click for page refresh code example setstate push object to array code example ESLint: Cannot read property 'loc' of undefined Occurred while code example apply transparency to background-image code example turn object into an array javascript code example mysql insert into from another table select code example private route next js code example print query url in axios request code example getting started with selenium java code example

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy