authorized MAC addresses

Jeff Chambers jchambers at groundzero.net
Tue Jun 6 18:41:25 UTC 2006


I do this exact thing.  here is a sample on how to achieve this. I  
have a static assignment for the xbox, and three different pools of  
addresses and separated in wireless hosts where I use the subclasses,  
unknown MAC addresses and known MAC addresses.

This helps me when troubleshooting and in many other ways.
Jeff

here is a cropped version of my config file
###lease time for hosts known hosts is seven days
default-lease-time 604800;
max-lease-time 604800;
min-lease-time 604800;

class "wireless" {
         match hardware;
}

subclass "wireless" 1:00:02:8a:b6:48:8c;        #W_192
subclass "wireless" 1:00:04:23:82:6f:16;        #W_241

subnet 209.73.73.0 netmask 255.255.255.0 {
         option routers 209.73.73.1;
         option domain-name-servers 205.147.0.100;
         option domain-name "groundzero.net";

         pool {
                 #hosts in the ethernet class get an address from  
this pool.
                 range 209.73.73.80 209.73.73.199;
                                 deny members of "wireless";
                                 deny unknown clients;
         }

         pool {
                 #hosts in the wireless class get an address from  
this pool.
                 range 209.73.73.200 209.73.73.219;
                                 allow members of "wireless";
                                 deny unknown clients;
                                 #lease time is 4 hours
                                 default-lease-time 14400;
                                 max-lease-time 14400;
                                 min-lease-time 14400;
         }

         pool {
                 #lease time for unknown hosts = 8 hours
                 range 209.73.73.220 209.73.73.254;
                 allow unknown clients;
                 #lease time is 8 hours
                 default-lease-time 28800;
                                 max-lease-time 28800;
                                 min-lease-time 28800;
         }
}
host xbox {
                         fixed-address 209.73.73.28;
                         hardware ethernet 00:0d:3a:0e:99:e4;
}
group {
host 276        { hardware ethernet 00:30:65:41:78:20;}
host 334		{ hardware ethernet 00:14:51:2c:c7:22;}
host W_192           { hardware ethernet 00:02:8a:b6:48:8c;}
host W_241           { hardware ethernet 00:04:23:82:6f:16;}
}
>


More information about the dhcp-users mailing list