[Linux]nslookup 명령어 사용법 및 예제 정리
2017. 8. 14. 14:12
반응형
[Linux] nslookup 명령어 사용법 및 예제 정리
name server 관련한 조회를 할 수 있는 명령어이다.
서버의 네트워크가 제대로 설정되었는지 확인하는 용도로 주로 사용하는데
사용법을 잊지 않기위해 용도별 nslookup 명령을 정리해 본다.
▼사용법
1 2 3 4 5 6 7 8 9 | //google.com 의 IP 확인 $ nslookup google.com Server: 192.168.152.2 Address: 192.168.152.2#53 Non-authoritative answer: Name: google.com Address: 58.229.92.103 Name: google.com Address: 58.229.92.88 | cs |
▼DNS 중 MX(Mail Record) 확인
1 2 3 4 5 6 7 8 9 10 11 | $ nslookup -query=mx google.com Server: 192.168.152.2 Address: 192.168.152.2#53 Non-authoritative answer: google.com mail exchanger = 20 alt1.aspmx.l.google.com. google.com mail exchanger = 30 alt2.aspmx.l.google.com. google.com mail exchanger = 40 alt3.aspmx.l.google.com. google.com mail exchanger = 10 aspmx.l.google.com. google.com mail exchanger = 50 alt4.aspmx.l.google.com. Authoritative answers can be found from: | cs |
▼NS 레코드로 DNS 목록 확인
1 2 3 4 5 6 7 8 9 10 | $ nslookup -type=ns google.com Server: 192.168.152.2 Address: 192.168.152.2#53 Non-authoritative answer: google.com nameserver = ns1.google.com. google.com nameserver = ns3.google.com. google.com nameserver = ns2.google.com. google.com nameserver = ns4.google.com. Authoritative answers can be found from: | cs |
▼Reverse DNS lookup
1 2 3 4 5 6 7 | $ nslookup 209.132.183.181 Server: 192.168.152.2 Address: 192.168.152.2#53 Non-authoritative answer: 181.183.132.209.in-addr.arpa name = origin-www2.redhat.com. Authoritative answers can be found from: | cs |
IP 로 Domain Name 을 찾는 기능이다.
옵션으로 -type=ptr 를 준 것과 동일하며 찾는 주소가 IP 경우 nslookup 이 자동으로 -type=ptr 을 설정해서 검색함.
▼특정 DNS 사용하여 조회
1 2 3 4 5 6 7 8 | $ nslookup redhat.com 8.8.8.8 Server: 8.8.8.8 Address: 8.8.8.8#53 Non-authoritative answer: Name: redhat.com Address: 209.132.183.105 | cs |
기본 설정된 DNS 가 아닌 외부의 DNS 를 지정해서 조회할 수 있다.
지정할 DNS 는 조회할 도메인 이름 뒤에 써주면 된다. 다음은 구글의 공개 DNS 인 8.8.8.8 을 사용하여 조회하는 예제이다
▼Ref
- 10 Linux nslookup Command Examples for DNS Lookup - http://www.thegeekstuff.com/2012/07/nslookup-examples/
- https://www.lesstif.com/
반응형
'Program > Linux' 카테고리의 다른 글
[Linux] 리눅스 디렉토리 삭제 (하위디렉토리 포함) (1) | 2017.11.15 |
---|---|
[PHP] fopen 파일 입출력 사용법 ( c+, c, php ) (0) | 2017.10.20 |
[Linux] 리눅스 환경 네트워크 설정 정리 (0) | 2017.08.10 |
[PHP] 파일,폴더 찾기, 검색하기 (0) | 2017.07.25 |
[PHP] 한글깨짐 (0) | 2017.07.20 |