cisco路由交换配置

拓扑图

0、接口ip地址及PC配置

PC-IP地址配置如图所示,R1、R2、R3、MSW1接口ip配置如下:

Router>ena

Router#conf t

Router(config-if)#hostname R1

R1(config)#int lo0

R1 (config-if)#ip add 10.0.1.1255.255.255.255

R1 (config-if)#int f0/0

R1 (config-if)#ip add 10.0.12.1 255.255.255.0

R1(config-if)#no shutdown


Router>ena

Router#conf t

Router(config)#hostname R2

R2(config)#int lo0

R2(config-if)#ip add 10.0.2.2255.255.255.255

R2(config-if)#int f0/1

R2(config-if)#ip add 10.0.12.2255.255.255.0

R2(config-if)#no shutdown

R2(config-if)#int f0/0

R2(config-if)#ip add 10.0.23.2255.255.255.0

R2(config-if)#no shutdown


Router>ena

Router#conf t

Router(config)#hostname R3

R3(config)#int lo0

R3(config-if)#ip add 10.0.3.3255.255.255.255

R3(config-if)#int f0/1

R3(config-if)#ip add 10.0.23.3255.255.255.0

R3(config-if)#no shut

R3(config-if)#int f0/0

R3(config-if)#ip add 10.0.34.3255.255.255.0

R3(config-if)#no shut


Switch>ena

Switch#conf t

Switch(config)#hostname MSW1

MSW1(config)#int f0/5

MSW1(config-if)#no switchport

MSW1(config-if)#ip add 10.0.34.4255.255.255.0

MSW1(config-if)#int lo0

MSW1(config-if)#ip add 10.0.4.4255.255.255.255


1、路由器R1,R2,R3,三层交换机MSW1之间使用动态路由,实现互通。

配置ospf协议

R1(config)#router ospf 1

R1(config-router)#router-id 10.0.1.1

R1(config-router)#network 10.0.1.1 0.0.0.0area 0

R1(config-router)#network 10.0.12.00.0.0.255 area 0


R2(config)#router ospf 1

R2(config-router)#router-id 10.0.2.2

R2(config-router)#network 10.0.2.2 0.0.0.0area 0

R2(config-router)#network 10.0.12.00.0.0.255 area 0

R2(config-router)#network 10.0.23.00.0.0.255 area 0


R3(config)#router ospf 1

R3(config-router)#router-id 10.0.3.3

R3(config-router)#network 10.0.3.3 0.0.0.0area 0

R3(config-router)#network 10.0.23.00.0.0.255 area 0

R3(config-router)#network 10.0.34.00.0.0.255 area 0


MSW1(config)#ip routing

MSW1(config)#router ospf 1

MSW1(config-router)#router-id 10.0.4.4

MSW1(config-router)#network 10.0.4.40.0.0.0 area 0

MSW1(config-router)#network 10.0.34.00.0.0.255 area 0


验证:

从R1上ping MSW1交换机的环回地址,实现互通。

R1#ping 10.0.4.4

Type escape sequence to abort.

Sending 5, 100-byte ICMP Echos to 10.0.4.4,timeout is 2 seconds:

!!!!!

Success rate is 100 percent (5/5),round-trip min/avg/max = 0/0/1 ms


2、为R3设置网络访问密码,密码为123456

R3(config)#line vty 0

R3(config-line)#password 123456

R3(config-line)#login

验证:使用R1 telnet R3。

R1#telnet 10.0.3.3

Trying 10.0.3.3 ...Open

User Access Verification

Password: 123456

R3>


3、MSW1和MSW2之间做链路聚合

MSW1(config)#interface port-channel 1

MSW1(config-if)#exit

MSW1(config)#interface range f0/6-7

MSW1(config-if-range)#channel-group 1 modedesirable

Switch(config)#hostname MSW2

MSW2 (config)#interface port-channel 1

MSW2 (config-if)#exit

MSW2 (config)#interface range f0/1-2

MSW2 (config-if-range)#channel-group 1 modedesirable

验证:

MSW2#show etherchannel summary

1Po1(SU)PAgPFa0/1(P) Fa0/2(P)

MSW1#show etherchannel summary

1Po1(SU)PAgPFa0/6(P) Fa0/7(P)

配置完成


4、在MSW1上设VLAN10和VLAN20,PC0 PC1属于VLAN10,PC2 PC3属于VLAN20,实现不同VLAN间互通。

MSW1#conf t

MSW1(config)#vlan 10

MSW1(config-vlan)#vlan 20

MSW1(config-vlan)#int f0/1

MSW1(config-if)#switchport access vlan 10

MSW1(config-if)#int f0/2

MSW1(config-if)#switchport access vlan 10

MSW1(config-if)#int f0/3

MSW1(config-if)#switchport access vlan 20

MSW1(config-if)#int f0/4

MSW1(config-if)#switchport access vlan 20

MSW1(config-if)#int vlan 10

MSW1(config-if)#ip add 192.168.1.254255.255.255.0

MSW1(config-if)#int vlan 20

MSW1(config-if)#ip add 192.168.2.254255.255.255.0

验证:使用PC1 ping PC3:

PC1>ping 192.168.2.1

Reply from 192.168.2.1: bytes=32 time=0msTTL=127


5、在二层交换机上设置VLAN30和vlan40,PC4 PC5属于VLAN30,PC6 PC7属于VLAN40,实现网络隔离。

Switch>ena

Switch#conf t

Switch(config)#vlan 30

Switch(config-vlan)#vlan 40

Switch(config-vlan)#int f0/2

Switch(config-if)#switchport access vlan 30

Switch(config-if)#int f0/3

Switch(config-if)#switchport access vlan 30

Switch(config-if)#int f0/4

Switch(config-if)#switchport access vlan 40

Switch(config-if)#int f0/5

Switch(config-if)#switchport access vlan 40

验证:

使用PC4 ping PC6:

PC4>ping192.168.3.3

Pinging 192.168.3.3 with 32 bytes of data:

Request timed out.

Request timed out.

实现了网络隔离


6、在二层交换机上配置默认路由,下一跳为MSW1 VLAN20 VLAN接口地址

Switch(config)#ip default-gateway192.168.2.254

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352

推荐阅读更多精彩内容