




已阅读5页,还剩19页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
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配置手册。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配置命令如下:登陆到路由器后:database vlanvlan 3vlan 4exit /增加2个vlan,vlan2,vlan3config tint vlan 3 /显示vlan2int vlan 4 /显示vlan3int f0/0/0 /进入f0/0/0配置switchport access vlan 3 /加到vlan3中switchport stacking-partner interface FastEthernet 0/1/0 /配置stacking no shut /启用端口int f0/0/1switchport access vlan 3int f0/0/2no shutswitchport access vlan 3int f0/0/3no shutswitchport access vlan 3int f0/1/0no shutswitchport access vlan 4 /配置端口到vlan4中。注意此处无需配置stacking系统自动绑定。int f0/1/1no shutswitchport access vlan 4int f0/1/2no shutswitchport access vlan 4int f0/1/3switchport access vlan 4no shutint vlan 3ip address /配置VLAN3 IP地址standby 170 ip /配置HSRP standby 170 timers 5 15 standby 170 priority 130 standby 170 preempt standby 170 track Vlan3int vlan 4ip address standby 180 ip standby 180 timers 5 15 standby 180 priority 150 standby 180 preempt standby 180 track Vlan4exitwr /保存配置sho int f0/0/0可以看到,Internal Stacking Link Active : Fa0/0/0 is stacked with Fa0/1/0,表示stacking配置成功了。然后将f0/0/0,f0/1/0用直联线连接,ok。附录:Show run:scp10routeB#sho runBuilding configuration.Current configuration : 2265 bytes!version 12.4service timestamps debug datetime msecservice timestamps log datetime msecno service password-encryption!hostname scp10routeB!boot-start-markerboot-end-marker!logging buffered 51200 warnings!no aaa new-model!resource policy!ip subnet-zero!ip cef!ip domain name !username cisco privilege 15 secret 5 $1$ZkJE$v7QPuc4fXlstnNVB22Pbn0username cmin02 password 0 cmin02!interface FastEthernet0/0 description $ETH-LAN$ETH-SW-LAUNCH$INTF-INFO-FE 0/0$ ip address 01 duplex auto speed auto standby 151 ip 03 standby 151 timers 5 15 standby 151 priority 90 standby 151 preempt!interface FastEthernet0/1 ip address 42 24 duplex auto speed auto standby 160 ip 43 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 standby 170 ip standby 170 timers 5 15 standby 170 priority 130 standby 170 preempt standby 170 track Vlan3!interface Vlan4 ip address standby 180 ip standby 180 timers 5 15 standby 180 priority 150 standby 180 preempt standby 180 track Vlan4!ip classlessip route 31!ip http serverip http authentication localip http timeout-policy idle 5 life 86400 requests 10000!control-plane!line con 0 login localline aux 0line vty 0 4 privilege level 15 login local transport input telnetline vty 5 15 privilege level 15 login local transport input telnet!scheduler allocate 20000 1000!endscp10routeB#sho int f0/0/0FastEthernet0/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 outscp10routeB#sho int f0/1/0FastEthernet0/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 outscp10routeB# sho int f0/0/3FastEthernet0/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 outscp10routeB#sho int f0/0/1FastEthernet0/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 outscp10routeB#sho int f0/0/3FastEthernet0/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 outscp10routeB#sho int f0/0/0FastEthernet0/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 outscp10routeB#sho int f0/0/1FastEthernet0/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 outscp10routeB#sho int f0/0/2FastEthernet0/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 outscp10routeB#sho int f0/1/0FastEthernet0/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 outscp10routeB#sho int f0/1/2FastEthernet0/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 Ou
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 洗缩联合挡车工基础考核试卷及答案
- 翻车机工培训考核试卷及答案
- 货检值班员工艺创新考核试卷及答案
- 煅白制备工成本控制考核试卷及答案
- 慢性病(高血压、糖尿病)培训试题(附答案)
- 导游业务模拟习题(含参考答案)2
- 铸造模型工技能巩固考核试卷及答案
- 石脑油吸附分离装置操作工转正考核试卷及答案
- 架子工安全教育考试试卷及答案
- 叉车司机安全培训试卷(附答案)
- 幼儿文学课件完整版
- DB6101T3128-2022养老服务规范 助餐服务
- 实验室常规玻璃仪器的操作及注意事项课件
- 临时用地复垦与方案
- 语言学纲要课件
- 地下室开槽引流方案
- 电子课件-《市场营销》-A45-2298完整版教学课件全书电子讲义(最新)
- 新苏教版科学六年级上册教学计划含进度表
- 2021年新苏教版科学六年级上册知识点整理
- 美的观念(玛丽艳)
- 农药学原理课件--作用机制研究的思路和方法
评论
0/150
提交评论