CLI的使用与IOS基本命令

1、实验目的

通过本实验可以掌握:

  • CLI的各种工作模式个CLI各种编辑命令
  • "?" 和【Tab】键使用方法
  • IOS基本命令
  • 网络设备访问限制
  • 查看设备的相关信息

2、实验拓扑

CLI的使用与IOS基本命令使用拓扑如下图所示。

3、实验步骤

(1)CLI模式的切换

复制代码
Router>enable     //进入特权模式
Router#
Router#disable    //返回用户模式
Router>

(2)"?" 和【Tab】键的使用方法

以配置路由器系统时钟为例来说明"?" 和【Tab】键的作用。

复制代码
Router>enable 
Router#clok
Translating "clok"...domain server (255.255.255.255)
% Unknown command or computer name, or unable to find computer address
//输入了未知的命令或计算机名,或者不能找到计算机地址,也就是DNS解析失败

【提示】

如果在特权模式输入了错误的命令,路由器会认为是域名,将会查找 DNS服务器试图解析该域名,由于找不到 DNS服务器,会等很长时间,此时用【Ctrl】+【Shift】+6组合键可以立即退出。全局配置模式下可以通过no ip domain-lookup命令禁止路由器进行 DNS解析。

复制代码
Router#cl?
clear  clock  
Router#clock
% Incomplete command.
Router#clock ?
  set  Set the time and date
Router#clock set ?
  hh:mm:ss  Current Time
Router#clock set 15:00:00 ?
  <1-31>  Day of the month
  MONTH   Month of the year
Router#clock set 15:00:00 29 ?
  MONTH  Month of the year
Router#clock set 15:00:00 29 3 ?
% Unrecognized command
Router#clock set 15:00:00 29 3 
                             ^
% Invalid input detected at '^' marker.
相关推荐
NRatel26 分钟前
Unity游戏打包——iOS打包pod的重装和使用
游戏·unity·ios·打包
2501_916013745 小时前
iOS 文件管理与 uni-app 性能优化实战 多工具协作的完整指南
android·ios·性能优化·小程序·uni-app·iphone·webview
Digitally10 小时前
6 种无需 iTunes 将照片从 iPhone 传输到电脑
ios·电脑·iphone
2501_9151063216 小时前
移动端网页调试实战,iOS WebKit Debug Proxy 的应用与替代方案
android·前端·ios·小程序·uni-app·iphone·webkit
游戏开发爱好者81 天前
基于uni-app的iOS应用上架,从打包到分发的全流程
android·ios·小程序·https·uni-app·iphone·webview
无知的前端1 天前
一文精通- iOS隐私权限
ios·程序员·app
不自律的笨鸟1 天前
iPhone 17 Pro 全新配色确定,首款折叠屏 iPhone 将配备 Touch ID 及四颗镜头
ios·iphone
深盾科技1 天前
探索Swift Package Manager:全面指南
开发语言·ios·swift
vayy2 天前
uniapp中 ios端 scroll-view 组件内部子元素z-index失效问题
前端·ios·微信小程序·uni-app
我现在不喜欢coding2 天前
为什么runloop中先处理 blocks source0 再处理timer source1?
ios·面试