在同一路由器上添加第三个子网

在同一路由器上添加第三个子网

cisco 2800 系列(isp 交叉连接)Eth0/0 192.xxx 255.255.255.252,Eth0/1 192.xxx 255.255.255.224

##Eth0/1.1 192.x.x.x 255.255.255.128 <--- want to add this block in!##

我被授予一个新的子网 /25 并想将其添加到我现有的 CS2800 路由器。

我尝试创建一个子接口 Eth0/1.1,一旦我完成配置并且大约 1-3 小时后没有关机,我的虚拟机就会开始离线,最终除了路由器 IP 之外的所有内容都会关闭,这允许我登录并禁用 int0/1.1,然后所有内容都会重新上线。

我目前正在尝试将子网输入为辅助 IP,一些人建议如此,但仍然没有解决方案,因为我无法使用 IP 范围。

interface FastEthernet0/0
description connection to NETWORK 107.18.19.28
ip address 107.18.19.30 255.255.255.252
ip broadcast-address 107.18.19.31
duplex auto
speed auto
!
interface FastEthernet0/1
description connection to NETWORK 107.18.19.28
ip address 64.72.69.129 255.255.255.128 secondary
ip address 107.18.19.65 255.255.255.224
ip broadcast-address 107.18.19.95
duplex auto
speed auto
!
ip default-gateway 107.18.19.29
ip forward-protocol nd
no ip http server
no ip http secure-server
!
!
ip route 0.0.0.0 0.0.0.0 107.18.19.29

答案1

我不清楚你为什么要设置子接口。我怀疑你只需要将其添加为另一个辅助接口。

interface FastEthernet0/1
  ip address 192.x.x.x 255.255.255.128 secondary

相关内容