GeeksforGeeks (Polski)
Polecenie Netstat wyświetla różne informacje związane z siecią, takie jak połączenia sieciowe, tabele routingu, statystyki interfejsów, połączenia maskarady, członkostwo w multiemisji itp.
Przykłady kilka praktycznych poleceń netstat:
- -a -all: Pokazuje gniazda nasłuchujące i nie nasłuchujące. Z opcją –interfaces, pokaż nieużywane interfejsy
# netstat -a | more : To show both listening and non-listening sockets.
- Wyświetl wszystkie porty TCP.
# netstat -at : To list all tcp ports.
- Wyświetl wszystkie porty UDP.
# netstat -au : To list all udp ports.
- Wyświetl tylko nasłuchujące porty.
# netstat -l : To list only the listening ports.
- Wyświetl tylko nasłuchujące porty TCP.
# netstat -lt : To list only the listening tcp ports.
- Wyświetl tylko nasłuchujące porty UDP.
# netstat -lu : To list only the listening udp ports.
- Wyświetl tylko nasłuchujące porty UNIX
# netstat -lx : To list only the listening UNIX ports.
- Wyświetl statystyki dla wszystkich portów.
# netstat -s : To list the statistics for all ports.
- Wyświetl statystyki dotyczące portów TCP (lub) UDP.
# netstat -st(TCP) : To list the statistics for TCP ports.
# netstat -su(UDP) : List the statistics for UDP ports.
- Wyświetlaj PID i nazwy programów na wyjściu.
# netstat -pt : To display the PID and program names.
- Drukuj informacje netstat w sposób ciągły.
netstat będzie drukował informacje w sposób ciągły co kilka sekund.
# netstat -c : To print the netstat information continuously.
- Nieobsługiwane rodziny adresów w systemie.
# netstat --verbose : To get the non-supportiveaddress families in the system.
At the end, we have something like this :
- Informacje o routingu jądra.
# netstat -r : To get the kernel routing information.
- Port, na którym jest program jest uruchomiony.
# netstat -ap | grep ssh : To get the porton which a program is running.
- Który proces używa określonego portu:
# netstat -an | grep ":80" : To get the processwhich is using the given port.
- Lista interfejsów sieciowych.
# netstat -i : To get the list of network interfaces.
Display extended information on the interfaces (similar to ifconfig) using netstat -ie:# netstat -ie : To display extended information on the interfaces
Dokumentacja:
Strona podręcznika Linux dla netstat
Ten artykuł jest autorstwa Kishlaya Vermy. Jeśli podoba Ci się GeeksforGeeks i chciałbyś wnieść swój wkład, możesz również napisać artykuł za pomocą contrib.geeksforgeeks.org lub wysłać swój artykuł na adres [email protected]. Zobacz swój artykuł pojawiający się na stronie głównej GeeksforGeeks i pomóż innym Geekom.
Napisz komentarz, jeśli znajdziesz coś nieprawidłowego lub chcesz podzielić się więcej informacjami na temat omówiony powyżej.
Uwaga czytelniku! Nie przestawaj się teraz uczyć. Zdobądź wszystkie ważne koncepcje teorii CS do wywiadów SDE dzięki kursowi teorii CS w przystępnej cenie i przygotuj się na branżę.