DNS - nslookup command line

Card Puncher Data Processing

About

Nslookup is a DNS client program to query (ie lookup) domain name servers and get back DNS record information

nslookup is not performing a lookup on the content of the host file as ping does.

Mode

Nslookup has two modes:

interactive (online)

nslookup -DnsServerHostName

non-interactive

nslookup myHostName

The local DNS file is /etc/resolv.conf

How to

Search an IP from a Domain Name

The syntax to search an IP from a Domain Name is:

nslookup name.domain_name dns_server

where:

Example when:

  • The domain name looked is gerardnico.com
  • The DNS server is a cloudflare one. adel.ns.cloudflare.com
  • You got as IPv4: 104.18.42.134

Forward DNS Query:

nslookup datacadamia.com adel.ns.cloudflare.com

Result:

Server:  adel.ns.cloudflare.com
Address:  173.245.58.55

Name:    datacadamia.com
Addresses:  2606:4700:30::6812:2b86
          2606:4700:30::6812:2a86
          104.18.42.134
          104.18.43.134

Reverse lookup (from IP to Name)

For a reverse lookup, just enter the IP.

Example:

nslookup 192.168.135.15
Server:  amplifi.lan
Address:  192.167.133.1

Name:    webserver.lan
Address:  192.168.133.15

Get all DNS properties

nslookup -all 10.50.35.120
Default server: 10.50.34.245
Address: 10.50.34.245#53
Default server: 10.50.34.244
Address: 10.50.34.244#53

Set options:
  novc                  nodebug         nod2
  search                recurse
  timeout = 0           retry = 3       port = 53       ndots = 1
  querytype = A         class = IN
  srchlist = reddog.microsoft.com/ad.whatever
120.35.40.09.in-addr.arpa       name = hostname.ad.whatever

Get records by type

Example for the NS record (ie What is a DNS Server (nameserver) ?)

nslookup -type=NS google.com
google.com      nameserver = ns2.google.com
google.com      nameserver = ns3.google.com
google.com      nameserver = ns4.google.com
google.com      nameserver = ns1.google.com

Help

> help
Commands:   (identifiers are shown in uppercase, [] means optional)
NAME            - print info about the host/domain NAME using default server
NAME1 NAME2     - as above, but use NAME2 as server
help or ?       - print info on common commands
set OPTION      - set an option
    all                 - print options, current server and host
    [no]debug           - print debugging information
    [no]d2              - print exhaustive debugging information
    [no]defname         - append domain name to each query
    [no]recurse         - ask for recursive answer to query
    [no]search          - use domain search list
    [no]vc              - always use a virtual circuit
    domain=NAME         - set default domain name to NAME
    srchlist=N1[/N2/.../N6] - set domain to N1 and search list to N1,N2, etc.
    root=NAME           - set root server to NAME
    retry=X             - set number of retries to X
    timeout=X           - set initial time-out interval to X seconds
    type=X              - set query type (ex. A,AAAA,A+AAAA,ANY,CNAME,MX,NS,PTR,SOA,SRV)
    querytype=X         - same as type
    class=X             - set query class (ex. IN (Internet), ANY)
    [no]msxfr           - use MS fast zone transfer
    ixfrver=X           - current version to use in IXFR transfer request
server NAME     - set default server to NAME, using current default server
lserver NAME    - set default server to NAME, using initial server
root            - set current default server to the root
ls [opt] DOMAIN [> FILE] - list addresses in DOMAIN (optional: output to FILE)
    -a          -  list canonical names and aliases
    -d          -  list all records
    -t TYPE     -  list records of the given RFC record type (ex. A,CNAME,MX,NS,PTR etc.)
view FILE           - sort an 'ls' output file and view it with pg
exit            - exit the program

where:

Documentation / Reference





Discover More
Card Puncher Data Processing
DNS - Application / Library / Software

See
Card Puncher Data Processing
DNS - MX record (Mail Exchanger Record)

The MX DNS is a DNS record that is defining a email server. You can only use one mail exchange server at a time. The name of the MX record is the last part of an email address and design the host where...
Card Puncher Data Processing
DNS - Record

A DNS record is a row in a DNS database. A record is a text line. name is the name or IP address for a ptr record ttl is the the time to live in the cache class is the network class being used....
Card Puncher Data Processing
DNS - rDNS - Reverse DNS (lookup|resolution) - from IP to name

A reverse dns lookup is a dns lookup that get the DNS name (known also as the reverse DNS name) from the IP address forward dns lookup The reverse DNS database of the Internet is rooted in the .arpa...
Card Puncher Data Processing
DNS clients - A list of client that can query the DNS database

A DNS client is an application that calls the resolver to query name database in order to perform forward lookup (IP from name) or reverse lookup(Name from IP). This page lists this application
Dkim Entry
Email - DomainKeys Identified Mail (DKIM) - Mail Signatures

DomainKeys Identified Mail (DKIM) is a method to sign digitally outgoing email, thereby allowing a person, role, or organization to claim some responsibility for the message. The signature will associate...
Spf Dns Zone
Email - Sender Policy Framework (SPF)

SPF is a dns record that defines which server(s) may send an email. It describe the set of hosts which are designated outbound mailers for the domain. SPF is part of the mail authentication scheme with...
Dns Architecture
Network - Domain Name System ( DNS )

The Domain Name System (DNS) is a database of name. It's naming system (service). It hold naming information for some kind of object (not only but mainly host) DNS can be seen as the phone book of the...
Card Puncher Data Processing
Network - Software and Troubleshooting Tools

List of software related to networking. TCP/IP Troubleshooting Tools Tools Description packet sniffer See Arp View the ARP (Address...
Card Puncher Data Processing
The NS record determines your DNS server

An article about the NS record (nameserver), how they are managed and how you can query them



Share this page:
Follow us:
Task Runner