Need gurus' help...
I've installed a DHCP server for my office network. Each MAC addresses have a "fixed" IP address ....Here's my sample dhcpd.conf file:
default-lease-time 86400;
max-lease-time 604800;
get-lease-hostnames true;
option subnet-mask 255.255.255.0;
option domain-name "slach2-100.party";
option domain-name-servers 192.168.12.1;
option lpr-servers 192.168.12.1;
option interface-mtu 1500;
subnet 192.168.12.0 netmask 255.255.255.0
# default gateway
option routers 192.168.12.1;
option broadcast-adress 192.168.12.255;
host
hardware ethernet 00:40:95:49:0b:a5;
fixed-adress "192.168.12.57";
host
hardware ethernet 00:50:04:45:e1:65;
fixed-adress "192.168.12.67";
Etc.......................................
With this configuration, any new PC (windozs) with dhcp query could not be connected to the network.
My question : Is it possible to block any new PC (mac address not declared in the dhcp.conf file) if someone enter himself a static IP address, DNS option, etc... to connect to the network...???
Any help would be great!
THX!
Last edited by fxlee; 01-25-2002 at 07:35 AM.
|