ubuntu 22.04设置固定ip

linux设置固定IP。以ubuntu 22.04为例。

操作

编辑配置文件

sudo vim /etc/netplan/00-installer-config.yaml

我的配置如下:

network:
  ethernets:
    ens33:
      dhcp4: false
      addresses: [192.168.31.66/24]
      gateway4: 192.168.31.1
      nameservers:
        addresses: [192.168.31.1]
  version: 2

执行使用设置生效

sudo netplan apply

这个时候可能会见到如下的警告信息:

** (generate:1040): WARNING **: 09:20:10.616: `gateway4` has been deprecated, use default routes instead.
See the 'Default routes' section of the documentation for more details.

虽然不影响使用,有警告就难受。
修改成如下:

network:
  ethernets:
    ens33:
      dhcp4: false
      addresses: [192.168.31.66/24]
      routes:
        - to: default
          via: 192.168.31.1
      nameservers:
        addresses: [192.168.31.1]
  version: 2

这下就没有警告了。

参考

https://blog.csdn.net/m0_37052320/article/details/100107557
https://www.myfreax.com/how-to-configure-static-ip-address-on-ubuntu-20-04/

你可能感兴趣的:(ubuntu,ubuntu,linux,服务器)