常见的路由器默认 DHCP IP 地址范围有哪些?

常见的路由器默认 DHCP IP 地址范围有哪些?

我想知道常见路由器的默认 DHCP 范围是多少。有人知道吗?

答案1

它们只能在

http://tools.ietf.org/html/rfc1918

     10.0.0.0        -   10.255.255.255  (10/8 prefix)
     172.16.0.0      -   172.31.255.255  (172.16/12 prefix)
     192.168.0.0     -   192.168.255.255 (192.168/16 prefix)

这不仅仅是默认值,这也是您可以设置的全部值。这些是 3 个私有 IP 范围。如 RFC 1918 所指定

现在,就什么是常见的而言。这可能会在未来发生变化。但据我所知,192.168/16 范围是最常见的。

其次是 10/8 范围。我也见过,就像你一样。这并不罕见

而且我从未见过路由器设置为使用 172.16/12 上的任何东西,但是他们可以。

答案2

绝大多数都设置为 192.168.1/24。此外,有些还默认为 192.168.0/24,还有极少数默认为 10.1.1/24 或 10.0.0/24。

(网关 IP {路由器的 IP 地址} 的最后一个八位字节几乎总是 .1,尽管多年来我看到一些默认为 .254 的地址。)

答案3

以下是我整理的一份清单http://localrouter.net

大部分来自http://www.techspot.com/guides/287-default-router-ip-addresses/

    var commonDefaults = {  // used by...
        "cellspot.router":  "T-Mobile (ASUS)",
        "10.0.0.1":         "Cisco, D-Link, Sitecom, SMC",
        "10.0.0.2":         "Belkin, Billion, Cisco, D-Link, Siemens, Zoom, Zyxel",
        "10.0.0.138":       "2Wire, Huawei, NetComm, Siemens, SpeedTouch, Zoom, Zyxel",
        "10.0.1.1":         "Apple", // no HTTP
        "10.0.10.1":        "SMC",
        "10.1.1.1":         "Belkin, D-Link",
        "10.10.1.1":        "Asus",
        "10.90.90.90":      "D-Link",
        "172.16.0.1":       "",
        "172.16.1.1":       "",
        "192.168.0.1":      "2Wire, Actiontec, D-Link, Eminent, Huawei, LevelOne, Linksys, Netgear, Planet, Senao, Siemens, Sitecom, SMC, Tenda, Thomson, TP-Link, Trendnet, ZTE, Zyxel",
        "192.168.0.3":      "Sonicwall",
        "192.168.0.10":     "D-Link",
        "192.168.0.30":     "Cisco, D-Link, Trendnet",
        "192.168.0.50":     "Cisco, D-Link",
        "192.168.0.100":    "Trendnet",
        "192.168.0.101":    "D-Link",
        "192.168.0.277":    "Netgear",
        "192.168.0.254":    "TP-Link",
        "192.168.1.1":      "2Wire, 3Com, Actiontec, Airlink, Asus, Aztech, Belkin, Buffalo, Dell, Cisco, D-Link, Eminent, Huawei, Linksys, NetComm, Planet, Repotec, Siemens, SMC, Tenda, TP-Link, Trendnet, USR, Zoom, ZTE, Zyxel, Motorola, Planet, Repotec",
        "192.168.1.10":     "Linksys",
        "192.168.1.99":     "Linksys",
        "192.168.1.100":    "Trendnet",
        "192.169.1.200":    "Hawking",
        "192.168.1.210":    "Linksys",
        "192.168.1.254":    "2Wire, Asus, Aztech, Billion, D-Link, Gigabyte, Hawking, Linksys, Motorola, MSI, Netopia, Planet, Siemens, Sitecom, SpeedTouch, Thomson, Trendnet, Zoom, Zyxel",
        "192.168.2.1":      "Actiontec, Airlink, Airlive, Airties, Asus, Aztech, Belkin, Edimax, Linksys, Microsoft, Siemens, SMC, Trendnet, USR, Zoom, ZTE, Zyxel",
        "192.168.2.254":    "ZTE",
        "192.168.3.1":      "Amped, Huawei",
        "192.168.4.1":      "Zoom, Zyxel",
        "192.168.8.1":      "Eminent, Huawei",
        "192.168.10.1":     "3Com, Motorola, Repotec, Trendnet, Zoom, Zyxel",
        "192.168.10.10":    "Trendnet",
        "192.168.10.50":    "NetComm",
        "192.168.10.100":   "Trendnet",
        "192.168.11.1":     "Buffalo",
        "192.168.15.1":     "D-Link: Linksys: Motorola: Sweex",
        "192.168.16.1":     "Linksys: Repotec",
        "192.168.20.1":     "Motorola: NetComm",
        "192.168.29.1":     "Asus",
        "192.168.30.1":     "Motorola",
        "192.168.50.1":     "Sweex",
        "192.168.55.1":     "Sweex",
        "192.168.62.1":     "Motorola",
        "192.168.100.1":    "Motorola, Huawei, Thomson",
        "192.168.100.100":  "ZTE",
        "192.168.102.1":    "Motorola",
        "192.168.123.254":  "LevelOne, Repotec, Sitecom, USR",
        "192.168.168.168":  "Sonicwall",
        "192.168.223.100":  "Trendnet",
        "192.168.251.1":    "Sweex",
        "192.168.254.254":  "Actiontec, Aztech, D-Link, Siemens, Zyxel"
    };

相关内容