Cisco

在 cisco IOS conf 模式下顯示特定塊的程式碼?

  • February 11, 2015

我經常使用 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

感謝您的任何建議!

我認為您正在尋找的是:

router# show running-config interface FastEthernet0/1

這將僅顯示埠 Fa0/1 的配置。


當您處於配置模式時,您可以使用do關鍵字來呼叫show命令:

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

嘗試

show running-config | section ?

例如

show running-config | section router bgp

它的工作方式與include語句類似,但也列出了所有子命令。

引用自:https://serverfault.com/questions/573358