Windowsのrouteに設定するインターフェイスのindex番号の確認方法

routeを追加する

windowsでルートを登録するのは
宛先:192.168.2.10/255.255.255.0
Gateway:129.168.0.254
インターフェイス:0x001
の場合

route add -p 192.168.2.10 mask 255.255.255.0 192.168.0.254 metric 1 if 0x001

のようになります。
-pでスタティックルートになり再起動後も有効になります。
metricやifは省略できます。

通常、特にif(インターフェイス)は不要かもしれませんが、
サーバーになるとNICの複数あるマルチホーミング構成がよくとられます。
linuxとは違いifの指定がインデックス番号なので、この調べ方です。

インターフェイスのインデックスの調べかた

ipconfigでそれぞれのNICのMACアドレスを調べておきます。
そしてroute printの先頭に表示されるMACアドレスとインターフェイスのインデックス番号から調べます。

> ipconfig/all

Windows IP Configuration

~~(略)~~

Ethernet adapter VMware Network Adapter VMnet8:

        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter forVMnet8
        Physical Address. . . . . . . . . : aa-aa-aa-aa-aa-aa
        Dhcp Enabled. . . . . . . . . . . : No
        IP Address. . . . . . . . . . . . : 192.168.249.1
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . :

Ethernet adapter VMware Network Adapter VMnet1:

        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : VMware Virtual Ethernet Adapter forVMnet1
        Physical Address. . . . . . . . . : bb-bb-bb-bb-bb-bb
        Dhcp Enabled. . . . . . . . . . . : No
        IP Address. . . . . . . . . . . . : 192.168.91.1
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . :

Ethernet adapter ローカル エリア接続:

        Connection-specific DNS Suffix  . :
        Description . . . . . . . . . . . : Intel(R) 82562V-2 10/100 Network Connection
        Physical Address. . . . . . . . . : cc-cc-cc-cc-cc-cc
        Dhcp Enabled. . . . . . . . . . . : No
        IP Address. . . . . . . . . . . . : 192.168.0.10
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . : 192.168.0.254
        DNS Servers . . . . . . . . . . . : 8.8.8.8
                                            8.8.4.4
                                            
> route print
===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x2 ...aa aa aa aa aa aa ...... VMware Virtual Ethernet Adapter for VMnet8
0x3 ...bb bb bb bb bb bb ...... VMware Virtual Ethernet Adapter for VMnet1
0x4 ...cc cc cc cc cc cc ...... Intel(R) 82562V-2 10/100 Network Connection 
===========================================================================
===========================================================================
Active Routes:
~~(略)~~

この場合、192.168.0.10のアドレスの割り振られたNICのインデックスは0x4になります。

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