>>> On 10/29/2015 at 01:36 PM, Michael Weiner <[email protected]> 
>>> wrote: 
> Agreed, which I do have that. But, 172. is my local network for my laptop.
> Do I need another zone for local IP's?

Yes.  In /etc/named.conf, you'll need this:
zone "1.16.172.in-addr.arpa" IN {
        type master;
        file "caching-example/named.mkplan";
        allow-update { none; };
};


Replace "caching-example/named.mkplan" with where you have your files and 
whatever name you want to give it.  And in that file you'll have the reverse 
lookup entries for your local network.  Something similar to:
$TTL    86400
@       IN      SOA     localhost. root.localhost.  (
                                      2010111800 ; Serial
                                      28800      ; Refresh
                                      14400      ; Retry
                                      3600000    ; Expire
                                      86400 )    ; Minimum
        IN      NS      localhost.
;
10      IN      PTR     my10.local.lan.net.
20      IN      PTR     my20.local.lan.net.
30      IN      PTR     my30.local.lan.net.

Using whatever the real names are that you have in the forward lookup table.


Mark Post

----------------------------------------------------------------------
For LINUX-390 subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO LINUX-390 or visit
http://www.marist.edu/htbin/wlvindex?LINUX-390
----------------------------------------------------------------------
For more information on Linux on System z, visit
http://wiki.linuxvm.org/

Reply via email to