使用子接口获取 DHCP IP

网络工程 思科 dhcp IP地址 数据包跟踪器 界面
2022-02-12 16:15:15

Router0 在 gi0/0 上有 1 个子接口,无法通过 dhcp 获取 ip。有什么我忘记了吗?

配置:

Router0(没有从 dhcp 获得 ip):

interface GigabitEthernet0/0
 ip address dhcp
 duplex auto
 speed auto

interface GigabitEthernet0/0.1
 encapsulation dot1Q 1 native
 ip address 192.168.1.254 255.255.255.0

interface Vlan1
 no ip address
 shutdown

Router1(从 dhcp 获取 ip):

interface GigabitEthernet0/0
 ip address dhcp
 duplex auto
 speed auto

interface Vlan1
 no ip address
 shutdown

网络

2个回答

路由器中的两个接口不能具有相同网络中的地址。您没有为 GigabitEthernet0/0 定义与本地 VLAN 不同的 VLAN,因此它将尝试在本地 VLAN 中获取地址,但您在 GigabitEthernet0/0.1 上定义了该地址。路由器在网络之间路由流量,而不是从一个网络返回到同一个网络,因此您的接口必须位于不同的网络中。

路由器的端口不能在同一个子网上

这就是为什么您的第二个端口无法从 dhcp 获取 ip