View Single Post
  #4   (View Single Post)  
Old 1st July 2010
vdubjunkie vdubjunkie is offline
Port Guard
 
Join Date: Feb 2009
Posts: 17
Default previous version of dhcpd.conf

I'm sorry I may not have been clear. The 172.16 IPs used in the WIRED section were put that way in order to make the system work. This was how I proved that the WIRELESS IP being handed out was getting it's values from that section. Here is the previous version which I have conveniently saved as always..

Code:
# cat dhcpd.conf.orig                                                          

authoritative;


shared-network WIRED {
        default-lease-time 86400;
        #max-lease-time 172800;
        option  domain-name "freak.dub";
        option nis-domain "freak.dub";
        option time-offset -6; #CST
        option  domain-name-servers 10.100.0.226, x.x.x.2, x.x.x.3, x.x.x.20, x.x.x.25, x.x.x.30;
        option broadcast-address 10.100.0.255;
        option routers 10.100.0.226;
        option ntp-servers 10.100.0.226;
        subnet 10.100.0.0 netmask 255.255.255.0 {
                range 10.100.0.25 10.100.0.35;
        }
        host vdubmac {
                #next-server ns1.freak.dub;
                hardware ethernet 00:25:00:4d:24:df;
                fixed-address 10.100.0.222;
        }
}

shared-network WIRELESS {
        option domain-name "wifi.freak.dub";
        option domain-name-servers 172.16.0.226, x.x.x.2, x.x.x.3, x.x.x.20, x.x.x.25, x.x.x.30;
        subnet 172.16.0.0 netmask 255.255.255.0 {
                option routers 172.16.0.226;
                option domain-name-servers 172.16.0.226;
                option ntp-servers 172.16.0.226;
                range 172.16.0.25 172.16.0.35;
        }
}
__________________
anything done in the GUI is done more efficiently in cli
Reply With Quote