0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ubuntuにおける静的IPアドレスアドレスの設定

Last updated at Posted at 2020-10-01

古いディストリビューション

kali Linux などのDebian系はよく、
「/etc/network/interfaces」
ファイルを編集する。

「enp0s8」はネットワークの名称。

sudo vim /etc/network/interfaces

auto enp0s8
iface enp0s8 inet static
address 192.168.56.102
network 192.168.56.0
netmask 255.255.255.0

sudo systemctl restart

Ubuntuの場合

Ubuntu18.04 LTS, Ubuntu20.04 LTS環境

/etc/network/interfaces 編集は効果なし。

昨今のubuntuのネットワーク設定は
「/etc/netplan/99_config.yaml 」
ファイルを編集する。

  • 空白がインデントと認識されるので、インデントを揃える。
  • 「enp0s8:」とあるところは、ネットワークの名称。
  • ネットワークの名称下の「addresses:」には、設定したい静的IPアドレスとサブネットを指定。
  • 「gateway4:」、nameservers下の「adresses:」にはデフォルトゲートウェイを指定する。(?)
/etc/netplan/99_config.yaml
network:
  version: 2
  renderer: networkd
  ethernets:
    enp0s8:
      dhcp4: false
      dhcp6: false
      addresses: [192.168.1.70/24]
      gateway4: 192.168.1.1
      nameservers:
        addresses: [192.168.1.1]

Ubuntu 20.04 LTSで固定IPアドレスの設定
[Ubuntu公式 Network Configuration](
(https://ubuntu.com/server/docs/network-configuration)

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?