0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ciscoルータで簡単なスタティックルーティング構築をしてみる。

Last updated at Posted at 2019-11-15

Ciscoルータを使って、簡単なスタティックルーティング構築してみる。

動作環境

Cisco 800M × 2
macOS Catalina

やりたいこと

static_route.jpeg

  • IPアドレスが192.168.1.254のPCと192.168.3.254のPCをPingで疎通させる。
  • ルータを2台使う。

構築

  • まず、LANケーブルでルータ同士をつなげる。今回は、GigabitEthernet 0/5につなげた。
  • 各ルータのGigabitEthernet 0/0にそれぞれのPCをつなげる。
  • 192.168.1.254のPCをA, 192.168.3.254のPCをBとする。

そして、ターミナルで設定を行う。
設定は、以下の通り。

192.168.1.254(A)
Router# conf t
Router(config)# interface vlan 1
Router(config-if)# ip address 192.168.1.253 255.255.255.0
Router(config-if)# no shut
Router(config-if)# exit
Router(config)# interface GigabitEthernet 0/5   //ルータによっては、FastEthernetの場合もある。
Router(config-if)# ip address 10.1.0.1 255.255.255.0
Router(config-if)# no shut
Router(config-if)# exit
192.168.3.254(B)
Router# conf t
Router(config)# interface vlan 1
Router(config-if)# ip address 192.168.3.253 255.255.255.0
Router(config-if)# no shut
Router(config-if)# exit
Router(config)# interface GigabitEthernet 0/5   //ルータによっては、FastEthernetの場合もある。
Router(config-if)# ip address 10.1.0.2 255.255.255.0
Router(config-if)# no shut
Router(config-if)# exit

そして、ip routeでスタティックルートの設定を行う。

192.168.1.254(A)
Router(config)# ip route 192.168.3.0 255.255.255.0 10.1.0.2
192.168.3.254(B)
Router(config)# ip route 192.168.1.0 255.255.255.0 10.1.0.1

最後に、PC本体の設定を行う。

PC Aの設定

IPアドレス: 192.168.1.254
サブネット: 255.255.255.0(Win10の場合は、サブネットの長さである**「32」**を記入。)
デフォルトゲートウェイ(Macの場合、ルーター): 192.168.1.253(Vlanで設定したIPアドレス)

PC Bの設定

IPアドレス: 192.168.3.254
サブネット: 255.255.255.0
デフォルトゲートウェイ: 192.168.3.253

pingを飛ばしてみる。

192.168.1.254(A)
*PING 192.168.3.254 (192.168.3.254): 56 data bytes
64 bytes from 192.168.3.254: icmp_seq=0 ttl=62 time=2.990 ms
64 bytes from 192.168.3.254: icmp_seq=1 ttl=62 time=3.086 ms
64 bytes from 192.168.3.254: icmp_seq=2 ttl=62 time=3.017 ms
64 bytes from 192.168.3.254: icmp_seq=3 ttl=62 time=3.183 ms
64 bytes from 192.168.3.254: icmp_seq=4 ttl=62 time=3.128 ms
64 bytes from 192.168.3.254: icmp_seq=5 ttl=62 time=3.012 ms
64 bytes from 192.168.3.254: icmp_seq=6 ttl=62 time=3.088 ms
192.168.3.254(B)
*PING 192.168.1.254 (192.168.1.254): 56 data bytes
64 bytes from 192.168.1.254: icmp_seq=0 ttl=62 time=2.990 ms
64 bytes from 192.168.1.254: icmp_seq=1 ttl=62 time=3.086 ms
64 bytes from 192.168.1.254: icmp_seq=2 ttl=62 time=3.017 ms
64 bytes from 192.168.1.254: icmp_seq=3 ttl=62 time=3.183 ms
64 bytes from 192.168.1.254: icmp_seq=4 ttl=62 time=3.128 ms
64 bytes from 192.168.1.254: icmp_seq=5 ttl=62 time=3.012 ms
64 bytes from 192.168.1.254: icmp_seq=6 ttl=62 time=3.088 ms

見事に、疎通できた。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?