我可以通过 DHCP 请求特定的 IP 地址,而不拒绝 DHCP 服务器提供的其他地址吗?

我可以通过 DHCP 请求特定的 IP 地址,而不拒绝 DHCP 服务器提供的其他地址吗?

在 ubuntu 服务器 16.04 上使用 isc-dhcp-client,有一个选项听起来像应该做我想要的事情:

send dhcp-requested-address 10.23.33.254;

当我的 dhclient.conf 文件中存在此选项时,我的客户端将完全按照我的要求执行操作:始终从我的私有网络上的 DHCP 服务器获取请求地址的租约,其中 DHCP 范围为 10.23.33.0/24。但是,如果我将计算机连接到请求的地址不在服务器的 DHCP 地址范围内的网络,则服务器会提供不同的地址,并且 isc-dhcp-client 只会发送 NAK,因为它没有获得请求的地址。

本质上,我想要的是

客户端:“你好,我可以有 10.23.33.254 吗?”
服务器:“不,你不能。这里,请改用 192.168.1.23”
客户端:“好的,谢谢”

相反,发生的事情是

客户端:“你好,我可以有 10.23.33.254 吗?”
服务器:“不,你不能。这里,请改用 192.168.1.23”
客户端:“这不是我想要的。我可以有 10.23.33.254 吗?”
服务器:“不,你不能......”(永远重复此循环)

有人知道我想要的是否可以实现,除了编写我自己的 DHCP 客户端吗?

答案1

使用租赁区块相反。从反复试验来看,dhclient.conf 文件中会忽略此配置块,但会将其用于 leases 文件中(/var/lib/dhcp/dhclient.leases除非使用 -lf 覆盖,例如从 NetworkManager 运行时,否则默认为该配置块)

只需构建一个最小租约文件,其中包含过期的续订和重新绑定(以避免多次重试),但仍有未来的到期日期(不会立即忘记它并立即尝试 DISCOVER 而不是 REQUEST,并且如果根本没有 DHCP 服务器应答则使用此 IP)。保持此文件不变,并在每次运行 dhclient 之前复制它。

这是来自我的 stretch-amd64 容器的一个极简文件,只要 DHCP 服务器(此处为 dnsmasq)没有为该客户端设置其他租约,它就可以正常工作。只需在运行 dhclient 之前将其复制到租约文件上即可。

lease {
  interface "eth0";
  fixed-address 10.0.3.222;
  renew 0 2000/1/1 00:00:01;
  rebind 0 2000/01/01 00:00:01;
  expire 0 2038/1/1 00:00:01;
}

尝试在 LAN 中设置一个 DHCP 服务器,服务地址为 10.0.3.0/24,并且该服务器还不知道该客户端:

# dhclient -v eth0
Internet Systems Consortium DHCP Client 4.3.5
Copyright 2004-2016 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/

Listening on LPF/eth0/xx:xx:xx:xx:xx:xx
Sending on   LPF/eth0/xx:xx:xx:xx:xx:xx
Sending on   Socket/fallback
DHCPREQUEST of 10.0.3.222 on eth0 to 255.255.255.255 port 67
DHCPACK of 10.0.3.222 from 10.0.3.1
bound to 10.0.3.222 -- renewal in 1486 seconds.

新租约文件/var/lib/dhcp/dhclient.leases

lease {
  interface "eth0";
  fixed-address 10.0.3.222;
  renew 6 2000/01/01 00:00:01;
  rebind 6 2000/01/01 00:00:01;
  expire never;
}
lease {
  interface "eth0";
  fixed-address 10.0.3.222;
  option subnet-mask 255.255.255.0;
  option routers 10.0.3.1;
  option dhcp-lease-time 3600;
  option dhcp-message-type 5;
  option domain-name-servers 10.0.3.1;
  option dhcp-server-identifier 10.0.3.1;
  option dhcp-renewal-time 1800;
  option broadcast-address 10.0.3.255;
  option dhcp-rebinding-time 3150;
  option host-name "stretch-amd64";
  renew 0 2017/10/29 19:57:41;
  rebind 0 2017/10/29 20:24:34;
  expire 0 2017/10/29 20:32:04;
}

在 IP 范围之外尝试:

Listening on LPF/eth0/xx:xx:xx:xx:xx:xx
Sending on   LPF/eth0/xx:xx:xx:xx:xx:xx
Sending on   Socket/fallback
DHCPREQUEST of 10.0.4.222 on eth0 to 255.255.255.255 port 67
DHCPREQUEST of 10.0.4.222 on eth0 to 255.255.255.255 port 67
DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 4
DHCPREQUEST of 10.0.3.249 on eth0 to 255.255.255.255 port 67
DHCPOFFER of 10.0.3.249 from 10.0.3.1
DHCPACK of 10.0.3.249 from 10.0.3.1
bound to 10.0.3.249 -- renewal in 1411 seconds.

这个 DHCP 服务器似乎没有发送 NAK,但无论如何,我相信您明白了,它是有效的。

如果没有 DHCP 服务器,一段时间后,dhclient 将配置 IP,因为租约尚未到期并进行守护进程。如果没有其他选项(广播……),这将是 /32,因为信息不可用。如果需要,请在“模板”租约文件中添加其他值。这里将是:

option subnet-mask 255.255.255.0;
option routers 10.0.3.1;
option domain-name-servers 10.0.3.1;
option broadcast-address 10.0.3.255;

在这种情况下运行 dhclient 时:

[...]

DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 12
No DHCPOFFERS received.
Trying recorded lease 10.0.3.222
PING 10.0.3.1 (10.0.3.1) 56(84) bytes of data.

--- 10.0.3.1 ping statistics ---
1 packets transmitted, 1 received, 0% packet loss, time 0ms
rtt min/avg/max/mdev = 0.240/0.240/0.240/0.000 ms
bound: immediate renewal.
DHCPREQUEST of 10.0.3.222 on eth0 to 255.255.255.255 port 67
root@stretch-amd64:~# 

相关内容