DHCP 选项不起作用

DHCP 选项不起作用

我正在使用带有 DHCP 服务器的 Debian。我希望我的 SIP 电话获得另一个 VLAN 和更多选项,因此我设置了以下配置:

option space OptiIpPhone code width 1 length width 1 hash size 3;
option OptiIpPhone.code1forvendor code 1 = text;
option OptiIpPhone.code2forvlan code 2 = text;
option OptiIpPhone.code3fordls code 3 = text;

subnet 172.16.12.0 netmask 255.255.255.0 {
  range 172.16.12.20 172.16.12.254;
  default-lease-time 3600;
  max-lease-time 7200;
  option routers 172.16.12.1;
  option domain-name-servers 172.16.12.1;
  vendor-option-space OptiIpPhone;
  option OptiIpPhone.code1forvendor "Siemens";
  option OptiIpPhone.code2forvlan "5";
  option OptiIpPhone.code3fordls "sdlp://172.16.5.50:18443";


  option ntp-servers 172.16.12.1;



  use-host-decl-names on;
  authoritative;
  ping-check true;

}

如果我使用ClassandSubclass方法,它工作得很好,但在子网中它不起作用。

相关内容