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

前端之家收集整理的这篇文章主要介绍了在cisco IOS conf模式下显示特定块的代码?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我经常使用Fortigate设备,在CLI中可以导航到一个节点(比如配置系统全局然后输入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

谢谢你的建议!

解决方法

我认为你在寻找的是:
router# show running-config interface FastEthernet0/1

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

在配置模式下,可以使用do关键字来调用show命令:

router(config)# do show running-config interface FastEthernet0/1
原文链接:https://www.f2er.com/iOS/335482.html

猜你在找的iOS相关文章