NSLOOKUP and DIG

การใช้คำสั่ง nslookup

nongoffna@nongoffna:~$ nslookup
> don-jai.com
Server:        158.108.2.67
Address:    158.108.2.67#53

Non-authoritative answer:
Name:    don-jai.com
Address: 61.19.247.188

หมายเหตุ :
ทดสอบใช้คำสั่ง nslookup ซึ่งเป็นคำสั่งที่ใช้สำหรับสืบค้นข้อมูลสำหรับ DNS ของไอพีแอดเดรสหรือโดเมนเนมที่สนใจ โดยเลือก don-jai.com โดยผลของเว็บไซต์ที่เลือกทั้งสามนั้นจะแสดงเป็น Non-authoritative answer เนื่องจากเว็บไซต์ที่เลือกไม่ได้อยู่ใน server 158.108.2.67

การใช้ DIG

ทดสอบใช้ คำสั่ง dig เพื่อดูรายละเอียดของ DNS name servers  เกี่ยวกับข้อมูลของ host addresses, mail exchanges, name servers, และข้อมูลที่เกี่ยวข้อง

nongoffna@nongoffna:~$ dig google.com

; <<>> DiG 9.5.0-P2 <<>> google.com
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 60473
;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 4, ADDITIONAL: 4

;; QUESTION SECTION:
;google.com.            IN    A

;; ANSWER SECTION:
google.com.        225    IN    A    74.125.67.100
google.com.        225    IN    A    209.85.171.100
google.com.        225    IN    A    74.125.45.100

;; AUTHORITY SECTION:
google.com.        334047    IN    NS    ns1.google.com.
google.com.        334047    IN    NS    ns2.google.com.
google.com.        334047    IN    NS    ns3.google.com.
google.com.        334047    IN    NS    ns4.google.com.

;; ADDITIONAL SECTION:
ns1.google.com.        341074    IN    A    216.239.32.10
ns2.google.com.        341074    IN    A    216.239.34.10
ns3.google.com.        341074    IN    A    216.239.36.10
ns4.google.com.        341074    IN    A    216.239.38.10

;; Query time: 37 msec
;; SERVER: 158.108.2.67#53(158.108.2.67)
;; WHEN: Mon Feb  9 16:13:13 2009
;; MSG SIZE  rcvd: 212

ผลจากการ DIG

ส่วนแรก : เป็นการแสดงรายละเอียดของเวอร์ชั่นของ DiG


; <<>> DiG 9.2.3 <<>> www.isc.org

;; global options:  printcmd

ส่วนที่สอง : แสดงรายละเอียดทางเทคนิคเกี่ยวกับคำตอบที่ได้จาก DNS Server

;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 60473
;; flags: qr rd ra; QUERY: 1, ANSWER: 3, AUTHORITY: 4, ADDITIONAL: 4

ส่วนที่สาม :  เป็นส่วนของคำถาม โดย Dig จะแสดงสิ่งที่เราต้องการอีกครั้ง โดย default query จะเป็น Internet address (A)

;; QUESTION SECTION:
;google.com.            IN    A

ส่วนที่สี่ :  ส่วนแสดงคำตอบ จะได้ผลคือ google.com  อยู่ที่ 74.125.67.100, 209.85.171.100, 74.125.45.100

;; ANSWER SECTION:
google.com.        225    IN    A    74.125.67.100
google.com.        225    IN    A    209.85.171.100
google.com.        225    IN    A    74.125.45.100

ส่วนที่ห้า : ส่วน authority แสดงข้อมูลว่า DNS servers มี name server อะไรบ้าง โดย google.com ในการทดสอบครั้งนี้มี 4 name server

;; AUTHORITY SECTION:
google.com.        334047    IN    NS    ns1.google.com.
google.com.        334047    IN    NS    ns2.google.com.
google.com.        334047    IN    NS    ns3.google.com.
google.com.        334047    IN    NS    ns4.google.com.

ส่วนที่หก : แสดงIP addresses ของ name server

;; ADDITIONAL SECTION:
ns1.google.com.        341074    IN    A    216.239.32.10
ns2.google.com.        341074    IN    A    216.239.34.10
ns3.google.com.        341074    IN    A    216.239.36.10
ns4.google.com.        341074    IN    A    216.239.38.10

ส่วนที่เจ็ด : แสดงสถิติของการค้นหา

;; Query time: 37 msec
;; SERVER: 158.108.2.67#53(158.108.2.67)
;; WHEN: Mon Feb  9 16:13:13 2009
;; MSG SIZE  rcvd: 212

อ้างอิง

http://www.madboa.com/geek/dig/

Leave a comment