📜  cisco 保存运行配置 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:14:09.353000             🧑  作者: Mango

Cisco 保存运行配置 - Shell/Bash

在 Cisco 路由器或交换机中,保存配置分为两个步骤:

  1. 保存当前操作的配置到运行配置中
  2. 将运行配置保存到 NVRAM,以便下次启动时可以加载

以下是在 Shell/Bash 中执行这些步骤的方法:

保存到运行配置
# 保存到运行配置
router(config)# end
router# copy running-config startup-config

上面的命令将运行配置复制到 NVRAM。

其它常见操作
Show running-config

要查看当前运行配置,请在 CLI 中执行以下命令:

router# show running-config
Show startup-config

要查看保存在 NVRAM 中的默认配置,请在 CLI 中执行以下命令:

router# show startup-config
Copy running-config to TFTP server

要将配置保存到 TFTP 服务器,请在 CLI 中执行以下命令:

router(config)# ip tftp source-interface <interface>
router# copy running-config tftp://<server>/<filename>

上面的命令将运行配置复制到 TFTP 服务器,其中 <interface> 是源接口,<server> 是 TFTP 服务器 IP 地址,<filename> 是要保存的文件名。

总结

以上是在 Shell/Bash 中保存 Cisco 运行配置的方法。请确保您的 CLI 会话具有正确的特权级别,否则可能无法执行某些命令。