UbuntuでIPアドレスの変更

投稿者: | 4月 30, 2020

CentOSでIPアドレスの変更を変える方法を書いたがubuntuのも書いておく。今のubuntuはcloud-initに移行してしまったので /etc/networkとかじゃない。

以下のコマンドで設定サンプルを作り入れ替える。また例によってヒアドキュメント。ドメイン名とかは変えてね。

cat << EOF > /etc/netplan/50-cloud-init.yaml.sample
network:
  version: 2
  renderer: networkd
  ethernets:
    ens160:
      dhcp4: no
      dhcp6: no
      addresses: [192.168.11.7/24]
      gateway4: 192.168.11.1
      nameservers:
        addresses: [192.168.11.1]
        search: [ent1.cloudshift.corp]
      optional: true
EOF

ホスト名はhostnamectlコマンドで変更

hostnamectl set-hostname ent1-lnxX.ent1.cloudshift.corp

コメントを残す