关于 Ubuntu 18.04 的网络(dchp/dns)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 Ubuntu 18.04 的网络(dchp/dns)相关的知识,希望对你有一定的参考价值。

【概述】

    Ubuntu Server 18.04 中用 netplan 取代了 ifupdown,配置文件在 /etc/netplan/ 目录下,文件格式为 yaml,使配置文件生效的命令为 sudo netplan apply


【典型配置】

network:
    ethernets:
		# 静态IP
        enp2s0:
            addresses:
            - 192.168.0.145/24
            gateway4: 192.168.0.1
            nameservers:
                addresses:
                - 223.5.5.5
                search: []
            optional: true
		# 动态IP
        enp4s0:
            addresses: []
            dhcp4: true
			# 若没有下面这一句
			# 向服务器发送的“mac”地址会是类似“5de26c1500020000ab1102df86200698a807”的奇怪字符串
			# 实际上这是 DUID
            dhcp-identifier: mac
            optional: true
            optional: true
    version: 2


*** walker ***


以上是关于关于 Ubuntu 18.04 的网络(dchp/dns)的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu18.04网络管理

ubuntu18.04netplan命令没有

关于ubuntu.18.04的安装注意事项

安装Ubuntu18.04遇到的问题未找到WIFI适配器

ubuntu18.04网络配置

石墨网和 ubuntu 18.04