CCNA(Stand-ALONE)Lab 18-Saving Router configurations

简介:
Objective: Learn how to back up a router’s configuration in case the configuration is accidentally deleted or the router fails.
Lab Equipment: Router 4 from the eRouters menu and PC 1 from the eStations menu
1. Connect to Router 4, and change the host name to Tampa.
Router>enable
Router#conf t
Router(config)#hostname Tampa
Tampa(config)#

2. Assign the IP address of 24.37.2.1 255.255.255.0 to the Ethernet 0 interface, and then enable the interface.
Tampa(config)#interface ethernet 0
Tampa(config-if)#ip address 24.37.2.1 255.255.255.0
Tampa(config-if)#no shutdown

3. Connect to PC 1 by selecting it from the eStations menu. Type the command that will allow you to configure PC 1’s IP address and default gateway. Set the IP address to 24.37.2.252 with a subnet mask of 255.255.255.0. Set the default gateway to Tampa’s Ethernet 0 IP address (24.37.2.1).
C:> winipcfg

4. From PC 1, ping Tampa’s Ethernet 0 interface to make sure connectivity exists to the default gateway.
C:> ping 24.37.2.1

5. Connect to Tampa again, exit interface configuration mode, and then exit global configuration mode. Copy the running configuration to the TFTP server on PC 1.
Tampa(config-if)#exit
Tampa(config)#exit
Tampa# copy running-config tftp

6. When prompted for the address or name of the TFTP server, provide PC 1’s IP address (24.37.2.252), press ENTER, and then provide the name of the configuration file that will be stored on PC 1. Name the configuration file Tampa_config.
24.37.2.252
Tampa_config

After you press ENTER, the router will take a few seconds to establish the connection;then you will see it copy the configuration file and tell you how long it took.

7. Next, connect back to PC 1 and type the show tftp-configs command in order to display the configurations that are stored on the TFTP server. (Note: This command does not work on real PCs, just in the NetSim program.)
C:>show tftp-configs

If you see the configuration in the list, you have successfully completed the lab.
Note: Lab 19 builds on this lab’s configuration. To complete Lab 19, please continue with the instructions for Lab 19 in this lab. If you load another lab from the Lab Navigator,your changes will be lost and Lab 19 will not work properly.
**********************************************




本文转自redking51CTO博客,原文链接: http://blog.51cto.com/redking/72324 ,如需转载请自行联系原作者

相关文章
|
2天前
|
云安全 人工智能 自然语言处理
|
7天前
|
人工智能 Java API
Java 正式进入 Agentic AI 时代:Spring AI Alibaba 1.1 发布背后的技术演进
Spring AI Alibaba 1.1 正式发布,提供极简方式构建企业级AI智能体。基于ReactAgent核心,支持多智能体协作、上下文工程与生产级管控,助力开发者快速打造可靠、可扩展的智能应用。
659 17
|
10天前
|
数据采集 人工智能 自然语言处理
Meta SAM3开源:让图像分割,听懂你的话
Meta发布并开源SAM 3,首个支持文本或视觉提示的统一图像视频分割模型,可精准分割“红色条纹伞”等开放词汇概念,覆盖400万独特概念,性能达人类水平75%–80%,推动视觉分割新突破。
728 57
Meta SAM3开源:让图像分割,听懂你的话
|
7天前
|
搜索推荐 编译器 Linux
一个可用于企业开发及通用跨平台的Makefile文件
一款适用于企业级开发的通用跨平台Makefile,支持C/C++混合编译、多目标输出(可执行文件、静态/动态库)、Release/Debug版本管理。配置简洁,仅需修改带`MF_CONFIGURE_`前缀的变量,支持脚本化配置与子Makefile管理,具备完善日志、错误提示和跨平台兼容性,附详细文档与示例,便于学习与集成。
328 116
|
10天前
|
机器学习/深度学习 人工智能 自然语言处理
AgentEvolver:让智能体系统学会「自我进化」
AgentEvolver 是一个自进化智能体系统,通过自我任务生成、经验导航与反思归因三大机制,推动AI从“被动执行”迈向“主动学习”。它显著提升强化学习效率,在更少参数下实现更强性能,助力智能体持续自我迭代。开源地址:https://github.com/modelscope/AgentEvolver
482 37
|
22天前
|
域名解析 人工智能
【实操攻略】手把手教学,免费领取.CN域名
即日起至2025年12月31日,购买万小智AI建站或云·企业官网,每单可免费领1个.CN域名首年!跟我了解领取攻略吧~
|
1天前
|
Rust 安全
掌握Rust文件读取(从零开始的IO操作指南)
本教程手把手教你用Rust读取文件,涵盖`read_to_string`一次性读取和`BufReader`逐行高效读取,适合初学者掌握安全、高效的Rust文件操作,助你轻松入门系统编程。
147 113