mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 01:26:03 +02:00
dig: Add Korean Translation (#3731)
This commit is contained in:
parent
f77784c606
commit
72fce08ef6
1 changed files with 31 additions and 0 deletions
31
pages.ko/common/dig.md
Normal file
31
pages.ko/common/dig.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# dig
|
||||
|
||||
> DNS 조회 유틸리티.
|
||||
|
||||
- 호스트이름과 관련된 IP 조회하기 (A records):
|
||||
|
||||
`dig +short {{example.com}}`
|
||||
|
||||
- 주어진 도메인 이름과 관련된 메일 서버 조회하기 (MX record):
|
||||
|
||||
`dig +short {{example.com}} MX`
|
||||
|
||||
- 주어진 도메인 이름에 대한 모든 유형의 레코드들 가져오기:
|
||||
|
||||
`dig {{example.com}} ANY`
|
||||
|
||||
- 쿼리할 대체 DNS 서버를 지정하기:
|
||||
|
||||
`dig @{{8.8.8.8}} {{example.com}}`
|
||||
|
||||
- IP 주소에서 역방향 DNS 조회하기 (PTR record):
|
||||
|
||||
`dig -x {{8.8.8.8}}`
|
||||
|
||||
- 영역에 대해 권한있는 이름 서버들을 찾고 SOA 레코드들 표시하기:
|
||||
|
||||
`dig +nssearch {{example.com}}`
|
||||
|
||||
- 반복적인 쿼리들을 수행하고 도메인 이름을 분석하기 위해 전체 추적 경로를 표시하기:
|
||||
|
||||
`dig +trace {{example.com}}`
|
Loading…
Add table
Reference in a new issue