Ubuntu 18.04 上配置静态 IP 地址
后知后觉 暂无评论

更新 Ubuntu 后到全新的版本后,发现无法找到网卡的配置文件,也没有找到原本的网络服务。

从 Ubuntu 17.10 开始开始使用全新的 NetPlan 管理并配置网卡相关,本文以 Ubuntu 18.04 LTS 为例配置网卡。

NetPlan 这个网络配置工具不再使用之前的网卡配置文件 /etc/network/interfaces ,转而使用 /etc/netplan/*.yaml 文件。

语法

NetPlan 使用标准的 YAML 语法(和 Ansible 、Kubenetes 的配置文件同格式),可参考官网的示例。

示例文件:

# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
 version: 2
 renderer: networkd
 ethernets:
   eth0:
     dhcp4: yes
     dhcp6: yes

配置生效:

sudo netplan apply

使用

配置静态 IP 地址

sudo vi /etc/netplan/01-netcfg.yaml

输入以下内容

# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
 version: 2
 renderer: networkd
 ethernets:
   ens33:
     dhcp4: no
     dhcp6: no
     addresses: [192.168.1.2/24]
     gateway4: 192.168.1.1
     nameservers:
       addresses: [8.8.8.8,8.8.4.4]

保存生效

sudo netplan apply

附录

参考链接

本文撰写于一年前,如出现图片失效或有任何问题,请在下方留言。博主看到后将及时修正,谢谢!
禁用 / 当前已拒绝评论,仅可查看「历史评论」。