CISCO2811增加HWIC操作步骤
一:组网设备
cisco2811路由器2台,4块HWIC-4ESW模块。
二:组网要求:
需要将每台路由器增加2块HWIC-4ESW,每块HWIC卡连接一个网络,两台路由器之间配置HSRP。
三:组网过程:
1、 HWIC-4ESW是一种有4个2层交换端口的交换模块,本身并没有路由功能。要想使该卡具有路由功能,可以通过设置VLAN,将交换端口加到VLAN中,并配置VLAN的IP地址,然后将网线连接到该VLAN下的任一端口即可联通网络。
2、 配置VLAN,详见VLAN配置手册。
mc什么意思
3、 通过第一步的配置,发现路由器第0号插槽上模块的4个端口可以增加到一个或者分别增加到多个VLAN里面去,并配置VLAN的IP地址,调试时将网线插入到VLAN下的任一端口,网络可通。但第1号槽位的4个端口配置到VLAN里面后,该VLAN配置上IP地址后,将网线插入到该VLAN下的任一端口,网络却不可通。将两个模块对掉一下槽位,故障现象依旧。CISCO2811共有4个HWIC插槽,将两块卡插到第2个与第3个槽位上,还是只有小号槽位上的4个端口可以配置并调通。于是怀疑cisco2811路由器不支持2块hwic模块。通过上网查询相关资料以及咨询厂家支持,得知在有2块HWIC卡的情况下,需要配置端口的stacking才可以。Stacking可以将2个单独的模块连在一起,当成一个模块使用。同时经过摸索,发现配置stacking后,还必须在2个配置stacking的端口之间用直联线连接在一起才可以。
4、 配置HSRP,详见HSRP配置手册。
5、 注意,2811好像最多只能支持2块HWIC卡,但它有4个HWIC的槽位。
假定2块HWIC卡分别插在0号槽位,1号槽位。每块卡的第一个端口配stacking
配置命令如下:
登陆到路由器后:
郑州o学习databa vlan
vlan 3
vlan 4
exit //增加2个vlan,vlan2,vlan3
config t
int vlan 3 //显示vlan2
int vlan 4 //显示vlan3
int f0/0/0 //进入f0/0/0配置
condomswitchport access vlan 3 //加到vlan3中
switchport stacking-partner interface FastEthernet 0/1/0 //配置stacking
no shut //启用端口
int f0/0/1
switchport access vlan 3
int f0/0/2
no shut
switchport access vlan 3
int f0/0/3
no shut
switchport access vlan 3
int f0/1/0
no shut
switchport access vlan 4 //配置端口到vlan4中。注意此处无需配置stacking系统自动绑定。
int f0/1/1
no shut
nobles什么意思switchport access vlan 4
int f0/1/2
no shut
switchport access vlan 4
int f0/1/3
switchport access vlan 4
no shut
int vlan 3
ip address 11.154.158.1 255.255.255.0 //配置VLAN3 IP地址
standby 170 ip 11.154.158.3 //配置HSRP
standby 170 timers 5 15
standby 170 priority 130
standby 170 preempt
惧惮 standby 170 track Vlan3
int vlan 4
ip address 11.154.159.1 255.255.255.0
standby 180 ip 11.154.159.3
standby 180 timers 5 15
standby 180 priority 150
standby 180 preempt
standby 180 track Vlan4
exit
wr //保存配置
sho int f0/0/0可以看到,Internal Stacking Link Active : Fa0/0/0 is stacked with Fa0/1/0,表示streerstacking配置成功了。
然后将f0/0/0,f0/1/0用直联线连接,ok。
附录:
Show run:
资本积累scp10routeB#sho run
Current configuration : 2265 bytes
!
version 12.4
rvice timestamps debug datetime mc
rvice timestamps log datetime mc
no rvice password-encryption
!
hostname scp10routeB
!
boot-start-marker
boot-end-marker
!
logging buffered 51200 warnings
!
no aaa new-model
!
resource policy
!
ip subnet-zero
!
!
ip cef逃避英文
!
!
ip domain
!
urname cisco privilege 15 cret 5 $1$ZkJE$v7QPuc4fXlstnNVB22Pbn0
urname cmin02 password 0 cmin02
!
!
!
!
!
interface FastEthernet0/0
description $ETH-LAN$$ETH-SW-LAUNCH$$INTF-INFO-FE 0/0$
ip address 10.154.161.101 255.255.255.0
duplex auto
speed auto
standby 151 ip 10.154.161.103
standby 151 timers 5 15
ruler
standby 151 priority 90
市场营销专业描述 standby 151 preempt
!
interface FastEthernet0/1
ip address 10.154.162.142 255.255.255.224
duplex auto
speed auto
standby 160 ip 10.154.162.143
standby 160 timers 5 15
standby 160 priority 110
standby 160 preempt
!
interface FastEthernet0/0/0
switchport access vlan 3
switchport stacking-partner interface FastEthernet0/1/0
!
interface FastEthernet0/0/1
switchport access vlan 3
!
interface FastEthernet0/0/2
switchport access vlan 3
!
interface FastEthernet0/0/3
switchport access vlan 3
!
interface FastEthernet0/1/0
switchport access vlan 4
switchport stacking-partner interface FastEthernet0/0/0