4.2. nmcli を使った静的ルートの設定
nmcli ツールを使用して静的ルートを設定するには、以下のいずれかを使用します。
- nmcli コマンドライン
- nmcli インタラクティブ接続エディター
例4.1 nmcli を使った静的ルートの設定
コマンドラインを使用して、既存のイーサネット接続に静的ルートを設定するには、以下のコマンドを実行します。
~]# nmcli connection modify enp1s0 +ipv4.routes "192.168.122.0/24 10.10.10.1"
これにより、192 .
168.22. 0/24
サブネットへのトラフィックが 10.10.10.1 のゲートウェイに転送されます。
例4.2 nmcli をエディター使用した静的ルートの設定
インタラクティブエディターを使用したイーサネット接続に静的ルートを設定するには、以下のコマンドを実行します。
~]$ nmcli con edit ens3 ===| nmcli interactive connection editor |=== Editing existing '802-3-ethernet' connection: 'ens3' Type 'help' or '?' for available commands. Type 'describe [<setting>.<prop>]' for detailed property description. You may edit the following settings: connection, 802-3-ethernet (ethernet), 802-1x, dcb, ipv4, ipv6, tc, proxy nmcli> set ipv4.routes 192.168.122.0/24 10.10.10.1 nmcli> save persistent Connection 'ens3' (23f8b65a-8f3d-41a0-a525-e3bc93be83b8) successfully updated. nmcli> quit