0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

IPFactory(現役生)Advent Calendar 2024

Day 9

Windows11で2回線を切り替える

Last updated at Posted at 2024-12-09

IPFactory Advent Calender 2024 9日目の記事です。

はじめに

こんにちは。0kqです。
先日自宅に予備のネット回線を契約しました。
ルーター2台とWindowsマシン1台を接続しPC側で2回線を切り替えて使えるように設定してみました。
※VRRPは組んでいません。

環境

OS: Windows 11
NIC: RTL8125BG

  • VLAN: 1
    • WAN: 1
    • Gateway: 192.168.1.1/24
  • VLAN: 2
    • WAN: 2
    • Gateway: 192.168.2.1/24

仮想NICで2つのタグVLANを1つの物理NIC流しています
https://tech-mmmm.blogspot.com/2022/02/realtekusb-nicvlan.html

名称未設定ファイル.drawio.png

手順

Powershellのコマンドで静的ルートを2つ設定

route add 0.0.0.0 mask 0.0.0.0 192.168.1.1 metric 1
route add 0.0.0.0 mask 0.0.0.0 192.168.2.1 metric 2

メトリックを変更
VLAN1にしたい場合は以下のように設定

route change 0.0.0.0 mask 0.0.0.0 192.168.2.1 metric 2
route change 0.0.0.0 mask 0.0.0.0 192.168.1.1 metric 1

これらをbatファイル等で実行すればワンクリックで回線を切り替えられます。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?