分享
 
 
 

cisco路由交换的基本配置试验 -应用技巧

王朝数码·作者佚名  2009-07-13
窄屏简体版  字體: |||超大  

实验名称:配置小型网络

硬件环境:6台PC机,3台交换机,3台路由,3根交叉线,7根直通线。

软件环境:windows xp 操作系统 超级终端。

实验步骤:

1.按照下图连接交换机,路由器,PC机的数据线。

Pc1?----àSw1 7号端口 Pc2?----àSw2 7号端口

Pc3?----àSw1 17号端口 Pc4?----àSw2 17号端口

Pc5?----àSw3 5号端口 pc6?----àSw3 12号端口

Sw1 24号端口?----àSw2 24号端口

Sw1 23号端口?----àRouter1 e0/0端口

Router1 e1/1端口?----àRouter2 e0/0端口

Router2 e1/2端口?----àRouter3 e1/1端口

Router3 e0/0端口?----àSwitch3 24号端口

2.switch1的配置如下:

switchenable

switch#config terminal

switch(config)#hostname sw1

sw1(config)#no ip domain-lookup

sw1(config)#line console 0

sw1(config-line)#exec-timeout 0 0

sw1(config-line)#logging synchronous

sw1(config-line)#enable password 123

sw1(config)#exit

sw1(config)#vlan database

sw1(vlan)#VTP domain abc.com

sw1(vlan)#vtp password cisco

sw1(vlan)#exit

sw1#config terminal

sw1(config)#interface f0/23

sw1(config-line)#switch mode trunk

sw1(config-line)#no shutdown

sw1(config-line)#interface f0/24

sw1(config-line)#switch mode trunk

sw1(config-line)#no shutdown

sw1(config-line)#exit

sw1(config)#vlan 2,3

sw1(config)#interface range f0/1-10

sw1(config-if-range)#switchport access vlan 2

sw1(config-if-range)#interface range f0/11-22

sw1(config-if-range)#switch port access vlan 3

3.switch2配置如下:

switchenable

switch#config terminal

switch(config)#hostname sw2

sw2(config)#no ip domain-lookup

sw2(config)#line vty 0 4

sw2(config-line)#login

sw2(config-line)#password cisco

sw2(config-line)#exit

sw2(config)#line console 0

sw2(config-line)#exec-timeout 0 0

sw2(config-line)#logging synchronous

sw2(config-line)#exit

sw2#vlan database

sw2(vlan)#vtp mode client(虚拟机中为vtp client)

sw2(vlan)#vtp domain benet.com

sw2(vlan)#vtp password 123

sw2(vlan)#exit

sw2#config terminal

sw2(config)#interface range f0/1 - 10

sw2(config-if-range)#switchport access vlan 2sw2(config-if-range)#interface range f0/11 - 22

sw2(config-if)#switchport access vlan 3

sw2(config-if)#interface f0/24

de4(config-if)#no showdown

sw2(config-if)#switchport mode trunk

sw2(config-if)#exit

4.switch3配置如下:

switchenable

switch#config terminal

switch(config)#hostname sw3

sw3(configig)#no ip domain-lookup

sw3(config)#line vty 0 4

sw3(config-line)#login

sw3(config-line)#password 123

sw3(config-line)#exit

sw3(config)#line console 0

sw3(config-line)#exec-timeout 0 0

sw3(config-line)#logging synchronous

sw3(config-line)#exit

sw3(config)#vlan 2,3

sw3(config)#interface range f0/1 - 5

sw3(config-if)#switchport access vlan 2

sw3(config-if)#interface range f0/6 - 15

sw3(config-if)#switchport access vlan 3

sw3(config-if)#interface range f0/16 - 26

sw3(config-if)#switchport access vlan 4

sw3(config-if)#interface f0/24

sw3(config-if)#no shutdown

sw3(config-if)#switchport mode trunk

sw3(config-if)#exit

5:router1配置如下:

routerenable

router#config terminal

router(config)#hostname r1

r1(config)#no ip domain-lookup

r1(config)#line vty 0 4

r1(config-line)#login

r1(config-line)#password cisco

r1(config-line)#enable password 123

r1(config)#line console 0

r1(config-line)#exec-timeout 0 0

r1(config-line)#logging synchronous

r1(config-line)#exit

r1(config)#int E0/0

r1(config-if)#ip address 192.168.1.254 255.255.255.128

r1(config-if)#no shutdown

r1(config)#interface E1/1

r1(config-if)#ip address 192.168.2.193 255.255.255.128

r1(config-if)#no shutdown

r1(config-if)#interface E0/0.2

r1(config-subif)#encapsulation dot1q 2

r1(config-subif)#ip address 192.168.1.62 255.255.255.128

r1(config-subif)#interface E0/0.3

r1(config-subif)#encapsulation dot1q 3

r1(config-subif)#ip address 192.168.1.126 255.255.255.128

r1(config-subif)#exit

r1(config)#ip route 192.168.2.192 255.255.255.252 192.168.2.192

r1(config)#ip route 192.168.2.0 255.255.255.192 192.168.2.194

r1(config)#ip route 192.168.2.64 255.255.255.192 192.168.2.194

6.Router2配置如下:

routerenable

router#config termind

router(config)#hostname r2

r2(config)#no ip domain-lookup

r2(config)#line vty 0 4

r2(config-line)#login

r2(config-line)#password cisco

r2(config-line)#enable password 123

r2(config-line)#exit

r2(config)#line console 0

r2(config-line)#exec-timeout 0 0

r2(config-line)#logging synchronous

r2(config-line)#exit

r2(config)#int E0/0

r2(config-if)#ip address 192.268.2.194 255.255.255.252

r2(config-if)#no shutdown

r2(config-if)#interface E1/2

r2(config-if)#ip address 192.268.2.197 255.255.255.252

r2(config-if)#no shutdown

r2(config)#ip route 192.168.1.0 255.255.255.128 192.168.2.193

r2(config)#ip route 192.168.2.0 255.255.255.192 192.168.2.198

r2(config)#exit

7.router3配置如下:

routerenable

router#config terminal

router(config)#hostname r3

r3(config)#no ip domain-lookup

r3(config)#line vty 0 4

r3(config-line)#login

r3(config-line)#password cisco

r3(config-line)#enable password 123

r3(config-line)#exit

r3(config)#line console 0r3(config-line)#exec-timeout 0 0

r3(config-line)#logging synchronous

r3(config-line)#exit

r3(config)#interface E0/0

r3(config-if)#ip address 193.368.2.198 255.255.255.252

r3(config-if)#no shutdown

r3(config-if)#interface E1/3

r3(config-if)#ip address 193.368.2.254 255.255.255.192

r3(config-if)#no shutdown

r3(config)#ip route 0.0.0.0 0.0.0.0 192.168.2.197

r3(config)#exit

8.给PC机设置IP 地址,并验证互通。

PC1: 192.168.1.1 PC2: 192.168.1.2 PC3: 192.168.1.129

PC4: 192.168.1.130 PC5: 192.168.2.1 PC6:192.168.2.65

在每台PC机上打开“运行”对话框,用ping 命令相互测验网络是否配置正确。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有