交换机命令行的四种格式:
用户模式 Switch>【enable,进入特权模式】
特权模式 Switch#【config termal,进入全局模式】
全局配置模式 Switch(config)#【inter ?进入相应的端口】
端口模式 Switch(config-if)#【exit退到上一级,end结束特权模式】
查看当前生效的配置信息
Switch#show running-config
一)配置交换机的管理IP地址
Switch(config)#interface vlan 1 //默认情况下交换机所有端口都处于 vlan 1 当中
Switch(config-if)#ip address 192.168.1.1 255.255.255.0 //配置交换机管理IP地址
Switch(config-if)#no shutdown //开启Interface Vlan1
Switch(config-if)#exit
二)设置进入特权模式的密码
Switch(config)#enable password 123456 //设置进入特权模式的密码
Switch(config)#line console ?
<0-0> First Line number
三)设置通过console端口连接设备的密码
Switch(config)#line console 0
Switch(config-line)#password asdf //设置通过console端口连接设备的密码
Switch(config-line)#login
Switch(config-line)#exit
Switch(config)#line vty ?
<0-15> First Line number
四)设置telnet远程登录密码
Switch(config)#line vty 0 4
Switch(config-line)#password abc123 //设置telnet远程登录密码
Switch(config-line)#login
Switch(config-line)#end
五)查看配置情况
Switch#show running-config
重新登陆:先asdf->enable->123456
六)给主机加上IP地址192.168.0.2,网关:192.168.0.1
使用telnet检测:abc123->123456
【提示:telnet的不是主机的IP地址,而是网关。】
如果交换机换作路由器。其操作如下:
Router#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#interface fa0/0 Router(config-if)#no shutdown //路由器端口默认关闭,开启fa0/0端口 Router(config-if)#exit Router(config)#hostname R1 //修改路由器主机名 R1(config)#enable password 123456 //设置进入特权模式密码 R1(config)#line vty 0 4 R1(config-line)#password abc123 //设置telnet远程登录密码 R1(config-line)#login R1(config-line)#exit R1(config)#interface fa0/0 R1(config-if)#ip address 192.168.1.1 255.255.255.0 //配置路由器的管理IP地址 R1(config-if)#no shutdown //开启端口 R1(config-if)#end