将新vlan添加到备用的Cisco 4948E对中 – 任何陷阱?

在分公司,我们有一对4948E作为网络核心.我需要添加一个新VLAN,之前没有在这些设备上添加.这是其中一个的现有配置:
interface Vlan20
 description DC-Guest
 ip address 10.2.80.3 255.255.255.0
 ip helper-address 10.3.101.15
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 standby version 2
 standby 20 ip 10.2.80.1
 standby 20 timers 1 3
 standby 20 priority 110
 standby 20 preempt
 load-interval 30

我打算添加这个:

vlan 30
 name DC-AVTest
interface Vlan30
 description DC-AVTest
 ip address 10.2.2.3 255.255.255.0
 ip helper-address 10.3.101.15
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 standby version 2
 standby 30 ip 10.2.2.1
 standby 30 timers 1 3
 standby 30 priority 110
 standby 30 preempt
 load-interval 30

这在第二个开关上:

vlan 30
 name DC-AVTest
interface Vlan30
 description DC-AVTest
 ip address 10.2.2.2 255.255.255.0
 ip helper-address 10.3.101.15
 no ip redirects
 no ip unreachables
 no ip proxy-arp
 standby version 2
 standby 30 ip 10.2.2.1
 standby 30 timers 1 3

还有什么我需要知道的吗?这个VLAN也需要放在边缘交换机(C3650的堆栈)上,中继没有在配置中定义的VLAN,它的内核是vtp透明的 – 所以这应该就像添加到VLAN一样简单边缘上的数据库,然后将30设置为所需端口上的VLAN.

解决方法

好的,没有问题造成的.每个交换机上的新SVI都以“管理员关闭”的形式启动,因此每个交换机上的新关闭都没有关闭,没有问题.

相关文章

UITabBarController 是 iOS 中用于管理和显示选项卡界面的一...
UITableView的重用机制避免了频繁创建和销毁单元格的开销,使...
Objective-C中,类的实例变量(instance variables)和属性(...
从内存管理的角度来看,block可以作为方法的传入参数是因为b...
WKWebView 是 iOS 开发中用于显示网页内容的组件,它是在 iO...
OC中常用的多线程编程技术: 1. NSThread NSThread是Objecti...