在 cisco IOS conf 模式下显示特定块的代码吗?

在 cisco IOS conf 模式下显示特定块的代码吗?

我经常使用 Fortigate 设备,在 CLI 中可以导航到一个节点(然后config system global输入show它就会显示该块的配置)。

在 IOS 中我不知道如何做到这一点,我知道我可以退出conf term模式并使用,show run但配置可能很长。

有可能吗:

router>en
router#conf t
router(config)#interf f0/1

键入一个仅显示配置部分的命令,如下所示:

interface FastEthernet0/1
 no ip address
 speed auto
 full-duplex
 pppoe enable group global
 pppoe-client dial-pool-number 1

谢谢您的任何建议!

答案1

我认为您正在寻找的是:

router# show running-config interface FastEthernet0/1

这将仅显示端口 Fa0/1 的配置。


当你处于配置模式时,你可以使用do关键字来调用show命令:

router(config)# do show running-config interface FastEthernet0/1

答案2

尝试

show running-config | section ?

例如

show running-config | section router bgp

其工作原理与语句类似include,但也列出了所有的子命令。

答案3

另一个有用的工具是管道命令|include,因此:

router# show running-config | include interface

将显示运行配置中包含单词 interface 的所有行

相关内容