GeeksforGeeks (한국어)
Netstat 명령은 네트워크 연결, 라우팅 테이블, 인터페이스 통계, 가장 연결, 멀티 캐스트 멤버십 등과 같은 다양한 네트워크 관련 정보를 표시합니다.
몇 가지 실용적인 netstat 명령 :
- -a -all : 청취 소켓과 비 청취 소켓을 모두 표시합니다. –interfaces 옵션을 사용하여 작동하지 않는 인터페이스를 표시합니다.
# netstat -a | more : To show both listening and non-listening sockets.
- 모든 tcp 포트를 나열합니다.
# netstat -at : To list all tcp ports.
- 모든 udp 포트를 나열합니다.
# netstat -au : To list all udp ports.
- 수신 대기 포트만 나열합니다.
# netstat -l : To list only the listening ports.
- 수신 TCP 포트만 나열합니다.
# netstat -lt : To list only the listening tcp ports.
- 수신 UDP 포트만 나열합니다.
# netstat -lu : To list only the listening udp ports.
- 수신 UNIX 포트만 나열
# netstat -lx : To list only the listening UNIX ports.
- 모든 포트에 대한 통계를 나열합니다.
# netstat -s : To list the statistics for all ports.
- TCP (또는) UDP 포트에 대한 통계를 나열합니다.
# netstat -st(TCP) : To list the statistics for TCP ports.
# netstat -su(UDP) : List the statistics for UDP ports.
- 출력에 PID 및 프로그램 이름을 표시합니다.
# netstat -pt : To display the PID and program names.
- netstat 정보를 계속 인쇄합니다.
netstat는 몇 번에 한 번씩 정보를 계속 인쇄합니다. 초.
# netstat -c : To print the netstat information continuously.
- 시스템에서 지원되지 않는 주소 계열입니다.
# netstat --verbose : To get the non-supportiveaddress families in the system.
At the end, we have something like this :
- 커널 라우팅 정보입니다.
# netstat -r : To get the kernel routing information.
- 프로그램이 실행 중입니다.
# netstat -ap | grep ssh : To get the porton which a program is running.
- 특정 포트를 사용중인 프로세스 :
# netstat -an | grep ":80" : To get the processwhich is using the given port.
- 네트워크 인터페이스 목록.
# 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
참조 :
netstat 용 Linux 매뉴얼 페이지
이 기사는 Kishlay Verma가 기고했습니다. GeeksforGeeks를 좋아하고 기여하고 싶다면, Contribute.geeksforgeeks.org를 사용하여 기사를 작성하거나 [email protected]로 기사를 메일로 보낼 수도 있습니다. GeeksforGeeks 메인 페이지에 나타나는 기사를보고 다른 Geeks를 도와주세요.
잘못된 내용을 발견하거나 위에서 논의한 주제에 대해 더 많은 정보를 공유하려면 의견을 작성하세요.
독자 여러분! 지금 배우는 것을 멈추지 마십시오. 학생 친화적 인 가격으로 CS 이론 과정을 통해 SDE 인터뷰를위한 모든 중요한 CS 이론 개념을 파악하고 업계에 대비하십시오.
연습 태그 :