我工作的公司有多个远程"IoT“风格的站点,通过Cisco819蜂窝路由器连接回数据中心。我们正在升级这些更新的思科IR809路由器,因为819是EOL,并且变得越来越不可靠。这些站点中的绝大多数(>90%)是一个存根网络,它有一个单独的主机直接连接到路由器。所有这些升级都进展顺利。
该子网在这里有两个主机(相机和传感器)连接回数据中心通过一个GRE隧道。存根网络有一个带有/29掩码的子网。现有配置利用819's开关端口的灵活性,并为两个设备创建连接到VLAN的路由SVI。我希望能够复制这个配置,但不幸的是,809's 2路由端口不能用作交换端口。
鉴于这是一个远程数据收集站点(距数据中心约50英里),可能会有更多的主机,我希望尽可能避免安装交换机(2个故障点、额外费用、更多维护等等)。我还希望使用与其他远程存根网络相同的设备,这些网络都只有通过IR809连接的单一主机。
这样的配置可能吗?
819上的现有配置片段:
interface vlan 49
ip address 10.x.x.49 255.255.255.248
interface FastEthernet 1
switchport access vlan 49
no ip address
interface FastEthernet 3
switchport access vlan 49
no ip address
发布于 2019-08-26 14:53:06
如果您的路由器可以使用IRB (集成路由和桥接),您可以设置如下内容:
bridge irb ! <- *** Enable IRB ***
!
interface FastEthernet0/0
no ip address
bridge-group 1 ! <- *** Set the bridge group used ***
interface FastEthernet0/1
no ip address
bridge-group 1 ! <- *** Set the bridge group used ***
!
interface BVI1 ! <- *** The virtual router interface you create for the bridge group ***
ip address 10.x.x.49 255.255.255.248
!
bridge 1 protocol ieee ! <- *** Set the bridge protocol used ***
!
bridge 1 route ip ! <- *** Enable routing to the bridge ***
!https://networkengineering.stackexchange.com/questions/61108
复制相似问题