由于网络中的设备丢失,一个新的DNSMASQ配置已经被引入到另一个服务器上。服务器恰好是一个Raspberry Pi 4B。许多设备能够获得IP地址,但有些设备(特别是Windows 10设备)正在对DHCP请求进行超时。这是新的;在DHCP之前没有已知的问题,而且我没有任何理由认为这种配置会有偏差。配置如下:
# Use interface wlan0
#interface=eth0
#interface=lo
#interface=wlan0
listen-address=10.158.54.3
listen-address=127.0.0.1
bind-interfaces
# Don't forward unqualified names (hpmicro1)...
domain-needed
# Don't forward some non-routed addresses
bogus-priv
# don't forward requests for the intranet subdomain
local=/lovelady.com/
# Assign addresses between 10.158.54.65 and 10.158.54.200 with a 24 hour lease time
dhcp-range=10.158.54.101,10.158.54.200,12h
# Forward DNS requests to the local DNS and then Google DNS
server=10.158.54.3
server=8.8.8.8
server=8.8.4.4
dhcp-option=option:router,10.158.54.1 # Default gateway
dhcp-option=6,10.158.54.3 # DNS (that's me)
# append domain to all hosts
domain=lovelady.com
expand-hosts # Add domain also to any simple names in /etc/hosts
dhcp-host=b4:2e:99:a2:58:77,Velmicro
dhcp-host=ac:1f:6b:17:f6:25,NAS-1,10.158.54.10
dhcp-host=ac:1f:6b:9a:cb:6c,PLEX-NAS1
dhcp-host=b8:27:eb:ba:a0:7b,pi-in-the-sky
dhcp-host=00:1c:d2:f1:94:3d,inet-radio
dhcp-host=38:f7:3d:b1:12:3f,Amazon-BSMT
dhcp-host=fc:a1:83:43:30:76,Amazon-LivRm
dhcp-host=20:df:b9:57:9d:46,Google-Home
dhcp-host=b8:27:eb:9b:e1:91,octopi-w,10.158.54.20
dhcp-host=50:87:b8:00:8e:46,luvtablo希望你能提供任何帮助..。
发布于 2020-04-24 03:39:32
原来关于超时的信息是有误导性的。显然,由于Windows 10的最新版本,系统有时会尝试重新设置回送接口(即.a)。localhost,或127.0.0.1),这就是错误的意思。在windoze最后在回送接口上超时后,它为其他适用的接口获得了一个IP地址。Windows不应该尝试重新设置本地主机接口,而且通常不会。但是很明显,它有情绪。
https://serverfault.com/questions/1013480
复制相似问题