Document toolboxDocument toolbox

show config

The show config command displays the DNS or DHCP configuration files, named.conf and dhcpd.conf respectively.

Syntax

show config {dns | dhcp}
show config displays the contents of named.conf and dhcp.conf files. You can page through the output 10 lines at a time.

Argument Description
dnsDisplays the dns.conf file.
dhcpDisplays the dhcp.conf file.

Example

Infoblox > show config dns
   include "/infoblox/var/named_conf";
   options {

          zone-statistics yes;
          directory "/infoblox/var/named_conf"; version "";
          recursion no;
          listen-on {127.0.0.1; 10.0.0.0;}
          query-source address 10.0.0.0;
   Enter <return> to continue with More lines or enter q<return> to go back to the command line.

Infoblox > show config dhcp
   local-address 10.0.0.0.;
   server-identifier 10.0.0.0;
   ddns-update-style interim;
   authoritative;

   option domain-name "corp100.com";
   mini-lease-time 43200;

   max-lease-time 43200; ping-check false;
   log-facility daemon;
   Enter <return> to continue with More lines or enter q<return> to go back to the command line.