VyOS 相当于 dhcpd 的“拒绝未知客户端”

VyOS 相当于 dhcpd 的“拒绝未知客户端”

我正在尝试将 VyOS 用作路由器,并将我的 dhcp 服务器功能移入其中。在我当前的设置中,我有一个仅允许静态映射客户端的子网。我可以轻松地让静态映射与 VyOS 配合使用,但我不知道如何正确实现子网的“拒绝未知客户端”选项,因为我已使用 dhcpd 设置了它

答案1

我最终弄清楚了这一点。

VyOS 可以将 dhcpd.conf 选项作为子网定义的一部分,具体命令如下:

set service dhcp-server shared-network-name ${networkname} subnet ${subnetip/cidr} subnet-parameters "${exact dhcpd.conf string}"

就我的具体情况而言,情况如下:

set service dhcp-server shared-network-name private-subnet subnet 192.168.4.0/24 subnet-parameters "deny unknown-clients"

相关内容