二層交換機配置telnet
阿新 • • 發佈:2019-02-14
①配置管理IP
交換機預設的管理vlan是vlan1,為vlan1設定IP地址即可
Plain Text code ?
②為特權模式設定密碼
Plain Text code ?
③設定telnet
Plain Text code ?
④若將來希望在其他vlan上telnet這臺交換機還需要設定交換機的預設閘道器
Plain Text code ?
交換機預設的管理vlan是vlan1,為vlan1設定IP地址即可
Plain Text code ?
1 2 3 4 5 |
Switch>enable
Switch#configure terminal
Switch(config)#interface vlan 1
Switch(config-if)#ip address 192.168.1.1 255.255.255.0
|
②為特權模式設定密碼
Plain Text code ?
1 |
Switch(config)#enable password cisco //設定密碼為 cisco |
③設定telnet
Plain Text code ?
1 2 3 |
Switch(config)#line vty 0 4 //設定最多允許4個遠端使用者登陸
Switch(config-line)#password cisco //設定telnet密碼為 cisco
Switch(config-line)#login //開啟telnet
|
④若將來希望在其他vlan上telnet這臺交換機還需要設定交換機的預設閘道器
Plain Text code ?
1 |
Switch(config)#ip default-gateway 192.168.1.254 |