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?

Aeonモバイルの格安SIM + Aterm HT100LNで自宅回線の冗長化

Posted at

あんまり得意分野ではないけれど、作業メモとして記録しておきます。

Wi-Fi側

現在のPC(Windows11)のネットワークインターフェースはWi-Fi。Wi-Fiルーター経由で光回線に接続されている。
インターフェース名は"vEthernet (External Switch)"、セグメントは192.168.0.0/24。
WSLインストール時にブリッジ接続になっている模様。

netsh interface ipv4 set interface "vEthernet (External Switch)" metric=1
netsh interface ipv6 set interface "vEthernet (External Switch)" metric=1

Wi-Fi側のメトリック(優先度)を1に。通常はこちらのネットワークを利用する。

route add 0.0.0.0 mask 0.0.0.0 192.168.0.1 metric 1
netsh interface ipv6 add route ::/0 "vEthernet (External Switch)" ****::****:****:****:**** metric=1

Wi-Fi側の ゲートウェイのメトリック(優先度)を1に。多分、自動で設定済みのはず。

有線側

新たに Aterm HT100LN とPCを有線で接続する。
AEONモバイルの格安SIM、データ通信のみで月1078円/5GB。
インターフェース名は"イーサネット"、セグメントは192.168.179.0/24。

netsh interface ipv4 set interface "イーサネット" metric=100
netsh interface ipv6 set interface "イーサネット" metric=100

有線側のメトリック(優先度)を100に。Wi-Fi側に問題が発生した時のバックアップ。

route add 0.0.0.0 mask 0.0.0.0 192.168.179.1 metric 100
netsh interface ipv6 add route ::/0 "イーサネット" ****::****:****:****:**** metric=100

有線側のゲートウェイのメトリック(優先度)を100に。この設定が無いと、有線側からインターネットに出て行けない。

これで、回線障害やWi-Fiルーターのハングアップ時にもインターネット接続が維持・・・できるといいな。

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?