导读 | 你是某公司新进的网管,公司要求你熟悉网络产品,首先要求你登录路由器,了解、掌握路由器的命令行操作;作为网络管理员,你第一次在设备机房对路由器进行了初次配置后,希望以后在办公室或出差时也可以对设备进行远程管理,现要在路由器上做适当配置。 |
技术原理
路由器的管理方式基本分为两种:带内管理和带外管理。通过路由器的 Console口管理路由器属于带外管理,不占用路由器的网络接口,其特点是需要使用配置线缆,近距离配置。第一次配置时必须利用 Console 端口进行配置。
实验步骤
新建 packet tracer 拓扑图
(1)用标准 console 线缆用于连接计算机的串口和路由器的 console 上。在计算机上启用超级终端,并配置超级终端的参数,是计算机与路由器通过 console 接口建立连接;
(2)配置路由器的管理的 IP 地址,并为 Telnet 用户配置用户名和登录口令。配置计算机的 IP 地址(与路由器管理 IP 地址在同一个网段),通过网线将计算机和路由器相连,通过计算机 Telnet 到路由器上对交换机进行查看;
(3)更改路由器的主机名;
(4)擦除配置信息,保存配置信息,显示配置信息;
(5)显示当前配置信息;
(6)显示历史命令。
实验设备
Router_2811 1 台;PC 1 台;交叉线;配置线
说明: 交叉线:路由器与计算机相连 路由器与交换机相连
直连线:计算机与交换机相连
PC IP: 192.168.1.2 Submask: 255.255.255.0 Gageway:192.168.1.1 Router 图形化:界面开启 FastEthernet0/0 端口 PC 终端 en conf t hostname R1 enable secret 123456 #设置特权密码 exit exit en password:此时输入密码,输入的密码不显示 conf t line vty 0 4 password jaking #设置 telnet 密码 login #允许登录 exit interface fa 0/0 ip address 192.168.1.1 255.255.255.0 no shut end PC CMD ipconfig ping 192.168.1.1 telnet 192.168.1.1 password:jaking en password:123456 show running
实战演练
配置路由器 Router>en Router#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#hostname R1 R1(config)#enable secret 123456 R1(config)#exit R1# %SYS-5-CONFIG_I: Configured from console by console R1#password Translating "password"...domain server (255.255.255.255) % Unknown command or computer name, or unable to find computer address R1#exit R1 con0 is now available Press RETURN to get started. R1>en Password: R1#conf t Enter configuration commands, one per line. End with CNTL/Z. R1(config)#line vty 0 4 R1(config-line)#password jaking R1(config-line)#login R1(config-line)#exit R1(config)#int fa 0/0 R1(config-if)#ip address 192.168.1.1 255.255.255.0 R1(config-if)#no shut %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up R1(config-if)#end R1# %SYS-5-CONFIG_I: Configured from console by console R1#
PC端测试
PC>ipconfig IP Address......................: 192.168.1.2 Subnet Mask.....................: 255.255.255.0 Default Gateway.................: 192.168.1.1 PC>ping 192.168.1.1 Pinging 192.168.1.1 with 32 bytes of data: Reply from 192.168.1.1: bytes=32 time=247ms TTL=255 Reply from 192.168.1.1: bytes=32 time=4ms TTL=255 Reply from 192.168.1.1: bytes=32 time=6ms TTL=255 Reply from 192.168.1.1: bytes=32 time=6ms TTL=255 Ping statistics for 192.168.1.1: Packets: Sent = 4, Received = 4, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 4ms, Maximum = 247ms, Average = 65ms PC>telnet 192.168.1.1 Trying 192.168.1.1 ...Open User Access Verification Password: jaking R1>en Password: 123456 R1#show running Building configuration... Current configuration : 722 bytes ! version 12.2 no service timestamps log datetime msec no service timestamps debug datetime msec no service password-encryption ! hostname R1 ! ! ! enable secret 5 $1$mERr$H7PDxl7VYMqaD3id4jJVK/ ! ! ! ! ! ! ! ! --More--
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/121907.html