DNS prob - dig process


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting DNS prob - dig process
# 1  
Old 03-02-2006
DNS prob - dig process

Dear MoDs,

I have several doubts regarding query domain using DIG process..

below is my dig process:-

*********************************************
dns-dual# /usr/bin/dig @dns-dual.surfweb.net.my my soa

; <<>> DiG 9.3.0 <<>> @dns-dual.surfweb.net.my my soa
;; global options: printcmd
;; connection timed out; no servers could be reached

*********************************************

after that, i dig using dns-dual IPv6 like below:-

*********************************************

dns-dual# /usr/bin/dig @2001:328:1000:1::13 my soa

; <<>> DiG 9.3.0 <<>> @2001:328:1000:1::13 my soa
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 28188
;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 0

;; QUESTION SECTION:
;my. IN SOA

;; ANSWER SECTION:
my. 60 IN SOA dns-test.surfweb.net.my. hostmaster.mynic.net.my. 605300001 120 120 604800 86400

;; AUTHORITY SECTION:
my. 60 IN NS dns-test.surfweb.net.my.
my. 60 IN NS dns2-test.surfweb.net.my.

;; Query time: 21 msec
;; SERVER: 2001:328:1000:1::13#53(2001:328:1000:1::13)
;; WHEN: Thu Mar 2 17:44:45 2006
;; MSG SIZE rcvd: 124

*****************************************************

The problems are:

i) Why i cant reach result using domain name, rather IPv6 add?
ii) Using IPv6 address, the SOA is not same with SOA "zone file". Is there any changes that I should alert with?

Regards,
Unknown
unknown2205
# 2  
Old 03-03-2006
Quote:
i) Why i cant reach result using domain name, rather IPv6 add?
It told you why - connection timed out; no servers could be reached. Check out this How to on dig.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl dig script

Experts - I was hoping someone could help me out with the logic on this perl script. I'm trying to run some dig commands and parse in such a way as to group them together. Here's what I have so far. #!/usr/bin/perl system(clear); my @host = qw/yahoo.com google.com /; foreach... (2 Replies)
Discussion started by: timj123
2 Replies

2. Shell Programming and Scripting

Dig match

Hi, I am testing some code to match a grep to see if one of the dns server exists but it does not seem to match: ERROR: ======= CRITICAL: google.com DNS : ns3.google.com NOT found CODE: ===== if ; then echo "OK: google.com DNS : ns3.google.com exists" else echo... (5 Replies)
Discussion started by: dmccabe
5 Replies

3. What is on Your Mind?

DNS Lookup Tool Using DIG

Hi. Having a bit of quick fun putting some networking tools online. Here is a DNS Lookup tool. It's basically the DIG command line tool wrapped in forum formatting. If you want more features, please post here. I'm doing to make a few more network tools like this and move on to other... (1 Reply)
Discussion started by: Neo
1 Replies

4. Solaris

Identify process sending ldap requests to old DNS server

Hi, I have a Solaris 10 system, which appears to be sending out LDAP queries to a server that is due to be decomissioned. Is there a way to identify which process is sending out these queries? The problem is that the local port constantly changes, and the connections do not stay open long... (3 Replies)
Discussion started by: badoshi
3 Replies

5. IP Networking

DNS: Dig returns different responses...

Hey everyone, Okay, so I've been having some fun with the dig command, and wanted to dig my old school. Two questions came up from this. So I: dig @8.8.8.8 +recurse njcu.edu ANY and the result is about 8 records, including the SOA record. One of them is this weird TXT record, and the other is... (1 Reply)
Discussion started by: Lost in Cyberia
1 Replies

6. UNIX for Advanced & Expert Users

DIG uses localhost

Hi, I have these entries in the /etc/esolv.conf: ------------ domain xxxxxx search yyyyyy nameserver 127.0.0.1 nameserver aaaaaaaaaaaaaaaa nameserver bbbbbbbbbbbbbbbb ------------- When I use 'dig' or 'nslookup' command, like 'dig yahoo.com' it uses the localhost as the server. I... (2 Replies)
Discussion started by: chaandana
2 Replies

7. IP Networking

The dig command

Can I use two different DNS servers in the one command in the form of primary and secondary. Take this for example: dig @<primaryAddress> @<secondaryAddress> MX domain.tld So if primary address is down, it will use the secondary address as a backup. It seems to work when testing, but thought... (1 Reply)
Discussion started by: neil_is_ere
1 Replies

8. UNIX for Dummies Questions & Answers

linux dig command

When I use the linux dig command such as #dig yahoo.com it resolves but when I use the same command as root it gives me error "Segmentation Fault" Please advise I am completly baffled. (1 Reply)
Discussion started by: Tirmazi
1 Replies

9. Shell Programming and Scripting

New to UNIX - what script to dig into to

First I would like to thank you for your time in running a great Forum! Background - Windows/ASP/VB COM/SQL Server programmer/Webmaster. Desire - To build similar skillset on UNIX. I am looking at learning Perl or Python (maybe Jython due to connection to Java). I have a brief background... (3 Replies)
Discussion started by: nimrod
3 Replies

10. UNIX for Dummies Questions & Answers

dig

what is dig? Is it just a advanced type of nslookup? how to use it? //nicke:confused: (1 Reply)
Discussion started by: nicke30
1 Replies
Login or Register to Ask a Question