我正在按照本教程设置一个简单的路由器(https://www.youtube.com/watch?v=2_xpsk-uRug&t=338s)实际路由部分工作正常,但是,我正在努力为路由器分配管理 IP 地址。
当前路由器(Cisco 1841)的配置是:
- interface FastEthernet0/0
no ip address
duplex auto
speed auto
!
- interface FastEthernet0/0.100
encapsulation dot1Q 100
ip address 10.0.100.1 255.255.255.0
!
- interface FastEthernet0/0.150
encapsulation dot1Q 150
ip address 10.0.150.1 255.255.255.0
!
- interface FastEthernet0/0.200
encapsulation dot1Q 200
ip address 10.0.200.1 255.255.255.0
!
- interface FastEthernet0/0.201
encapsulation dot1Q 201
ip address 10.0.201.1 255.255.255.0
!
- interface FastEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
我试过通过 SSH 连接10.0.100.1
,但没有成功
我试过了:
interface fa0/0
ip address 10.0.100.11 255.255.255.0
返回错误:
IP 与 FA0/0.100 重叠。
还尝试使用:
VLAN 100
IP address 10.0.100.11 255.255.255.0
这不是一个有效的命令。
亲切的问候