ubuntu18.04服务器配置静态ip
Posted roverqqq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu18.04服务器配置静态ip相关的知识,希望对你有一定的参考价值。
ubuntu18.04服务器
配置静态ip
1. 查看网卡名
ifconfig
2. 配置静态ip
- ip配置文件:/etc/netplan/***.yaml
sudo vim /etc/netplan/***.yaml
- 添加以下内容,(注意冒号后面的空格)
network:
ethernets:
ens33:
dhcp4: no
addresses: [192.168.1.123/24]
gateway4: 192.168.1.1
nameservers:
addresses: [8.8.8.8, 114.114.114.114]
version: 2
3. 重启
sudo reboot
以上是关于ubuntu18.04服务器配置静态ip的主要内容,如果未能解决你的问题,请参考以下文章