○ネットワーク接続を最初に作成するには下記ページを参照してください。
・有線ネットワークのコネクションを成立させる方法
・無線(WIFI)ネットワークのコネクションを成立させる方法
■ネットワークデバイスの一覧を表示させた。
# nmcli device
デバイス タイプ 状態 接続
wlp4s0 wifi 接続済み wlp4s0
enp5s0 ethernet 利用不可 --
lo loopback 管理無し --
■切断、そして再接続
# nmcli con down wlp4s0
Connection 'wlp4s0' successfully deactivated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/0)# nmcli device
デバイス タイプ 状態 接続# nmcli con up wlp4s0
wlp4s0 wifi 切断済み -- enp5s0 ethernet 利用不可 --
lo loopback 管理無し --
接続が正常にアクティベートされました (D-Bus アクティブパス: /org/freedesktop/NetworkManager/ActiveConnection/1)
■デバイスについて情報を表示させた。
# nmcli dev show wlp4s0
GENERAL.デバイス: wlp4s0
GENERAL.タイプ: wifi
GENERAL.ハードウェアアドレス: xx:xx:xx:xx:xx:xx
GENERAL.MTU: 0
GENERAL.状態: 100 (接続済み)
GENERAL.接続: wlp4s0
GENERAL.CON パス: /org/freedesktop/NetworkManager/ActiveConnection/0
IP4.アドレス[1]: 192.168.1.40/24
IP4.ゲートウェイ: 192.168.1.1
IP4.DNS[1]: 8.8.8.8
IP6.アドレス[1]: fe80::xxxx:xxxx:xxxx:xxxx/64
IP6.ゲートウェイ:
接続についての情報を詳細に表示するには次のコマンドを実行する。
# nmcli con show wlp4s0
■ネットワーク設定を変更する。
○DNSサーバの追加・変更
(注)DHCP経由でDNSサーバアドレスを取得している場合、まず自動取得しないよう設定
# nmcli con mod wlp4s0 ipv4.ignore-auto-dns yes
DNSアドレスを設定
# nmcli con mod wlp4s0 ipv4.dns 192.168.2.1
再接続
# nmcli con up wlp4s0
状態を表示(DNSアドレスが静的に設定されたことがわかる。)
# nmcli dev show wlp4s0
GENERAL.デバイス: wlp4s0
GENERAL.タイプ: wifi
GENERAL.ハードウェアアドレス: xx:xx:xx:xx:xx:xx
GENERAL.MTU: 1500
GENERAL.状態: 100 (接続済み)
GENERAL.接続: wlp4s0
GENERAL.CON パス: /org/freedesktop/NetworkManager/ActiveConnection/9
IP4.アドレス[1]: 192.168.1.40/24
IP4.ゲートウェイ: 192.168.1.1
IP4.DNS[1]: 192.168.2.1
IP6.アドレス[1]: fe80::xxxx:xxxx:xxxx:xxxx/64
IP6.ゲートウェイ:
○IPアドレス、ゲートウェイの変更
(静的に割り当てを行う)
(注)下記パラメーターで不正な値を設定すると、ネットワークにつながらなくなってしまうので注意。特に、リモート接続時等は細心の注意が必要。
IPv4アドレスを設定
# nmcli con mod wlp4s0 ipv4.addresses 192.168.1.10/24
ゲートウェイアドレスを設定
# nmcli con mod wlp4s0 ipv4.gateway 192.168.1.1
アドレス設定を手動方式に切り替え(DHCPは使わない。)
# nmcli con mod wlp4s0 ipv4.method manual
再接続
# nmcli con up wlp4s0
(参考)
・RHEL7: Configure IPv4 addresses and perform basic IPv4 troubleshooting.
< https://www.certdepot.net/rhel7-configure-ipv4-addresses/ > 2016年12月11日