1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/traceroute.md

33 lines
715 B
Markdown
Raw Normal View History

# traceroute
> 네트워크 호스트로 패킷 경로를 추적하여 출력.
> 더 많은 정보: <https://manned.org/traceroute>.
- 호스트로 traceroute 실행:
`traceroute {{example.com}}`
- IP 주소 및 호스트 이름 매핑 비활성화:
`traceroute -n {{example.com}}`
- 응답 대기 시간을 초 단위로 지정:
`traceroute --wait={{0.5}} {{example.com}}`
- 홉당 쿼리 수 지정:
`traceroute --queries={{5}} {{example.com}}`
- 프로빙 패킷의 크기를 바이트 단위로 지정:
`traceroute {{example.com}} {{42}}`
- 목적지까지의 MTU 결정:
`traceroute --mtu {{example.com}}`
- UDP 대신 ICMP를 사용하여 traceroute 실행:
`traceroute --icmp {{example.com}}`