0%

Ubuntu 20.04 配置静态IP

20200522200022

查看你的网卡名称

1
ifconfig

20200522200141

例如我要更改 ens160 这个网卡

1
cd /etc/netplan

找到文件,名字可能不一样

20200522200353

1
nano 00-installer-config.yaml

更改配置

1
2
3
4
5
6
7
8
9
10
11
# This is the network config written by 'subiquity'n
network:
ethernets:
ens160:
dhcp4: false
addresses: [192.168.1.6/24]
optional: true
gateway4: 192.168.1.1
nameservers:
addresses: [192.168.1.1,8.8.8.8]
version: 2

配置

  • ip地址:192.168.1.6
  • 子网掩码: 255.255.255.0
  • 网关:192.168.1.1
  • DNS服务器:192.168.1.1, 8.8.8.8

应用更改

1
netplan apply