특정 MAC List 에만 IP 를 할당하게 DHCP 서버 설정이 가능한가요?
글쓴이: glayneon / 작성시간: 금, 2010/02/12 - 2:54오후
제목 대로 입니다.
특정 MAC List 를 파일로든 DB 로든 관리하고,
해당 MAC List 인지 DHCP 서버에서 확인 후 IP 를 할당할 수 있게 설정이 가능한지 궁금합니다.
이러한 기능을 지원하는 DHCP 서버가 있는지,
없다면, 어떤 방법으로 가능할까요?
아시는 분 답변 부탁드립니다.
Forums:
/etc/dhcpd.conf
ddns-update-style none;
ignore client-updates;
subnet 192.168.0.0 netmask 255.255.255.0 {
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option domain-name "example.com";
option domain-name-servers 192.168.0.2;
range 192.168.0.100 192.168.0.200;
deny unknown-clients;
host host1 {
hardware ethernet 11:22:33:AA:BB:CC;
fixed-address 192.168.0.150;
}
host host2 {hardware ethernet 11:22:33:AA:BB:DD; }
host host3 {hardware ethernet 11:22:33:AA:BB:EE; }
}
===== ===== ===== ===== =====
그럼 이만 총총...[竹]
http://elflord.egloos.com
===== ===== ===== ===== =====
그럼 이만 총총...[竹]
http://elflord.egloos.com
감사합니다
많은 도움이 되었네요^^
댓글 달기