Cisco(思科)远程登录路由器
一、拓扑图
二、实验步骤
1.先配置好路由器,配置如下:
先进入配置电脑的终端进行配置操作
Cisco在模拟器中路由器有两个接口interface f0/0 、interface f0/1
小编在这里只实现配置一个接口interface f0/0,所以远程登录的电脑也应该连接这个接口
Router>
Router> //这个是用户模式
Router>enable // enable用来进入特权模式Router#
Router#conf t // conf t用来进入配置模式Router(config)#
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#enable pass
Router(config)#enable password 123 //给进入特权模式设置密码
Router(config)#interface f0/0 //进入interface f0/0接口
Router(config-if)#ip address 192.168.1.1 255.255.255.0 //给这个接口配置一个ip
Router(config-if)#no shutdown //激活接口
Router(con