Cisco Packet Tracer模拟器

1、路由器

 

2、路由器启动过程

1)、加电自检

2)、congflash查找和加载IOS

3)、从NVRAM查找和装载启动配置文件

 

3、路由器命令行CLI

Router>     用户模式
Router>enable 
Router#     特权模式
Router#configure terminal
Router(config)# 全局配置模式
R1(config)#interface fastEthernet 0/0
R1(config-if)#    接口模式

 

 

4、更改路由器主机名、模式退出切换

Router(config)#hostname R1

R1(config-if)#ip  address  192.168.1.1 255.255.255.0
R1(config-if)#no shutdown

 

R1(config)#int f0/0
R1(config-if)#exit
R1(config)#exit    一级一级退出
R1#
R1(config)#int f0/0
R1(config-if)#end  直接退出到特权
R1#   
R1(config)#int f0/0
R1(config-if)#^Z         快捷键"Ctrl+C "或者 “Ctrl+Z”
R1#

 

 

R1(config)#enable password iLync 给特权模式设置明文密码
R1(config)#enable secret cisco 设置加密口令

R1# sh run 查看当前配置
R1# sh start 查看启动配置文件
R1# copy run start 保存配置 

R1# write 保存配置

 

版权声明:本文为zhangxun1原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/zhangxun1/articles/7493619.html