发布网友 发布时间:2022-03-03 11:10
共2个回答
热心网友 时间:2022-03-03 12:39
思科的路由器的用户界面有以下几种:
1.用户执行模式(User EXEC Mode)
2.特权执行模式(Privileged EXEC Mode)
3.全局配置模式(Global Configuration Mode)
4.监控模式(ROM Monitor Mode)
5.安装模式(Setup Mode)
6.Boot模式(RXBoot Mode)
常用的是1、2和3。
路由器一开机,进去的那个界面提示符是“>”,比如像这样子哈,“Router>”这个就是用户执行模式,也是最低级别的模式,它只允许有限数量的基本监视命令,该模式下不允许任何会改变路由器配置的命令。
而要配置具体的东东就得从全局配置模式下进入到相应的子配置模式下。比如:
Router(config-if)# //具体的接口配置
Router(config-line)# //line模式配置,比如console和vty这些哈
Router(config-router)# //路由器模式,比如配置路由协议时
而相应的命令见下面哈:
Router>
Router>enable //将从用户执行模式进入到特权执行模式
Password: //如果对特权执行模式设置了密码的话,进入时还得输入密码哈
Router#
Router#exit //将从特权执行模式退回到用户执行模式
Router>
//下面我演示如何从用户执行模式一步步到达全局配置模式哈:
Router>enable
Router#
Router#configure terminal
Router(config)#
user exec mode ——limited to basic monitoring commands
privileged exec mode ——provide access to all other router commands
global configuration mode ——commands that affect the entire system
specific configuration mode ——commands that affect interfaces/processes only
set mode —— interactive configuration dialog
热心网友 时间:2022-03-03 13:57
没错啊,你需要什么需求看追问这类代码详解