Windows Phone 不接受 DCHP 报价
Windows Phone not accepting DCHP offer
我的 Windows Phone (Lumia 640) 有一个奇怪的问题。
我使用 Linux 服务器 运行 dhcpd 作为我的 DHCP 服务器已经有一段时间了,我家里的每台设备都乐于从中获取 IP 地址(通常通过 MAC 地址分配,以便我知道什么是什么 IP)。然而,我的 Lumia 640 只是断断续续地连接到网络,我在房子里走来走去试图弄清楚发生了什么,无奈之下我打开了我的 BT HomeHub 的 DHCP 服务器,突然 phone 会连接(在 HomeHub 提供的 IP 上)。
我在 DHCPD 服务器上的配置没什么令人兴奋的,分配的 IP 地址在子网之外,因此它们不会与任何动态分配的地址冲突。正如我所说,我对多个设备(android、iOS、MacOS、Linux、Windows、SONOS)的配置没有任何问题,只是 Windows Phone 有任何问题。
有什么想法吗?配置如下...
# defaults
ddns-update-style none;
option domain-name-servers 208.67.220.220, 208.67.222.222;
option subnet-mask 255.255.255.0;
option routers 192.168.44.1;
option broadcast-address 192.168.44.255;
option ntp-servers 192.168.44.254;
default-lease-time 600;
max-lease-time 7200;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.
#
#subnet 10.152.187.0 netmask 255.255.255.0 {
#}
# This is a very basic subnet declaration.
subnet 192.168.44.0 netmask 255.255.255.0 {
authoritative;
range 192.168.44.50 192.168.44.79;
}
# Lumia 640
host russphone {
hardware ethernet **MAC address here**;
fixed-address 192.168.44.3;
}
我发现尽管服务器已关闭,但我的路由器(BT HomeHub 5)仍在发送 DHCP 提议。重置它解决了问题,不确定为什么服务器仍然 运行,或者为什么某些设备一直受到影响(我的 phone 和我的网络打印机)而其他设备完全不受影响。
我的 Windows Phone (Lumia 640) 有一个奇怪的问题。
我使用 Linux 服务器 运行 dhcpd 作为我的 DHCP 服务器已经有一段时间了,我家里的每台设备都乐于从中获取 IP 地址(通常通过 MAC 地址分配,以便我知道什么是什么 IP)。然而,我的 Lumia 640 只是断断续续地连接到网络,我在房子里走来走去试图弄清楚发生了什么,无奈之下我打开了我的 BT HomeHub 的 DHCP 服务器,突然 phone 会连接(在 HomeHub 提供的 IP 上)。
我在 DHCPD 服务器上的配置没什么令人兴奋的,分配的 IP 地址在子网之外,因此它们不会与任何动态分配的地址冲突。正如我所说,我对多个设备(android、iOS、MacOS、Linux、Windows、SONOS)的配置没有任何问题,只是 Windows Phone 有任何问题。
有什么想法吗?配置如下...
# defaults
ddns-update-style none;
option domain-name-servers 208.67.220.220, 208.67.222.222;
option subnet-mask 255.255.255.0;
option routers 192.168.44.1;
option broadcast-address 192.168.44.255;
option ntp-servers 192.168.44.254;
default-lease-time 600;
max-lease-time 7200;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# No service will be given on this subnet, but declaring it helps the
# DHCP server to understand the network topology.
#
#subnet 10.152.187.0 netmask 255.255.255.0 {
#}
# This is a very basic subnet declaration.
subnet 192.168.44.0 netmask 255.255.255.0 {
authoritative;
range 192.168.44.50 192.168.44.79;
}
# Lumia 640
host russphone {
hardware ethernet **MAC address here**;
fixed-address 192.168.44.3;
}
我发现尽管服务器已关闭,但我的路由器(BT HomeHub 5)仍在发送 DHCP 提议。重置它解决了问题,不确定为什么服务器仍然 运行,或者为什么某些设备一直受到影响(我的 phone 和我的网络打印机)而其他设备完全不受影响。