路由器基本命令

路由器基本命令_blank

Router>enable                                  #进入特权模式

Router#configure terminal   #进入全局配置模式

Enter configuration commands, one per line.  End with CNTL/Z.

Router(config)#interface f0/0   #接口模式

Router(config-if)#ip address 192.168.10.5 255.255.255.0                    #配置接口ip

Router(config-if)#no shutdown                     #开启端口,路由器默认端口是关闭的

Router(config-if)#enable password asd.123            # 设置特权模式密码,密码明文的

Router(config)#hostname zh1    #配置路由器名称

zh1(config)#line vty 0 10                          #配置允许同时telnet登录的个数

zh1(config-line)#password asd.123                   #配置telnet登录密码

zh1(config-line)#login 

zh1(config)#no ip domain-lookup                    #取消打错命令时的dns查询

zh1(config)#enable secret 123.asd #设置加密的特权模式密码

如下图:

路由器基本命令_border_02

如下图:在电脑上客户端可以通过telnet 登录管理路由器

路由器基本命令_target_03

zh1#show running-config                     #显示当前运行的配置

Building configuration...

Current configuration : 568 bytes

!

version 12.2

no service timestamps log datetime msec

no service timestamps debug datetime msec

no service password-encryption

!

hostname zh1

!

!

!

enable secret 5 $1$mERr$lxYQaUOngn1pV8G5q.zVZ.

enable password asd.123

!

!

!

!

!

no ip domain-lookup

!

!

!

!

!

!

interface FastEthernet0/0

ip address 192.168.10.5 255.255.255.0

duplex auto

speed auto

!

interface FastEthernet0/1

no ip address

duplex auto

speed auto

shutdown

!

ip classless

!

!

!

!

!

!

!

line con 0

line vty 0 4

password asd.123

login

line vty 5 10

password asd.123

login

!

!

!

End

zh1#copy running-config startup-config                  #将当前用户正在运行配置,复制                                                     为启动配置文件,保存

zh1#write                                           # 和上面的命令一样的效果

zh1(config)#exit                                     

zh1#   # exit 返回上一模式,

任何模式下 按 “Ctrl+Z”,可立刻返回到特权模式,如下图:

路由器基本命令_border_04

如图:两个客户端处于不同网络,需要设置默认网关才可访问

路由器基本命令_路由器_05

路由器基本命令_alt_06

路由器基本命令_target_07

如下图:pc0和pc1可相互ping通

路由器基本命令_border_08