Cisco 路由器在同一广播域中的多个接口

网络工程 思科 路由 第3层
2021-07-24 17:24:20

我有一个 Cisco 3945E,其中安装了两个 EtherSwitch 模块 ( gi 1/0, gi 2/0) 和一个 UCSE ( ucse 4/0) 服务器。

简而言之,我想将 VLAN 中继到两个 EtherSwitch 模块,并将 UCSE 的 IMC 放在服务器 VLAN 上:

VLAN 08 - SERVER: 10.2.8.1/24  - Trunked to EtherSwitches, untagged to UCSE 4/0.
VLAN 16 - VOICE:  10.2.16.1/24 - Trunked to EtherSwitches
VLAN 24 - DATA:   10.2.24.1/24 - Trunked to EtherSwitches

我熟悉在棒上配置路由器,但完全不知道如何将相同的广播域(和 IP 地址)分配给路由器上的多个接口。

编辑:

我已经能够使用 BVI 将广播域跨越到路由器的两个端口,但是 UCSE 仍然给我带来麻烦:

interface GigabitEthernet0/0
 no ip address
 duplex auto
 speed auto
interface GigabitEthernet0/0.8
 encapsulation dot1Q 8 native
 bridge-group 8
interface ucse4/0
 ip unnumbered BVI8
 imc ip address 10.2.8.2 255.255.255.0 default-gateway 10.2.8.1 
interface BVI8
 ip address 10.2.8.1 255.255.255.0

我在 gi 0/0 上有一个设备,ip 为 10.2.8.3/24,可以毫无问题地 ping 它,但仍然无法访问 IMC。我已经尝试创建从 10.2.8.2 到 bvi 8 和/或 ucse 4/0 的主机路由,但没有成功...

任何帮助表示赞赏!

1个回答

原帖中的配置很接近,但缺少一些关键的东西:

interface ucse4/0
  ip unnumbered BVI8
  imc ip address 10.2.8.2 255.255.255.0 default-gateway 10.2.8.1 
  imc access-port shared-lom console

ip route 10.2.8.2 255.255.255.255 ucse 4/0

注意imc access-port shared-lom console. 这是我设法使 IMC 地址可 ping 的唯一方法。我还应该指出,默认情况下,BVI 不会自行启动,除非有另一个活动端口桥接到它。