dhcp3-server 및 이상한 DNS/NTP 서버

dhcp3-server 및 이상한 DNS/NTP 서버

사용하는데 문제가 있습니다 dhcp3-server 3.1.1-6+lenny4. 내 DHCP 서버는 해당 IP가 구성에 없음에도 불구하고 내 DHCP 서버 IPs와 "이상한" 주소 DNSNTP보내고 있습니다 . 패킷 DHCP ACK에서 "이상한" 주소를 볼 수 있습니다. 예를 들면 다음과 같습니다.ACK

49.57.50.46 or 49.54.56.46 etc.

DHCP 서버는 다음과 같이 구성됩니다.

deny bootp;
#
# Sample configuration file for ISC dhcpd for Debian
#
# $Id: dhcpd.conf,v 1.1.1.1 2002/05/21 00:07:44 peloy Exp $
#

# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
#ddns-update-style none;

# option definitions common to all supported networks...
option domain-name "Test";

default-lease-time 600;
max-lease-time 7200;

log-facility local7;
include "/etc/dhcp3/subnet.list.conf";

그리고/etc/dhcp3/subnet.list.conf:

authoritative;

option f6option6 code 6 = string;
option f6option42 code 42 = string;
option f6option114 code 114 = string;


shared-network HARPER {


subnet 192.168.13.0 netmask 255.255.255.0 {
range 192.168.13.20 192.168.13.250;
default-lease-time 86400;
max-lease-time 86400;
option broadcast-address 192.168.13.255;
option subnet-mask 255.255.255.0;
option f6option6 "192.168.0.10,192.168.0.18,192.168.13.3";
option f6option42 "192.168.13.3";
option f6option114 "http://192.168.13.3/config";
option tftp-server-name "http://192.168.13.3/config";

host gxp-5f6c52 {
hardware ethernet 00:0B:82:5F:6C:52;
fixed-address 192.168.13.20;
option routers 192.168.13.1;
}

host gxp-5f6836 {
hardware ethernet 00:0B:82:5F:68:36;
fixed-address 192.168.13.21;
option routers 192.168.13.1;
}

host gxp-63dfb1 {
hardware ethernet 00:0B:82:63:DF:B1;
fixed-address 192.168.13.22;
option routers 192.168.13.1;
}
... 

subnet.list.conf 파일에는 고정된 호스트 구성이 포함되어 있는데 여기서는 몇 가지로 제한했습니다.

이 링크에는 DHCP 통신에 대한 상한이 있습니다. DHCP_CAP

서버는 VMware 호스트의 Debian 5에서 실행됩니다.

답변1

@ott에게 감사드립니다. 솔루션이 변경되고 있습니다.

f6option6 code 6 = string;

도착하다:

option f6option6 code 6 = array of ip-address;

관련 정보