Thread: DHCP3 and BIND9 not seeming to run correctly
i have been trying learn how run linux box router home. have removed wrt54gl router dd-wrt network , made linux firewall box. box runs vpn server, dhcp3, bind9 , few other things. machine vm running on esxi , has 2 nics assigned it. eth0 internet , eth1 local safe network. noticing dhcp not updating bind9 zone files records. post config files. might wrong setup?
/etc/dhcpd3/dhcpd.conf
/etc/bind/named.conf.optionscode:key "rndc-key" { algorithm hmac-md5; secret "key here"; }; ddns-update-style interim; ddns-domainname "thehouse.lan"; ddns-rev-domainname "90.10.10.in-addr.arpa"; option domain-name "thehouse.lan"; option domain-name-servers 10.10.90.2; default-lease-time 600; max-lease-time 7200; authoritative; log-facility local7; zone thehouse.lan. { primary 127.0.0.1; key "rndc-key"; } # safe network subnet 10.10.90.0 netmask 255.255.255.0 { option domain-name-servers 10.10.90.2; option broadcast-address 10.10.90.255; option subnet-mask 255.255.255.0; option routers 10.10.90.2; range 10.10.90.50 10.10.90.60; zone 10.10.90.in-addr.arpa. { primary 10.10.90.2; key "rndc-key"; } }
/etc/bind/named.conf.localcode:options { directory "/var/cache/bind"; forwarders { 208.67.222.222; 208.67.220.220; }; recursion yes; version "refused"; allow-recursion { 127.0.0.1; 10.10.90.0/24; }; allow-query { 127.0.0.1; 10.10.90.0/24; }; auth-nxdomain no; # conform rfc1035 listen-on-v6 { any; }; };
/etc/bind/zones/rev.90.10.10.in-addr.arpacode:include "/etc/bind/rndc.key"; zone "thehouse.lan" { type master; file "/etc/bind/zones/thehouse.lan.db"; allow-update { key "rndc-key"; }; }; zone "90.10.10.in-addr.arpa" { type master; notify no; file "/etc/bind/zones/rev.90.10.10.in-addr.arpa"; allow-update { key "rndc-key"; }; };
/etc/bind/zones/thehouse.lan.dbcode:$origin . $ttl 86400 ; 1 day 90.10.10.in-addr.arpa in soa thehouse.lan. me.gmail.com. ( 200806302 28800 7200 2419200 86400 ) ns ns.thehouse.lan. $origin 90.10.10.in-addr.arpa. $ttl 86400 ; 1 day 2 ptr network.thehouse.lan. 12 ptr www1.thehouse.lan.
the /etc/resolv.conf on 1 of local machinescode:$origin . $ttl 86400 ; 1 day thehouse.lan in soa ns.thehouse.lan. me.gmail.com. ( 200806368 28800 7200 2419200 86400 ) ns ns.thehouse.lan. a 10.10.90.2 $origin thehouse.lan. $ttl 86400 ; 1 day ns a 10.10.90.2 www1 a 10.10.90.12
any great.code:domain thehouse.lan search thehouse.lan nameserver 10.10.90.2
anybody have suggestion one?
Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Networking & Wireless [all variants] DHCP3 and BIND9 not seeming to run correctly
Ubuntu
Comments
Post a Comment