freebsd/*,netbsd/*,openbsd/*,sunos/*: add Korean translation (#13120)

* freebsd/*: add Korean translation

* netbsd/*: add Korean translation

* openbsd/*: add Korean translation

* sunos/*: add Korean translation

* freebsd/look: update Korean translation

* prstat: fix placeholder
This commit is contained in:
코드싸이
2024-06-23 21:09:13 +09:00
committed by GitHub
parent c0889e7573
commit 67f1a6914b
39 changed files with 817 additions and 0 deletions

25
pages.ko/sunos/snoop.md Normal file
View File

@@ -0,0 +1,25 @@
# snoop
> 네트워크 패킷 스니퍼.
> tcpdump와 동일한 기능을 하는 SunOS 대체품.
> 더 많은 정보: <https://www.unix.com/man-page/sunos/1m/snoop>.
- 특정 네트워크 인터페이스에서 패킷을 캡처:
`snoop -d {{e1000g0}}`
- 화면에 표시하는 대신 캡처된 패킷을 파일에 저장:
`snoop -o {{경로/대상/파일}}`
- 파일에서 패킷의 상세 프로토콜 레이어 요약 표시:
`snoop -V -i {{경로/대상/파일}}`
- 호스트 이름에서 지정된 포트로 가는 네트워크 패킷을 캡처:
`snoop to port {{포트}} from host {{호스트명}}`
- 두 IP 주소 간에 교환되는 네트워크 패킷의 hex 덤프를 캡처하고 표시:
`snoop -x0 -p4 {{ip1}} {{ip2}}`