HOME > コンテンツリスト > ラボ・シナリオ for CCNA > [ < 前へ 次へ > ]

show version と show flash を確認する

Cisco の Catalyst スイッチには、CatOS を搭載しているものと、Cisco IOS を搭載しているものがあります。ただし、ほとんどの Catalyst スイッチは Cisco IOS を搭載しており、また、Cisco 試験も Cisco IOS を搭載しているものが対象ですので、本ラボ・シナリオでも Cisco IOS を搭載している Catalyst スイッチのみを取り扱っています。

Cisco IOS を搭載している Catalyst スイッチは、Ciscoルータとほとんど同じコマンドを使用します。

ネットワーク構成図

  1. スイッチの機種名、実行中の IOS のファイル名、インターフェイス情報を確認しなさい。
  2. Switch# sh version
    Cisco IOS Software, C2960 Software (C2960-LANBASEK9-M), Version 15.0(2)SE4, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Wed 26-Jun-13 02:49 by prod_rel_team
    
    ROM: Bootstrap program is C2960 boot loader
    BOOTLDR: C2960 Boot Loader (C2960-HBOOT-M) Version 12.2(35r)SE2, RELEASE SOFTWARE (fc1)
    
    Switch uptime is 1 minute
    System returned to ROM by power-on
    System image file is "flash:/c2960-lanbasek9-mz.150-2.SE4/c2960-lanbasek9-mz.150-2.SE4.bin"
    
    
    This product contains cryptographic features and is subject to United
    States and local country laws governing import, export, transfer and
    use. Delivery of Cisco cryptographic products does not imply
    third-party authority to import, export, distribute or use encryption.
    Importers, exporters, distributors and users are responsible for
    compliance with U.S. and local country laws. By using this product you
    agree to comply with applicable laws and regulations. If you are unable
    to comply with U.S. and local laws, return this product immediately.
    
    A summary of U.S. laws governing Cisco cryptographic products may be found at:
    http://www.cisco.com/wwl/export/crypto/tool/stqrg.html
    
    If you require further assistance please contact us by sending email to
    export@cisco.com.
    
    cisco WS-C2960-8TC-L (PowerPC405) processor (revision A0) with 65536K bytes of memory.
    Processor board ID FOC0000V00K
    Last reset from power-on
    1 Virtual Ethernet interface
    8 FastEthernet interfaces
    1 Gigabit Ethernet interface
    The password-recovery mechanism is enabled.
    
    64K bytes of flash-simulated non-volatile configuration memory.
    Base ethernet MAC Address       : 00:24:90:0A:00:00
    Motherboard assembly number     : 73-10611-07
    Power supply part number        : 341-0208-01
    Motherboard serial number       : FOC000000U5
    Power supply serial number      : LIT00000FMW
    Model revision number           : A0
    Motherboard revision number     : C0
    Model number                    : WS-C2960-8TC-L
    System serial number            : FOC0000V00K
    Top Assembly Part Number        : 800-28132-01
    Top Assembly Revision Number    : D0
    Version ID                      : V01
    CLEI Code Number                : COM8A00ARA
    Hardware Board Revision Number  : 0x01
    
    
    Switch Ports Model              SW Version            SW Image
    ------ ----- -----              ----------            ----------
    *    1 9     WS-C2960-8TC-L     15.0(2)SE4            C2960-LANBASEK9-M
    
    
    Configuration register is 0xF
    
    Switch#
    
    Cisco ルータ同様に、show version で、スイッチの現在実行中の情報を表示することができます。
    IOSのバージョンCisco IOS Software, C2960 Software (C2960-LANBASEK9-M), Version 15.0(2)SE4,
    RELEASE SOFTWARE (fc1)
    実行中のIOSのファイル名c2960-lanbasek9-mz.150-2.SE4.bin
    スイッチの機種名WS-C2960-8TC-L
    搭載しているインターフェイス8 FastEthernet interfaces
    1 Gigabit Ethernet interface
  3. Flash メモリ内に保存されている IOS ファイルを確認しなさい。
  4. Switch# sh flash:
    
    Directory of flash:/
    
        2  drwx         512   Mar 1 1993 00:56:24 +00:00  c2960-lanbasek9-mz.150-2.SE4
      570  -rwx         106   Mar 1 1993 01:51:24 +00:00  info
      571  -rwx        1048   Mar 1 1993 00:01:08 +00:00  multiple-fs
    
    27998208 bytes total (11726336 bytes free)
    Switch#
    Switch# dir flash:/c2960-lanbasek9-mz.150-2.SE4
    Directory of flash:/c2960-lanbasek9-mz.150-2.SE4/
    
        3  -rwx         534   Mar 1 1993 00:56:24 +00:00  info
        4  drwx        5632   Mar 1 1993 00:56:24 +00:00  html
      568  -rwx       66567   Mar 1 1993 01:10:17 +00:00  dc_default_profiles.txt
      569  -rwx    11949374   Mar 1 1993 01:10:30 +00:00  c2960-lanbasek9-mz.150-2.SE4.bin
    
    27998208 bytes total (11726336 bytes free)
    Switch#
    
    show flash も Cisco ルータと同様で、Flash メモリのサイズや Flash メモリ内の IOS ファイル名を確認できます。ただし、本 Catalyst スイッチの IOS は、Flash メモリにある c2960-lanbasek9-mz.150-2.SE4 というディレクトリ内に IOS が格納されているので、dir コマンドで、このディレクトリ内を表示させて、格納されている IOS を確認しています。

    ほとんどの Catalyst スイッチは Flash メモリ内に仮想 NVRAM を構成し、startup-config が Flash メモリ内に保存されます。またその他に、VLAN データベースファイルの vlan.dat なども Flash メモリ内に保存されます。
  5. running-config を表示させなさい。
  6. Switch# sh run
    Building configuration...
    
    Current configuration : 738 bytes
    !
    version 15.0
    no service pad
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    !
    hostname Switch
    !
    boot-start-marker
    boot-end-marker
    !
    !
    no aaa new-model
    system mtu routing 1500
    !
    !
    !
    !
    !
    !
    !
    !
    !
    !
    spanning-tree mode pvst
    spanning-tree extend system-id
    !
    vlan internal allocation policy ascending
    !
    !
    !
    !
    !
    !
    interface FastEthernet0/1
    !
    interface FastEthernet0/2
    !
    interface FastEthernet0/3
    !
    interface FastEthernet0/4
    !
    interface FastEthernet0/5
    !
    interface FastEthernet0/6
    !
    interface FastEthernet0/7
    !
    interface FastEthernet0/8
    !
    interface GigabitEthernet0/1
    !
    interface Vlan1
     no ip address
     shutdown
    !
    ip http server
    ip http secure-server
    !
    !
    line con 0
    line vty 5 15
    !
    end
    
    Switch#
    
    running-config や startup-config も Cisco ルータ同様に、搭載されているインターフェイスなどの情報を確認することができます。