思科路由器模式
路由器是第 3 层设备,用于将数据包从一个网络转发到另一个网络。它根据目标 IP 地址和路由表中的条目通过其端口之一转发数据包。通过使用路由表,它可以找到源网络和目标网络之间的优化路径。
让我们讨论一下 Cisco 路由器的不同模式。
路由器模式 –
路由器中主要有5种模式:
- 用户执行模式——
一旦出现界面向上消息并按回车,将弹出路由器>提示。这称为用户执行模式。此模式仅限于某些监控命令。 - 特权模式 –
当我们在用户模式下键入 enable 时,我们进入特权模式,我们可以在其中查看和更改路由器的配置。不同的命令,如 show running-configuration、show IP interface brief 等可以在此模式下运行,用于故障排除。 - 全局配置模式——
当我们在用户模式下键入配置终端时,我们将进入全局配置模式。在这些模式下输入的命令称为全局命令,它们会影响路由器的运行配置。在这种模式下,通过提供用户名和密码在路由器上创建本地数据库等不同的配置可以设置启用和秘密密码等。 - 接口配置模式——
在这种模式下,只进行接口的配置。为接口分配 IP 地址、启动接口是此模式下的常见任务。 - ROMMON 模式 –
当我们中断路由器的启动过程时,我们可以进入该模式。一般我们在密码恢复过程或在TFTP服务器等设备上备份IOS时进入该模式。它就像 PC 的 BIOS 模式。
不同模式的进入和退出:Modes Access method prompt Exit method user execution mode login router> use logout command privilege mode use enable command in user mode router# use disable command to enter user mode global configuration mode use configure terminal command router(config)# use the exit command to enter into privilege mode Interface mode use interface command and specify an interface in global configuration mode router(config-if)# use the exit command to enter into global configuration mode or use the end command to enter into privilege mode. ROMMON mode press ctrl+break key while boot process or use reload command in privilege mode. ROMMON 1> use continue command
配置 -
用户执行模式:
router>
从用户执行模式进入特权模式:
router>enable
router#
从特权模式退出到用户执行模式:
router#disable
router>
从特权模式进入全局配置模式:
router#configure terminal
router(config)#
从全局配置模式退出到特权模式:
router(config)#exit
router#
从全局配置模式进入接口模式。这里我们必须指定路由器的接口。
router(config)#interface fa0/0
router(config-if)#
从接口模式退出到全局配置模式。
router(config-if)#exit
router(config)#
从接口模式退出到特权模式。
router(config-if)#end
router#
从特权模式进入 ROMMON 模式。
router#reload