分享

第二讲:命令行的操作方法-show命令的应用

 Teacher_Lin 2020-02-28

注意:只能在用户模式和特权模式下使用;

注意:在模拟器中的其他模式下使用“show”命令时,需借助“do”命令,但是在该模式下,不能使用帮助信息。

Router#show version  //查看该设备的版本信息

Cisco IOS Software, C2900 Software (C2900-UNIVERSALK9-M), Version 15.1(4)M4, RELEASE SOFTWARE (fc2)

Technical Support: http://www./techsupport

Copyright (c) 1986-2012 by Cisco Systems, Inc.

Compiled Thurs 5-Jan-12 15:41 by pt_team

Router#show running-config  //查看该设备的配置信息,存在running-config中的配置命令,并没有保存到该设备中,当设备重新启动后,running-config中的配置信息,将丢失。若该配置信息不丢失,必须将running-config中的配置信息保存到startup-config中。

Building configuration...

Current configuration : 691 bytes

Router#show startup-config //查看该设备的启动时的配置命令。

startup-config is not present

Router#

注意:正常情况下,running-config中的配置信息与startup-config中的配置信息是相同的。

Router#copy running-config  startup-config //将该设备中的配置信息保存到启动信息中。

Destination filename [startup-config]?

Building configuration...

[OK]

Router#write  //默认将running-config的信息保存到startup-config中。

Building configuration...

[OK]

Router#copy running-config ? //保存信息的多的位置。

flash: Copy to flash file  //在每一台网络设备上都有自己的闪存。

ftp: Copy to current system configuration

startup-config Copy to startup configuration

tftp: Copy to current system configuration

Router#show  history ? //查看在该设备上,当前的历史操作记录。

show version

en

conf t

Router#show interfaces  查看该设备上所有接口的详细信息

GigabitEthernet0/0 is administratively down, line protocol is down (disabled)

分析:“administratively down”代表该接口处于管理关闭状态,也就是说“该接口未打开”;

“line protocol is down”代表该接口上未连接设备,或所连接的设备未启动。

Router#terminal history size ?

<0-256> Size of history buffer  //历史记录最多可以保存256条;

Router#terminal history size 50  //设置该设备存储配置历史记录为50条。

注意:在实际工作中,一般不修改该项,

Router#show interfaces gigabitEthernet 0/0 //查看制定接口的状态。

GigabitEthernet0/0 is administratively down, line protocol is down (disabled)

Router#show interfaces gigabitEthernet 0/0 switchport //查看该接口的交换信息。

% Gig0/0 is not a switchable port  //提示该接口不是交换端口。

Router#show ip route  //查看该设备的路由信息

Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGP

D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area

N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2

E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP

i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area

* - candidate default, U - per-user static route, o - ODR

P - periodic downloaded static route

Gateway of last resort is not set

注意:

“L”代表的是该设备的信息;

“C”代表的是直连路由信息;“直连路由:是与该设备直接相连的IP路由信息。”

“S”代表的是静态路由;“静态路由:需要手动添加和删除”;

“R”代表的是RIP路由信息;

“*”代表的是默认路由;

Router#show ip route ? //查看某一固定路由协议的路由信息。

WORD Network to display information about or hostname

bgp Border Gateway Protocol (BGP)

connected Connected

eigrp Enhanced Interior Routing Protocol (EIGRP)

ospf Open Shortest Path First (OSPF)

rip Routing Information Protocol (RIP)

static Static routes

summary Summary of all routes

<cr>

Switch#show interfaces trunk  //查看该设备上的TRUNK链路信息

Port Mode Encapsulation Status    Native vlan

Fa0/1 on    802.1q      trunking   1

//上句说明F0/1的工作模式为“trunking”,标记的VLAN信息是“VLAN 1”,封装的协议是“802.1q”;

Port Vlans allowed on trunk

Fa0/1 1-1005

//上句说明“在f0/1上,允许VLAN 1到VLAN 1005的所有VLAN 信息通过该接口。”

Port Vlans allowed and active in management domain

Fa0/1 1

Port Vlans in spanning tree forwarding state and not pruned

Fa0/1 none

Switch#

Switch#show vlan brief //查看该设备上vlan划分的详细信息,

VLAN Name Status Ports

1 default active Fa0/2, Fa0/3, Fa0/4, Fa0/5

Fa0/6, Fa0/7, Fa0/8, Fa0/9

Fa0/10, Fa0/11, Fa0/12, Fa0/13

Fa0/14, Fa0/15, Fa0/16, Fa0/17

Fa0/18, Fa0/19, Fa0/20, Fa0/21

Fa0/22, Fa0/23, Fa0/24, Gig0/1

Gig0/2

1002 fddi-default active

1003 token-ring-default active

1004 fddinet-default active

1005 trnet-default active

Switch#

通过以上命令,可以看出,该交换机上的所有接口都处于VLAN 1中,而且状态是“active”,即是活动状态。

Switch#show ip interface brief //查看所有接口的状态信息

Interface      IP-Address  OK?  Method Status  Protocol

FastEthernet0/1 unassigned YES  manual up      up

FastEthernet0/2 unassigned YES  manual down    down

五、错误提示信息

Router(config)#int g0/0

Router(config-if)#ip addess 192.168.1.1 255.255.255.0

^

% Invalid input detected at '^' marker.

注意:当命令输入错误时,系统会在错误附近用“^”标注出。

    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多