思科路由器初学习之show running-config
载入2600的ios,新建一个路由器,右击路由器,选择console
输入enable进入特权模式 www.zhishiwu.com
输入show running-config
R3#show running-config
Building configuration...
Current configuration:
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname R3
!
!
!
!
!
!
memory-size iomem 15
ip subnet-zero
no ip domain-lookup
!
!
!
!
interface Ethernet0/0
no ip address
shutdown
!
ip classless
no ip http server
!
!
line con 0
exec-timeout 0 0
logging synchronous
transport input none
line aux 0
line vty 0 4
!
no scheduler allocate
end
解释:
Building configuration...
Current configuration:
!
version 12.1
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname R3
!
!
!
!
!
!
memory-size iomem 15
ip subnet-zero
no ip domain-lookup
!
!
!
!
interface Ethernet0/0
no ip address
shutdown
!
ip classless
no ip http server
!
!
line con 0
exec-timeout 0 0
logging synchronous
transport input none
line aux 0
line vty 0 4
!
no scheduler allocate
end
以上信息是指路由器由正在使用的配置文件(存放在RAM中),通常配置文件为几百到几千字节
version 12.1 指路由器软件版本
service timestamps debug uptime 指路由器服务器默认开启时间
service timestamps log uptime 指路由器登录时间
no service password-encryption 指该路由器没有设置加密密码
hostname R3 指路由器名是R3
memory-size iomem 15 iomem=input output memery 显示所有内存缓冲区映射到物理内存的设备,和分配给每个缓冲区的物理内存地址为15
ip subnet-zero 指子网零汇聚
no ip domain-lookup 指该路由没配置ip
interface Ethernet0/0 指该路由器的接口名 www.zhishiwu.com
no ip address 指该接口没有配置ip
shutdown 指该接口状态为关闭
ip classless 指使用的是无类ip
no ip http server 指没有http服务器
line con 0
exec-timeout 0 0
logging synchronous
transport input none
line aux 0
line vty 0 4
指远程登录虚拟路径数
no scheduler allocate
end
scheduler allocate:调度程序分配。因为当大量的数据包要路由器快速转发情况下,可能路由器花费大量的时间处理网络接口的中断,导致其他的任务无法正常工作。为了避免这种情况,可以使用scheduler interval或scheduler allocate命令路由器在规定的时间间隔内停止处理中断去处理其他事件。这种方式的副作用很小,不会影响网络的正常传输。