密码配置
思科的交换机和路由器的密码配置操作是一样的,这里介绍的是交换机中没有涉及到的,但是也可以使用的配置。
console密码
1 2 3 4 5 6 7 8 9 10 11 12 13 |
Switch Switch Switch(config) Switch(config-line) Switch(config-line) Switch(config-line) Switch(config-line) // 创建本地用户以后,从console口登录则需要输入用户名和密码 Switch(config) // 用户权限定义为 0-15 级,最高为15级 任何命令都可操作 Switch(config) Switch(config) |
远程ssh登录
今天看到网络上面介绍 telnet 登录是明文传输,建议采用 ssh
方式登录。这里就介绍一下ssh登录的方法
这里用模拟器测试一下发现,模拟器中支持 domain-name 配置的是三层交换机和路由器,二层交换机无法配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
Router(config) R1841(config) R1841(config) R1841(config) R1841(config) R1841(config) The name for the keys will be: R1841.router.com Choose the size of the key modulus in the range of 360 to 2048 for your General Purpose Keys. Choosing a key modulus greater than 512 may take a few minutes. How many bits in the modulus [512]: 1024 // 这里需要产生1024位的密钥因为ssh版本2需要位数较多 % Generating 1024 bit RSA keys, keys will be non-exportable...[OK] R1841(config) *3? 1 0:7:2.224: %SSH-5-ENABLED: SSH 1.99 has been enabled R1841(config) R1841(config) R1841(config) R1841(config-line) R1841(config-line) R1841(config-line) R1841(config) R1841(config-if) %LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up %LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up R1841(config-if) R1841(config-if) R1841(config) R1841 R1841(config) |
测试
使用pc连接路由器的f0/0接口,即可在命令行进行登录
1 2 3 4 5 6 7 8 9 10 |
// telnet 登录 PC>telnet 192.168.1.1 Trying 192.168.1.1 ...Open User Access Verification Username: cisco Password: // ssh登录 PC>ssh -l cisco 192.168.1.1 Open Password: |