はじめてのCiscoスイッチおよびルータ

このページは、「ネットワークに興味があり、更にまだ一度もCisco製のスイッチやルータを触ったことのない方」向けの解説です。
主に実機の設定に関して、開封後の初期設定からの流れを記載しています。

スポンサーリンク

Cisco : シスコシステムズ合同会社・・・ネットワーク機器のシェアにおいては世界のデファクトスタンダードとも呼べる会社及び製品です。シスコ製のスイッチやルータの基本的な設定を身に着けることは非常にインフラ系のSEにとってはとても重要な要素となっています。

ここではCisco1812j を例に記載しています。
製品の筐体は以下の画像にあるような形状をしています。

①まずCisco1812j本体に電源ケーブルを挿し、電源スイッチをオンにします。
②続いて、以下の写真にあるる水色の専用コンソールケーブル(ロールオーバーケーブル)をコンソールポートに挿します。

多くの場合その対向側にUSBシリアルケーブルのDsub9ピンの口をつなぎ、ノートPC等から初期設定の操作を行うことになります。

③作業用の端末にてTeraterm等のターミナルソフトを開き、キーボードで「ENTER」キーをクリックします。(以下のような画面が表示されます)

本製品を開封後にログインした直後は、設定が何も入っていないのかというとそうではありません。
ある程度のデフォルト設定というものが入っています。
それを確認するためにまずは以下のコマンドを入力し、設定前のコンフィグを残しておくことをお勧めします。

router> enable
router# configure terminal
router#

router# show run

■Cisco 1812J の起動時のデフォルト設定

version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
no aaa new-model
ip subnet-zero
!
ip cef
!
ip ips po max-events 100
no ftp-server write-enable
!
interface BRI0
no ip address
shutdown
!
interface FastEthernet0
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet1
no ip address
shutdown
duplex auto
speed auto
!
interface FastEthernet2
no ip address
shutdown
!
interface FastEthernet3
no ip address
shutdown
!
interface FastEthernet4
no ip address
shutdown
!
interface FastEthernet5
no ip address
shutdown
!
interface FastEthernet6
no ip address
shutdown
!
interface FastEthernet7
no ip address
shutdown
!
interface FastEthernet8
no ip address
shutdown
!
interface FastEthernet9
no ip address
shutdown
!
interface Vlan1
no ip address
!
ip classless
!
no ip http server
no ip http secure-server
!
control-plane
!
line con 0
line aux 0
line vty 0 4
!
no scheduler allocate
end

基本的な初期設定

ここで述べている「基本的な初期設定」とは、設計、用途を問わずほぼ共通して事前に設定されるであろう設定部分を指しています。

ホスト名の設定

router> enable
router# configure terminal
router(config)# hostname cisco_A
cisco_A(config)# exit
cisco_A#

コンソールの設定

cisco_A# configure terminal
cisco_A(config)# line console 0
cisco_A(config-line)# password
cisco_A(config-line)# login

自動ログアウトしない

cisco_A(config-line)# exec-timeout 0 0

SSHでの接続設定

cisco_A(config)# line vty 0 4
cisco_A(config-line)# password
cisco_A(config-line)# transport input telnet
cisco_A(config-line)# login

コマンド入力中のメッセージ割り込み対策

cisco_A(config-line)# logging synchronous

DNS問い合わせを無効化

cisco_A(config)# no ip domain lookup

ブラウザからのアクセスを遮断

cisco_A(config)# no ip http server

DNSサーバ設定

cisco_A(config)# ip name-server xxx.xxx.xxx.xxx
cisco_A(config)# ip name-server xxx.xxx.xxx.xxx

FastEthernetインターフェイスにIPアドレスを設定します。

cisco_A(config)# interface fastethernet 0/0
cisco_A(config-if)# ip address 192.168.1.1 255.255.255.0
cisco_A(config-if)# no shutdown
(シャットダウン解除)

インターフェイスにコメントをつけます

cisco_A(config-if)# description To:LAN
cisco_A(config-if)# exit
cisco_A(config)#

Ciscoルータにおけるスタティックルートの追加

スタティックルートの追加はまず下記コマンドでルーティングをオンにします。

cisco_A# configure terminal
cisco_A(config)# ip routing

スタティックルートを設定します。

cisco_A# configure termanl
cisco_A(config)# ip route 172.16.0.0 255.255.255.0 192.168.1.254
 (cisco_A , cisco_B)
cisco_A(config)# ip route 192.168.1.0 255.255.255.0 172.16.0.254
 (cisco_C , cisco_D)
cisco_A(config)# exit

cisco_A#

※noをつけることによって設定を解除できます。

cisco_A# configure termanl
cisco_A(config)# no ip route 172.16.0.0 255.255.255.0 192.168.1.254
 (cisco_A , cisco_B)
cisco_A(config)# no ip route 192.168.1.0 255.255.255.0 172.16.0.254  (cisco_C , cisco_D)
cisco_A(config)# exit
cisco_A#

送信先へのルートが不明な場合に使用される特別経路情報をデフォルトルートと言います。デフォルトルートを利用するとIPアドレス、サブネットマスクともに0.0.0.0を使用します。

cisco_A# configure termanl
cisco_A(config)# ip route 0.0.0.0 0.0.0.0 192.168.1.254
cisco_A(config)# exit

ルーティングテーブルの表示

cisco_A# show ip route

その他、IT関連記事

その他の記事:期間限定

この記事が気に入ったら
いいね ! しよう

スポンサーリンク

おすすめ

error: Content is protected !!