2020年04月02日
Tweet
ついに私の環境でも Cent7 が来てしまいました。
デバイスはこんな感じでした。
# nmcli d
DEVICE TYPE STATE CONNECTION
eth0 ethernet connected System eth0
eth1 ethernet connected System eth1
eth2 ethernet connecting (getting IP configuration) Wired connection 1
lo loopback unmanaged --
eth0 は グローバルIPが当たっています。
eth1 は 標準のローカルIPが当たっていました。
そして eth2 に管理用の ip を当てたかったのです。
#nmcli connection modify eth2 ipv4.addresses X.X.X.X/24
Error: unknown connection 'eth2'.
eth2 が無いと怒られてしまいました。
続いて以下のコマンド
# nmcli connection show
NAME UUID TYPE DEVICE
System eth0 XX ethernet eth0
System eth1 XX ethernet eth1
Wired connection 1 XX ethernet --
nmcliでは、上記のNAME欄を指定するようでした。
ということで、以下のコマンドに
#nmcli connection modify "Wired connection 1" ipv4.addresses X.X.X.X/24
設定が完了したら、NIC再起動します。
# nmcli connection down "Wired connection 1"
# nmcli connection up "Wired connection 1"
これで設定が完了しました。
デバイスはこんな感じでした。
# nmcli d
DEVICE TYPE STATE CONNECTION
eth0 ethernet connected System eth0
eth1 ethernet connected System eth1
eth2 ethernet connecting (getting IP configuration) Wired connection 1
lo loopback unmanaged --
eth0 は グローバルIPが当たっています。
eth1 は 標準のローカルIPが当たっていました。
そして eth2 に管理用の ip を当てたかったのです。
#nmcli connection modify eth2 ipv4.addresses X.X.X.X/24
Error: unknown connection 'eth2'.
eth2 が無いと怒られてしまいました。
続いて以下のコマンド
# nmcli connection show
NAME UUID TYPE DEVICE
System eth0 XX ethernet eth0
System eth1 XX ethernet eth1
Wired connection 1 XX ethernet --
nmcliでは、上記のNAME欄を指定するようでした。
ということで、以下のコマンドに
#nmcli connection modify "Wired connection 1" ipv4.addresses X.X.X.X/24
設定が完了したら、NIC再起動します。
# nmcli connection down "Wired connection 1"
# nmcli connection up "Wired connection 1"
これで設定が完了しました。
stock_value at 16:59│Comments(0)│技術