tcpdump: add Korean translation (#11043)

pull/23/head
HoJeong Im 2023-10-19 18:57:54 +09:00 committed by K.B.Dharun Krishna
parent b579c44334
commit c2f538c24f
No known key found for this signature in database
GPG Key ID: 1B8ECA406788AFA4
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
# tcpdump
> 네트워크의 트래픽 덤프.
> 더 많은 정보: <https://www.tcpdump.org>.
- 사용 가능한 네트워크 인터페이스 나열:
`tcpdump -D`
- 특정 인터페이스의 트래픽 캡처:
`tcpdump -i {{eth0}}`
- 콘솔에서 콘텐츠(ASCII)를 표시하는 모든 TCP 트래픽을 캡처:
`tcpdump -A tcp`
- 호스트에서 들어오고 나가는 트래픽을 캡처:
`tcpdump host {{www.example.com}}`
- 특정 인터페이스, 소스, 목적지 및 목적지 포트에서 트래픽을 캡처:
`tcpdump -i {{eth0}} src {{192.168.1.1}} and dst {{192.168.1.2}} and dst port {{80}}`
- 네트워크 트래픽 캡처:
`tcpdump net {{192.168.1.0/24}}`
- 포트 22를 통한 트래픽을 제외한 모든 트래픽을 캡처하고 덤프 파일에 저장:
`tcpdump -w {{dumpfile.pcap}} port not {{22}}`
- 지정된 덤프 파일에서 읽기:
`tcpdump -r {{dumpfile.pcap}}`