Cisco 3750 - 配置为模拟多位置场景

网络工程 思科 局域网 网络电话 思科-3750
2022-03-03 03:57:18

早上好。

对于初学者来说,我对 cisco 产品还算不上菜鸟。我可以访问我们的 nec 电话系统等的基本中继。

我有一个 3750,我想配置它来模拟多位置场景。我读过一些称为inter vlan routing 的东西。

VLAN 1:172.30.1.0/24

VLAN 21:172.30.21.0/24

VLAN 2:172.30.2.0/24

等我还计划确保每个 VLAN 的 GW 分别为 172.30.xxx.1。

VLAN 需要相互通信。

想法?

先感谢您。(PS 我的老板有一位 cisco 高手来协助,但他的职责确实限制了他协助我的时间)

特里

2个回答

首先,您可能不应该使用 VLAN 1 - 通常不建议使用它,或者如果使用它,仅用于网络设备管理流量。但是,要回答您的问题,是的,您将在 Cisco 交换机上使用 VLAN 间路由。请参阅下面的配置:

! enable layer-3 routing
ip routing

! declare vlans
vlan 1
  name my vlan 1
vlan 21
  name my vlan 21
vlan 2
  name my vlan 2

! turn on the SVI for these three vlans.
int vlan 1
  ip address 172.30.1.1 255.255.255.0
int vlan 21
  ip address 172.30.21.1 255.255.255.0
int vlan 2
  ip address 172.30.2.1 255.255.255.0

! put ports into whatever vlans they need to be in.
! example, ports 1-4 vlan 1, ports 5-8 vlan 21, ports 9-12 vlan 2
int range g1/0/1 - 4
  switchport mode access
  switchport access vlan 1
int range g1/0/5 - 8
  switchport mode access
  switchport access vlan 21
int range g1/0/9 - 12
  switchport mode access
  switchport access vlan 2

在 Cisco Catalyst 3750 交换机中,为 3 个 Vlan 配置交换机虚拟接口 (SVI) 并启用“iP 路由”。不同Vlan路由之间的通信是启用的。因此不同的Vlan可以通信。

例如在 cisco 3750 多层交换机中

Switch(config) # interface Vlan 1 Switch(config)#ip address 172.30.1.1 255.255.255.0 Switch(config)#no shutdown

Switch(config)# interfàce Vlan 21 Switch(config)#ip address 172.30.21.1 255.255 .255.0 Switch(config)#no shutdown

Switch(config)# interfàce Vlan 2 Switch(config)#ip address 172.30.2.1 255.255.255.0 Switch(config)#no shutdown

Switch(config)# ip routing