cisco2811增加2塊HWIC卡操作步驟
CISCO2811增加HWIC操作步驟
一:組網(wǎng)設(shè)備
cisco2811 路由器 2 臺(tái),4 塊 HWIC-4ESW 模塊。
二:組網(wǎng)要求:
需要將每臺(tái)路由器增加2塊HWIC-4ESW,每塊HWIC卡連接一個(gè)網(wǎng)絡(luò),兩臺(tái)路由器之 間配置 HSRP。
三:組網(wǎng)過程:
1、 HWIC-4ESW是一種有4個(gè)2層交換端口的交換模塊,本身并沒有路由功能。要想使該 卡具有路由功能,可以通過設(shè)置VLAN,將交換端口加到VLAN中,并配置VLAN的 IP地址,然后將網(wǎng)線連接到該VLAN下的任一端口即可聯(lián)通網(wǎng)絡(luò)。
2、 配置VLAN,詳見VLAN配置手冊。
3、 通過第一步的配置,發(fā)現(xiàn)路由器第0號(hào)插槽上模塊的4個(gè)端口可以增加到一個(gè)或者分別 增加到多個(gè)VLAN里面去,并配置VLAN的IP地址,調(diào)試時(shí)將網(wǎng)線插入到VLAN下的 任一端口,網(wǎng)絡(luò)可通。但第1號(hào)槽位的4個(gè)端口配置到VLAN里面后,該VLAN配置 上IP地址后,將網(wǎng)線插入到該VLAN下的任一端口,網(wǎng)絡(luò)卻不可通。將兩個(gè)模塊對(duì)掉 一下槽位,故障現(xiàn)象依舊。CISCO2811共有4個(gè)HWIC插槽,將兩塊卡插到第2個(gè)與第 3個(gè)槽位上,還是只有小號(hào)槽位上的4個(gè)端口可以配置并調(diào)通。于是懷疑cisco2811路由 器不支持2塊hwic模塊。通過上網(wǎng)查詢相關(guān)資料以及咨詢廠家支持,得知在有2塊HWIC 卡的情況下,需要配置端口的stacking才可以。Stacking可以將2個(gè)單獨(dú)的模塊連在一 起,當(dāng)成一個(gè)模塊使用。同時(shí)經(jīng)過摸索,發(fā)現(xiàn)配置 stacking 后,還必須在 2 個(gè)配置 stacking 的端口之間用直聯(lián)線連接在一起才可以。
4、 配置HSRP,詳見HSRP配置手冊。
5、 注意,2811好像最多只能支持2塊HWIC卡,但它有4個(gè)HWIC的槽位。
假定 2 塊 HWIC 卡分別插在 0 號(hào)槽位,1 號(hào)槽位。每塊卡的第一個(gè)端口配 stacking 配置命令如下: 登陸到路由器后:
database vlan
vlan 3
vlan 4
//增加 2 個(gè) vlan,vlan2,vlan3
//顯示 vlan2
//顯示 vlan3
〃進(jìn)入f0/0/0配置
//加到 vlan3 中
exit
config t
int vlan 3
int vlan 4
int f0/0/0
switchport access vlan 3
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 系統(tǒng)自動(dòng)綁定。
int f0/1/1
no shut
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 : FaO/0/0 is stacked with Fa0/1/0,表示 stacking 配置成功了。
然后將f0/0/0, f0/1/0用直聯(lián)線連接,ok。
附錄:
Show run: scp10routeB#sho run Building configuration...
Current configuration : 2265 bytes
version 12.4
service timestamps debug datetime msec service timestamps log datetime msec no service 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
secret 5
ip domain name username cisco privilege 15 $1$ZkJE$v7QPuc4fXlstnNVB22Pbn0 username 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
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 !
interface FastEthernet0/1/1
switchport access vlan 4
!
interface FastEthernet0/1/2
switchport access vlan 4
!
interface FastEthernet0/1/3
switchport access vlan 4
!
interface Vlan1
no ip address
!
interface Vlan2
no ip address
!
interface Vlan3
ip address 11.154.158.2 255.255.255.0
standby 170 ip 11.154.158.3
standby 170 timers 5 15
standby 170 priority 130 standby 170 preempt standby 170 track Vlan3
!
interface Vlan4
ip address 11.154.159.2 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
!
ip classless
ip route 0.0.0.0 0.0.0.0 10.154.162.131 !
ip http server
ip http authentication local
ip http timeout-policy idle 5 life 86400 requests 10000
control-plane
line con 0
login local
line aux 0
line vty 0 4
privilege level 15
login local
transport input telnet
line vty 5 15
privilege level 15
login local
transport input telnet
!
scheduler allocate 20000 1000
!
end
scp10routeB#sho int f0/0/0
FastEthernet0/0/0 is up, line protocol is down
Internal Stacking Link Active : Fa0/0/0 is stacked with Fa0/1/0
Hardware is Fast Ethernet, address is 0019.56de.96a4 (bia 0019.56de.96a4)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:36:55, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 2000 bits/sec, 2 packets/sec
5 minute output rate 1000 bits/sec, 1 packets/sec
186001 packets input, 39015867 bytes, 0 no buffer
Received 91468 broadcasts, 0 runts, 0 giants, 0 throttles
3 input errors, 2 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
239244 packets output, 17595780 bytes, 0 underruns
0 output errors, 0 collisions, 3 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB#sho int f0/1/0
FastEthernet0/1/0 is up, line protocol is down
Internal Stacking Link Active : Fa0/1/0 is stacked with Fa0/0/0
Hardware is Fast Ethernet, address is 0019.56de.96d0 (bia 0019.56de.96d0)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 05:37:54, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 1000 bits/sec, 1 packets/sec
5 minute output rate 2000 bits/sec, 2 packets/sec
62672 packets input, 8753936 bytes, 0 no buffer
Received 8040 broadcasts, 0 runts, 0 giants, 0 throttles
7 input errors, 0 CRC, 2 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
1488 packets output, 163995 bytes, 0 underruns
0 output errors, 0 collisions, 4 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB# sho int f0/0/3
FastEthernet0/0/3 is down, line protocol is down
Hardware is Fast Ethernet, address is 0019.56de.96a7 (bia 0019.56de.96a7)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Auto-duplex, Auto-speed
ARP type: ARPA, ARP Timeout 04:00:00
Last input 05:45:36, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
99306 packets input, 18906559 bytes, 0 no buffer
Received 50005 broadcasts, 0 runts, 0 giants, 0 throttles
1 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
110843 packets output, 8090984 bytes, 0 underruns
0 output errors, 0 collisions, 2 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB#sho int f0/0/1
FastEthernet0/0/1 is down, line protocol is down
Hardware is Fast Ethernet, address is 0019.56de.96a5 (bia 0019.56de.96a5)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Auto-duplex, Auto-speed
ARP type: ARPA, ARP Timeout 04:00:00
Last input 3d02h, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
2201 packets input, 467958 bytes, 0 no buffer
Received 664 broadcasts, 0 runts, 0 giants, 0 throttles
1 input errors, 0 CRC, 1 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
807 packets output, 126749 bytes, 0 underruns
0 output errors, 0 collisions, 3 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB#sho int f0/0/3
FastEthernet0/0/3 is down, line protocol is down
Hardware is Fast Ethernet, address is 0019.56de.96a7 (bia 0019.56de.96a7)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Auto-duplex, Auto-speed
ARP type: ARPA, ARP Timeout 04:00:00
Last input 05:45:54, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
99306 packets input, 18906559 bytes, 0 no buffer
Received 50005 broadcasts, 0 runts, 0 giants, 0 throttles
1 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
110843 packets output, 8090984 bytes, 0 underruns
0 output errors, 0 collisions, 2 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
scp10routeB#sho int f0/0/0
FastEthernet0/0/0 is up, line protocol is down
Internal Stacking Link Active : Fa0/0/0 is stacked with Fa0/1/0
Hardware is Fast Ethernet, address is 0019.56de.96a4 (bia 0019.56de.96a4)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:37:47, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 2000 bits/sec, 4 packets/sec
5 minute output rate 1000 bits/sec, 1 packets/sec
186201 packets input, 39032277 bytes, 0 no buffer
Received 91492 broadcasts, 0 runts, 0 giants, 0 throttles
3 input errors, 2 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
239284 packets output, 17601908 bytes, 0 underruns
0 output errors, 0 collisions, 3 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB#sho int f0/0/1
FastEthernet0/0/1 is down, line protocol is down
Hardware is Fast Ethernet, address is 0019.56de.96a5 (bia 0019.56de.96a5)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Auto-duplex, Auto-speed
ARP type: ARPA, ARP Timeout 04:00:00
Last input 3d02h, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
2201 packets input, 467958 bytes, 0 no buffer
Received 664 broadcasts, 0 runts, 0 giants, 0 throttles
1 input errors, 0 CRC, 1 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
807 packets output, 126749 bytes, 0 underruns
0 output errors, 0 collisions, 3 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB#sho int f0/0/2
FastEthernet0/0/2 is up, line protocol is up
Hardware is Fast Ethernet, address is 0019.56de.96a6 (bia 0019.56de.96a6)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:00:00, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 1 packets/sec
5 minute output rate 4000 bits/sec, 4 packets/sec
37719 packets input, 9254858 bytes, 0 no buffer
Received 11769 broadcasts, 0 runts, 0 giants, 0 throttles
1 input errors, 0 CRC, 1 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
53462 packets output, 3868117 bytes, 0 underruns
0 output errors, 0 collisions, 2 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB#sho int f0/1/0
FastEthernet0/1/0 is up, line protocol is down
Internal Stacking Link Active : Fa0/1/0 is stacked with Fa0/0/0
Hardware is Fast Ethernet, address is 0019.56de.96d0 (bia 0019.56de.96d0)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 05:38:49, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 1000 bits/sec, 1 packets/sec
5 minute output rate 3000 bits/sec, 6 packets/sec
62713 packets input, 8760136 bytes, 0 no buffer
Received 8046 broadcasts, 0 runts, 0 giants, 0 throttles
7 input errors, 0 CRC, 2 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
1746 packets output, 184909 bytes, 0 underruns
0 output errors, 0 collisions, 4 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out
scp10routeB#sho int f0/1/2
FastEthernet0/1/2 is down, line protocol is down
Hardware is Fast Ethernet, address is 0019.56de.96d2 (bia 0019.56de.96d2)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Auto-duplex, Auto-speed
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:29:24, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 0 bits/sec, 0 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
15373 packets input, 2220978 bytes, 0 no buffer
Received 8874 broadcasts, 0 runts, 0 giants, 0 throttles
0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
0 input packets with dribble condition detected
9656 packets output, 720958 bytes, 0 underruns
0 output errors, 0 collisions, 2 interface resets
0 babbles, 0 late collision, 0 deferred
0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out scp10routeB#sho int f0/1/1
FastEthernet0/1/1 is up, line protocol is up
Hardware is Fast Ethernet, address is 0019.56de.96d1 (bia 0019.56de.96d1)
MTU 1500 bytes, BW 100000 Kbit, DLY 100 usec,
reliability 255/255, txload 1/255, rxload 1/255
Encapsulation ARPA, loopback not set
Keepalive set (10 sec)
Full-duplex, 100Mb/s
ARP type: ARPA, ARP Timeout 04:00:00
Last input 00:00:05, output never, output hang never
Last clearing of "show interface" counters never
Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
Queueing strategy: fifo
Output queue: 0/40 (size/max)
5 minute input rate 2000 bits/sec, 5 packets/sec
5 minute output rate 0 bits/sec, 0 packets/sec
2209 packets input, 231631 bytes, 0 no buffer
Received 727 broadcasts, 0 runts, 0 giants, 0 throttles 0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored 0 input packets with dribble condition detected 1827 packets output, 156016 bytes, 0 underruns 0 output errors, 0 collisions, 2 interface resets 0 babbles, 0 late collision, 0 deferred 0 lost carrier, 0 no carrier
0 output buffer failures, 0 output buffers swapped out