尝试创建子网以连接到网络设备,但我在“路由打印”列表中看不到 IP 地址

尝试创建子网以连接到网络设备,但我在“路由打印”列表中看不到 IP 地址

我正在尝试设置一个子网来连接到我需要配置的 Ubiquiti 网络设备。我无法连接到它。这是在 Windows 10 上。

1 – 我已将以太网 TCP/IPv4 属性更改为:

IP:192.168.1.100

子网掩码:255.255.255.0

默认网关:192.168.1.1(我也试过192.168.1.20)

2 - 我在命令行中使用了“route print”(我在 Windows 10 上),但没有出现 192.168.1.x。

以下是表格:

IPv4 Route Table
> > ===========================================================================
> > Active Routes:
> > Network Destination        Netmask          Gateway       Interface  Metric
> >           0.0.0.0          0.0.0.0     192.168.86.1    192.168.86.23     50
> >         127.0.0.0        255.0.0.0         On-link         127.0.0.1    331
> >         127.0.0.1  255.255.255.255         On-link         127.0.0.1    331
> >   127.255.255.255  255.255.255.255         On-link         127.0.0.1    331
> >      192.168.86.0    255.255.255.0         On-link     192.168.86.23    306
> >     192.168.86.23  255.255.255.255         On-link     192.168.86.23    306
> >    192.168.86.255  255.255.255.255         On-link     192.168.86.23    306
> >         224.0.0.0        240.0.0.0         On-link         127.0.0.1    331
> >         224.0.0.0        240.0.0.0         On-link     192.168.86.23    306
> >   255.255.255.255  255.255.255.255         On-link         127.0.0.1    331
> >   255.255.255.255  255.255.255.255         On-link     192.168.86.23    306
> > ===========================================================================

我觉得这很奇怪。

我有一张用于有线连接的以太网卡,设备连接到该卡。我还有一张无线网卡,当我尝试连接时,我会禁用它。设备手册说它的默认 IP 地址是 192.168.1.20,但我无法连接到它,我想知道这是否是因为 IPv4 表中反映了一些问题。

有人有什么想法吗?

这是 ipcongif /all

 Windows IP Configuration

   Host Name . . . . . . . . . . . . : Desktop
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
   DNS Suffix Search List. . . . . . : lan

Ethernet adapter Ethernet:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Intel(R) Ethernet Connection (2) I219-V
   Physical Address. . . . . . . . . : 1C-1B-0D-67-FA-9D
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Wireless LAN adapter Local Area Connection* 10:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter
   Physical Address. . . . . . . . . : 1A-A6-F7-F1-66-2F
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes

Wireless LAN adapter Local Area Connection* 11:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft Wi-Fi Direct Virtual Adapter #2
   Physical Address. . . . . . . . . : 2A-A6-F7-F1-66-2F
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes

Wireless LAN adapter WiFi:

   Connection-specific DNS Suffix  . : lan
   Description . . . . . . . . . . . : Qualcomm Atheros AR9287 Wireless Network Adapter
   Physical Address. . . . . . . . . : 18-A6-F7-F1-66-2F
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   IPv6 Address. . . . . . . . . . . : fd7f:2d4b:2565:8f50:839a:a262:74e2:aca7(Preferred)
   Temporary IPv6 Address. . . . . . : fd7f:2d4b:2565:8f50:e189:dacd:fc3c:aedc(Preferred)
   Link-local IPv6 Address . . . . . : fe80::725:8942:f1a9:da3d%24(Preferred)
   IPv4 Address. . . . . . . . . . . : 192.168.86.23(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Lease Obtained. . . . . . . . . . : 14 April 2024 14:02:02
   Lease Expires . . . . . . . . . . : 17 April 2024 09:36:38
   Default Gateway . . . . . . . . . : 192.168.86.1
   DHCP Server . . . . . . . . . . . : 192.168.86.1
   DHCPv6 IAID . . . . . . . . . . . : 404268791
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-20-A8-9F-B9-1C-1B-0D-67-FA-9D
   DNS Servers . . . . . . . . . . . : 192.168.86.1
   NetBIOS over Tcpip. . . . . . . . : Enabled

答案1

你跳过了前面几个步骤。要使 IP 在以太网上工作,首先需要以太网本身能够工作 - 这表示它无法工作,即端口未检测到任何设备的以太网链路:

Ethernet adapter Ethernet:

   Media State . . . . . . . . . . . : Media disconnected

操作系统通常不会在断开连接的接口上配置 IP - 它们故意不添加子网路由,以便可以通过另一个正常的接口访问同一个子网。

相关内容