有没有一种简单的方法可以进行“内联”操作?比较文件内的部分(如思科配置文件中的接口)?

发布于 2024-12-25 18:46:47 字数 307 浏览 1 评论 0原文

在交换机的 Cisco 配置文件中,每个端口都有自己的部分。该部分描述了如何配置该端口。

有没有办法比较所有这些部分 - 基于所有端口总数或刀片。

以下是一个端口的示例: 接口 千兆以太网3/5 描述 6509l1007-3/05 交换机端口 交换机端口访问 VLAN 660 交换机端口模式访问 MTU 9216 没有记录事件链接状态 无 snmp 陷阱链路状态 生成树 portfast !

下一个端口是“接口 GigabitEthernet3/6”。

我正在寻找一种方法来查看哪些设置是常见的以及哪些设置是独特的。

In a Cisco configuration file for a switch each port has its own section. That section describes how that port is configured.

Is there a way to compare all of those sections - based either on all ports total, or by blade.

Here is one port for an example:
interface GigabitEthernet3/5
description 6509l1007-3/05
switchport
switchport access vlan 660
switchport mode access
mtu 9216
no logging event link-status
no snmp trap link-status
spanning-tree portfast
!

The next port would be "interface GigabitEthernet3/6".

I am looking for a way to see what settings are common and which settings are unique.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一生独一 2025-01-01 18:46:47

据我所知,没有内置工具可以执行此操作。

您可以使用 show running-config all 显示默认设置以及显式配置的设置;这至少会为您提供每个接口的标准输出线数,可以更轻松地进行比较。

如果您的 AAA 设置允许,您可以尝试类似 plink (命令-putty 的线路接口),这将允许您编写连接、登录和执行交换机命令的脚本。可以保存生成的输出以供分析或在脚本中处理。

To my knowledge there are no tools built-in to do this.

You can use show running-config all to display the default settings as well as those explicity configured; this would at least give you a standard number of output lines per interface which could be compared more easily.

If your AAA setup allows it, you might try something like plink (command-line interface to putty) which would allow you to script connection, login and execution of commands os the switch. The resulting output could be saved for analysis or dealt with in the script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文