2
2

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.

ルーター(1812j)1台のみでvlan間ルーティングできないときに確認したこと

Last updated at Posted at 2019-05-01

使用機器、環境など

ホスト1:windows
ホスト2:windows

ホスト1(192.168.2.212)とホスト2(192.168.4.234)間でvlan間ルーティングされる
ように設定してあるがなぜかできない。

pingがデフォルトゲートウェイに通るか確認

Router#ping 192.168.2.254
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.254, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/1 ms

ホスト2のデフォルトゲートウェイも同じように確認

インタフェースがupしているか確認

Router#show ip interface brief
Interface                  IP-Address      OK? Method Status                Protocol
------------------------------------略---------------------------------------------
FastEthernet3              unassigned      YES unset  up                    up                                                                                                               
FastEthernet4              unassigned      YES unset  up                    up


※使用するインターフェースを確認

メトリックを確認

※Windowsの確認方法を記載

C:\Users\test>route print
------------------------------------略---------------------------------------------
IPv4 ルート テーブル
===========================================================================
アクティブ ルート:
ネットワーク宛先        ネットマスク          ゲートウェイ       インターフェイス  メトリック
          0.0.0.0          0.0.0.0      192.168.10.1      192.168.10.22     55
          0.0.0.0          0.0.0.0    192.168.2.254    192.168.2.212    291
------------------------------------略---------------------------------------------

宛先1(192.168.10.22)が優先されてしまっているので、
宛先2(192.168.2.212)を優先させるように設定を変更する。

メトリックの変更

  1. 「コントロール パネル\ネットワークとインターネット\ネットワーク接続」
    から該当するネットワークアダプタのプロパティをクリック

  2. 「インターネットプロトコル バージョン 4」をダブルクリック

  3. 「詳細設定」をクリック

  4. インターフェースメトリックの値とデフォルトゲートウェイのメトリックの値を変更

よくわからないが、
インタフェースメトリックの値 + デフォルトゲートウェイの値
= route printで表示されるメトリックの値となる

再びメトリックを確認

C:\Users\test>route print
------------------------------------略---------------------------------------------
IPv4 ルート テーブル
===========================================================================
アクティブ ルート:
ネットワーク宛先        ネットマスク          ゲートウェイ       インターフェイス  メトリック
          0.0.0.0          0.0.0.0      192.168.10.1      192.168.10.22     55
          0.0.0.0          0.0.0.0    192.168.2.254    192.168.2.212    2
------------------------------------略---------------------------------------------

vlan間ルーティングできるか確認

C:\Users\test>ping 192.168.4.234

192.168.4.234 に ping を送信しています 32 バイトのデータ:
192.168.4.234 からの応答: バイト数 =32 時間 <1ms TTL=127
192.168.4.234 からの応答: バイト数 =32 時間 <1ms TTL=127
192.168.4.234 からの応答: バイト数 =32 時間 <1ms TTL=127
192.168.4.234 からの応答: バイト数 =32 時間 <1ms TTL=127

192.168.4.234 の ping 統計:
    パケット数: 送信 = 4、受信 = 4、損失 = 0 (0% の損失)、
ラウンド トリップの概算時間 (ミリ秒):
    最小 = 0ms、最大 = 0ms、平均 = 0ms

OK

追記 2019/5/4

基本的にはデフォルトゲートウェイを2つ設定しない、もしくは2つのデフォルトゲートウェイが同じように機能するように
設定するそうです。
ですので、今回のような事象は私の環境独自の問題だと考えられます。

参考: Windows OSのデフォルトゲートウェイは1つのみ有効

2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?