路由器常用命令

  • 格式:doc
  • 大小:57.00 KB
  • 文档页数:7

下载文档原格式

  / 17
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

cisco路由器常用命令

1:三大模式

router> 用户模式

router > enable 进入特权模式

router #

router > enable 进入全局配置模式

router #configure terminal

router (conf)#

2:其它模式

Router(config)#interface f1/0 进入接口配置模式Router(config-if)#

Router(config)#interface f1/0.1 进入子接口配置模式Router(config-subif)#

Router(config)#line console 0 进入line模式Router(config-line)#

Router(config)#router rip 进入路由模式Router(config-router)#

3:路由器命名

hostname routera,以routerA为例

router > enable

router #configure terminal

router(conf)#hostname routerA

routera (conf)#

4:配置各类密码

配置特权模式密码(使能口令)

enable password cisco,以cisco为例

router > enable

router #configure terminal

router(conf)#hostname routerA

routerA (conf)# enable password cisco

设置VTY(虚拟终端接口)密码

Router(config)#line vty 0 1

Router(config-line)#login

Router(config-line)#password 123

配置控制台密码

Router(config)#line console 0

Router(config-line)#password 123

Router(config-line)#login

5:对所有密码加密

Router(config)#service password-encryption

6:进入路由器某一端口

interface fastehernet 0/17,以17端口为例

router > enable

router #configure terminal

router(conf)#hostname routerA

routerA (conf)# interface fastehernet 0/17

routerA (conf-if)#

进入路由器的某一子端口

interface fastethernet 0/17.1 以17端口的1子端口为例

router > enable

router #configure terminal

router(conf)#hostname routerA

routerA (conf)# interface fastehernet 0/17.1

7:设置端口ip地址信息

router > enable

router #configure terminal

router(conf)#hostname routerA

routerA(conf)# interface fastehernet 0/17 以17端口为例

routerA (conf-if)#ip address 192.168.1.1 255.255.255.0

配置交换机端口ip和子网掩码

routerA (conf-if)#no shut

routerA (conf-if)#exit

8:查看命令 show

router > enable

router # show version 察看系统中的所有版本信息

show interface vlan 1 查看交换机有关ip 协议的配置信息show running-configure 查看交换机当前起作用的配置信息show interface fastethernet 0/1 察看交换机1接口具体配置和统计信息show mac-address-table 查看mac地址表

show mac-address-table aging-time 查看mac地址表自动老化时间

show controllers serial + 编号查看串口类型

show ip router 查看路由器的路由表

Router#show ip protocol 查看路由协议配置

Router#show flash 查看交换机或路由器中的flash信息Router#show clock 查看路由器当前时间

9:配置串口参数

两台路由器通过串口连接需要一个做为DTE,一个做为DCE。DCE设备要向DTE设备提供时钟频率和带宽。

DCE配置:

router>en

router #configure terminal

router (conf)#hostname routerA

routerA(conf)#interface serial 0/0

routerA(conf_if)#clock rate 64000 提供时钟频率为64000

routerA(conf_if)#bandwidth 64 提供带宽为64

DTE配置:路由器串口配置ip地址

router>en

router #configure terminal

router (conf)#hostname routerB

routerB(conf)#interface serial 0/0

routerB(conf_if)#ip address 192.168.1.1 255.255.255.0

10:静态路由的配置

命令格式:

Ip route [目标网段号][目标网段子网掩码][下一跳入口IP/本地接口] 其中:前面的IP代表内网IP,最后的代表网关IP,即路由IP routerA 1(config)#ip route 192.168.2.0 255.255.255.0 211.69.157.2 或routerA (config)#ip route 192.168.2.0 255.255.255.0 f0/0

11:配置默认路由

命令格式:Ip route 0.0.0.0 0.0.0.0[下一跳入口IP地址/本地接口]

18:配置路由器和交换机间的单臂路由

Router(config)#in f0/0.1 进入子接口模式Router(config-subif)#encapsulation dot1Q 20 封装802.1Q协议Router(config-subif)#ip address 192.168.3.1 255.255.255.0

Router(config-subif)#no shutdown

12:配置动态路由协议RIPV1,并标明其直接相连的网络

network +相邻网段