交换机基本命令

更新时间:2023-06-26 15:13:18 阅读: 评论:0

交换机基本命令
1 案例1:交换机基本命令模式
1.1 问题
本例要求熟练掌握交换机每个模式的配置命令
对于思科交换机来说,主要有2种配置途径:其⼀,使⽤交换机⾃带的Console线缆连接到计算机的COM⼝,然后利⽤计算机的超级终端软件直接配置,⾸次配置通常使⽤这种⽅式;其⼆,通过telnet⽅式远程访问、配置交换机,这种⽅式要求此交换机已配置有IP地址且已接⼊计算机⽹络,后续课程会学习此访问⽅式。
1)通过超级终端访问交换机
2)交换机⼯作模式的进⼊与退出
真实设备环境,如图-1所⽰。
图-1
1.2 ⽅案
本例中的配置练习可采⽤思科模拟器 —— Cisco Packet Tracer 6.2来实现。
1)安装Packet Tracer 6.2
双击安装包执⾏默认安装,然后将中⽂语⾔⽂件Chine.ptl解压到安装⽬录下的多语⾔⽂件夹,⽐如C:\Program Files (x86)\Cisco Packet Tracer 6.0\languages。
双击桌⾯的Cisco Packet Tracer快捷⽅式以启动程序,打开菜单“Options”-->“Preferences”-->切换到“Interface”选项卡-->选择下⽅的Chine.ptl-->单击右下⾓“Change Language”按钮,弹出提⽰时单击“OK”,如图-2所⽰。
图-2
关闭当前Packet Tracer程序,然后再重新启动此程序,可发现已经变成中⽂语⾔界⾯了(当前汉化的还不完整),如图-3所⽰。
图-3
2)建⽴实验⽹络拓扑
在Packet Tracer程序主窗⼝中,添加⼀台Cisco 2960交换机、⼀台普通PC机,并添加Console连接、直通⽹线连接,如图-4所⽰,确认完毕后将当前拓扑结构保存为c2960-pc.pkt⽂件。
图-4
其中,连接细节如下:
交换机的Console⼝ <--> PC机的RS 232串⼝。
交换机的FastEthernet0/24接⼝ <--> PC机的FastEthernet0⽹卡。
1.3 步骤
实现此案例需要按照如下步骤进⾏。
步骤⼀:通过超级终端访问交换机。
1)配置并打开超级终端
在此前建⽴的Packet Tracer实验拓扑环境中,单击PC机以打开此设备,确认电源已启动(机箱⽰意图上的指⽰灯为黄绿⾊),切换到“桌⾯选项卡”,如图-5所⽰,找到其中的“终端”并单击打开。
图-5
在弹出的终端配置窗⼝中,如图-6所⽰,单击“确定”以接受默认值。
图-6
接下来就可以看到“终端”窗⼝了,其中显⽰了通过Console线连接的交换机初始化信息,回车后可进⼊交换机的“Switch>”配置系统,如图-7所⽰。
图-7
提⽰:在Packet Tracer环境中,可直接单击交换机图标,然后切换到“命令⾏”选项卡,也可以进⼊IOS配置环境。
步骤⼆:交换机⼯作模式的进⼊与退出
1) 交换机⼯作模式的进⼊如下:
1. Switch>enable //切换为特权模式
2. Switch# configure terminal    //进⼊全局配置模式
3. Enter configuration commands, one per line. End with CNTL/Z.
4. Switch(config)#interface fastEthernet 0/1 //进⼊接⼝模式
5. Switch(config-if)#
2)交换机⼯作模式的退出下:
1. Switch(config-if)#exit //接⼝模式退到全局配置模式
2. Switch(config)#exit //全局配置模式退到特权模式
3. Switch#exit //特权模式退到⽤户模式
4. Switch>
注:exit 返回上⼀模式
end 从接⼝或者特全局配置模式回到特权模式,快捷键Ctrl+z同等效果
思科设备命令⾏不区分⼤⼩写,与Linux命令⾏不同
命令输⼊错误卡住时同时按键盘ctrl+shift+6这三个键即可
2 案例2:交换机命令⾏基本配置
2.1 问题
修改及查看交换机配置
1)修改交换机主机名
2)查看交换机配置信息
3)查看IOS名称以及版本信息
2.2 ⽅案
在Packet Tracer程序主窗⼝中,添加⼀台Cisco 2960交换机,进⼊交换机,输⼊相关命令进⾏配置和查看交换机
2.3 步骤
实现此案例需要按照如下步骤进⾏。
步骤⼀:修改交换机主机名
进⼊全局配置模式后,使⽤hostname指令可以为交换机设置主机名。例如,以下操作可以将主机名设置为s1:
1. Switch(config)# hostname s1                    //配置主机名
2. s1(config)#
步骤⼆:查看交换机配置信息
查看交换机当前的运⾏配置:
1. 查看交换机当前的运⾏配置(或write terminal):
2. s1# show running-config                //查看当前的运⾏配置
3.
4.
5. Current configuration : 1052 bytes
6. !
7. version 12.2
8. no rvice timestamps log datetime mc
9. no rvice timestamps debug datetime mc
10. no rvice password-encryption
11. !
12. hostname sw1                        //已配置主机名
13. !
14. !
15. !
16. !
17. spanning-tree mode pvst
18. !
19. interface FastEthernet0/1
20. !
21. interface FastEthernet0/2
22. !
23. interface FastEthernet0/3
24. !
25. interface FastEthernet0/4
26. !
27. interface FastEthernet0/5
28. !
29. interface FastEthernet0/6
30. !
31. interface FastEthernet0/7
32. !
33. interface FastEthernet0/8
34. !
35. interface FastEthernet0/9
36. !
37. interface FastEthernet0/10
宁远酿豆腐38. !
39. interface FastEthernet0/11
40. !
41. interface FastEthernet0/12
42. !
43. interface FastEthernet0/13
44. !
45. interface FastEthernet0/14
46. !
47. interface FastEthernet0/15
48. !
49. interface FastEthernet0/16
50. !
51. interface FastEthernet0/17
52. !
53. interface FastEthernet0/18
54. !
55. interface FastEthernet0/19
56. !
57. interface FastEthernet0/20
58. !
59. interface FastEthernet0/21
60. !
61. interface FastEthernet0/22
62. !
63. interface FastEthernet0/23
64. !
65. interface FastEthernet0/24
66. !
67. interface GigabitEthernet1/1
68. !
69. interface GigabitEthernet1/2
70. !
71. interface Vlan1
72. no ip address
73. shutdown
74. !
75. !
76. line con 0
77. !
78. line vty 0 4
79. login
80. line vty 5 15
81. login
82. !
83. !
84. end
85. sw1#
步骤三:查看IOS名称以及版本信息
查看ios名称及版本信息
1. s1#show version
2. Cisco Internetwork Operating System Software
3. IOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA4, RELEASE SOFTWARE(fc1)
4. Copyright (c) 1986-2005 by cisco Systems, Inc.
5. Compiled Wed 18-May-05 22:31 by jharirba
6. Image text-ba: 0x80010000, data-ba: 0x80562000
7.
8. ROM: Bootstrap program is is C2950 boot loader
9. Switch uptime is 1 minutes, 39 conds
10. System returned to ROM by power-on
11.
12. Cisco WS-C2950-24 (RC32300) processor (revision C0) with 21039K bytes of memory.
13. Processor board ID FHK0610Z0WC
14. Last ret from system-ret
15. Running Standard Image
16. 24 FastEthernet/IEEE 802.3 interface(s)
17.eagles
18. 63488K bytes of flash-simulated non-volatile configuration memory.诗经蓼莪
叠词的好处19. Ba ethernet MAC Address: 00E0.B026.B88C
20. Motherboard asmbly number: 73-5781-09
21. Power supply part number: 34-0965-01
22. Motherboard rial number: FOC061004SZ
23. Power supply rial number: DAB0609127D
24. Model revision number: C0
25. Motherboard revision number: A0
26. Model number: WS-C2950-24
27. System rial number: FHK0610Z0WC
28. Configuration register is 0xF
3 案例3:交换机密码设置
3.1 问题
配置交换机的访问⼝令
1)配置⽤户进⼊特权模式的明⽂密码为123
2)配置⽤户进⼊特权模式的密⽂密码为456
3)配置conslole⼝令为789
3.2 ⽅案
配置交换机访问⼝令
实现此案例需要按照如下步骤进⾏。
3.3 步骤
步骤⼀:交换机密码配置
1)设置特权模式⼝令
包括两种典型的⽅法:
⽅法1(明⽂):enable password 密码字串
⽅法2(加密):enable cret 密码字串
⽐如,以下操作将明⽂⼝令设为123、加密⼝令设置为456:
1. sw2960(config)# enable password 123
2. sw2960(config)# enable cret 456
返回特权模式,查看运⾏配置可观察两种⼝令设置的差异:
1. sw2960(config)# end    //返回特权模式
2. sw2960#
3. %SYS-5-CONFIG_I: Configured from console by console
4.
5. sw2960# show running-config    //查看当前的运⾏配置
6. .. ..
7. !
8. hostname sw2960
9. !
10. enable cret 5 $1$mERr$pUBB1obEqpmMUtC1rBieD1        //加密⼝令设置
11. enable password 123    //⾮加密的⼝令设置
桑叶祛斑
12. !
13. !
14. .. ..
执⾏disable切换到⽤户模式,再执⾏enable切换到特权模式,此时会要求输⼊正确的⼝令才允许进⼊(如果明⽂/密⽂⼝令都设置了,则密⽂⼝令起作⽤):
时尚海报
1. sw2960> enable
2. Password:    //尝试明⽂⼝令123⽆效
3. Password: //输⼊密⽂⼝令456验证成功
4. sw2960#
步骤⼆:设置console⼝令
以下操作配置交换机console⼝令
1. Sw2960(config)#line console 0
2. Sw2960(config-line)#password 789 //设置consol⼝令
f大调和弦
3. Sw2960(config-line)#login
切换到⽤户模式,提⽰输⼊conslole⼝令才能再次进⼊到⽤户模式:
1. Sw2960(config-line)#end
2. Sw2960#
3. %SYS-5-CONFIG_I: Configured from console by console
4. Sw2960#exit
5. Sw2960 con0 is now available
6. Press RETURN to get started.
7. Ur Access Verification
8. Password:
步骤三:清空设备配置
1. Switch(config)#exit
出气筒2. Switch#write
3. Switch#era startup-config
4. Erasing the nvram filesystem will remove all configuration files! Continue? [confirm] //此时系统询问是否确定删除,按回车即可
5. [OK]
6. Era of nvram: complete
步骤四:重启设备检测配置状况
1. Switch#reload
2. Proceed with reload? [confirm] //此时系统询问是否确定重启,按回车即可

本文发布于:2023-06-26 15:13:18,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1055895.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:配置   交换机   模式   查看   设备
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图