Cisco Catalyst 初めの一歩

ネットワーク

本ページは広告が含まれています。気になる広告をクリック頂けますと、サーバ運営費になります(^^

今まで高価なCiscoルータはほとんど触ったことがなかったので、ちょっと面食らってしまいますが、せっかく触る機会が出てきたのでコマンドの覚書です。

Tera Termを利用
Telnet接続

ログイン後

特権モードに変更

#en

メモリ上の設定を表示

#sh run

表示を途中でやめる

#q

バージョン情報、起動時間を表示

#sh ver

ポートに割り当てられているIPアドレス、各ポートがアップしているかの確認
#sh ip int brie

ポートに割り当てられているVLAN、LINK UPの状況、接続速度を確認
#sh int status

メモリ使用量
#sh mem statistics

ログの表示
#sh logging

ポートミラーリング設定
Catalyst>enable
※パスワード入力
Catalyst#
Catalyst#configure terminal
Catalyst(config)#monitor session 1 source interface g1/0/1 both
Catalyst(config)#monitor session 1 destination interface g1/0/24
Catalyst(config)#end
Catalyst#

設定内容
g1/0/1 ポートの全トラフィックを
g1/0/24 へポートミラーリングする

show interface

リンクアップを調べたい

#show interfaces vlan1
Load for five secs: 3%/0%; one minute: 3%; five minutes: 3%
Time source is NTP, 10:27:02.971 JST Wed Feb 22 2023

Vlan1 is administratively down, line protocol is down 
  Hardware is EtherSVI, address is
  MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, 
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation ARPA, loopback not set
  Keepalive not supported 
  ARP type: ARPA, ARP Timeout 04:00:00
  Last input never, output never, output hang never
  Last clearing of "show interface" counters never
  Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
  Queueing strategy: fifo
  Output queue: 0/40 (size/max)
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 0 bits/sec, 0 packets/sec
     0 packets input, 0 bytes, 0 no buffer
     Received 0 broadcasts (0 IP multicasts)
     0 runts, 0 giants, 0 throttles 
     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
     0 packets output, 0 bytes, 0 underruns
     0 output errors, 1 interface resets
     0 unknown protocol drops
     0 output buffer failures, 0 output buffers swapped out

物理ポートのリンクアップを調べたい

1番ポートの確認

show interface GigabitEthernet0/1

とすると、応答の中に

GigabitEthernet0/1 is up, line protocol is up (connected)

を確認。リンクアップしている。

#show interface GigabitEthernet0/1
Load for five secs: 3%/0%; one minute: 3%; five minutes: 3%
Time source is NTP, 10:30:47.087 JST Wed Feb 22 2023

GigabitEthernet0/1 is up, line protocol is up (connected) 
  Hardware is Gigabit Ethernet, address is 
  Description: --- To 1F wi-fi
  MTU 1500 bytes, BW 1000000 Kbit/sec, DLY 10 usec, 
     reliability 255/255, txload 1/255, rxload 1/255
  Encapsulation ARPA, loopback not set
  Keepalive set (10 sec)
  Full-duplex, 1000Mb/s, media type is 10/100/1000BaseTX
  input flow-control is off, output flow-control is unsupported 
  ARP type: ARPA, ARP Timeout 04:00:00
  Last input never, output 00:00:01, output hang never
  Last clearing of "show interface" counters never
  Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 1455
  Queueing strategy: fifo
  Output queue: 0/40 (size/max)
  5 minute input rate 116000 bits/sec, 36 packets/sec
  5 minute output rate 2541000 bits/sec, 214 packets/sec
     77891060 packets input, 3646065834 bytes, 0 no buffer
     Received 1712582 broadcasts (627349 multicasts)
     0 runts, 0 giants, 0 throttles 
     0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
     0 watchdog, 627349 multicast, 0 pause input
     0 input packets with dribble condition detected
     236790443 packets output, 194676389 bytes, 0 underruns
     0 output errors, 0 collisions, 1 interface resets
     0 unknown protocol drops
     0 babbles, 0 late collision, 0 deferred
     0 lost carrier, 0 no carrier, 0 pause output
     0 output buffer failures, 0 output buffers swapped out

リンクアップしていない時には

GigabitEthernet0/4 is down, line protocol is down (notconnect)

と表示される

タイトルとURLをコピーしました