Ubuntu通过Netplan配置网络教程

 更新时间:2023年10月31日 09:53:47   作者:小陈运维  
这篇文章主要为大家介绍了Ubuntu通过Netplan配置网络教程,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

Ubuntu 通过 Netplan 配置网络教程

Ubuntu through Netplan configuration network tutorial

一、Netplan 配置流程

1. Netplan configuration process

1、Netplan默认配置文件在/etc/netplan目录下。您可以使用以下命令找到:

1. The default configuration file of Netplan is in the /etc/netplan directory. You can find it with the following command:

ls /etc/netplan/

就可以看到配置文件名称。

You can see the configuration file name.

2、查看Netplan网络配置文件的内容,执行以下命令:

2. View the contents of the Netplan network configuration file and execute the following command:

cat /etc/netplan/*.yaml

3、现在你需要在任何编辑器中打开配置文件: 由于我使用 vim 编辑器来编辑配置文件,所以我将运行:

3. Now you need to open the configuration file in any editor: Since I use the vim editor to edit the configuration file, I will run:

vim /etc/netplan/*.yaml

根据您的网络需要更新配置文件。对于静态 IP 寻址,添加 IP 地址、网关、DNS 信息,而对于动态 IP 寻址,无需添加此信息,因为它将从 DHCP 服务器获取此信息。使用以下语法编辑配置文件。

Update the configuration file according to your network needs. For static IP addressing, add IP address, gateway, DNS information, and for dynamic IP addressing, there is no need to add this information because it will get this information from the DHCP server. Use the following syntax to edit the configuration file.

4、在应用任何更改之前,我们将测试配置文件。

4. We will test the configuration file before applying any changes.

sudo netplan try

如果没有问题,它将返回配置接受消息。如果配置文件未通过测试,它将恢复为以前的工作配置。

If there is no problem, it will return a configuration acceptance message. If the configuration file fails the test, it will revert to the previous working configuration.

5、运行以下命令来应用新配置:

5. Run the following command to apply the new configuration:

sudo netplan apply

6、成功应用所有配置后,通过运行以下命令重新启动 Network-Manager 服务:

6. After successfully applying all the configurations, restart the Network-Manager service by running the following command:

如果是桌面版:

If it is the desktop version:

sudo systemctl restart system-networkd

如果您使用的是 Ubuntu 服务器,请改用以下命令:

If you are using an Ubuntu server, use the following command instead:

sudo systemctl restart network-manager

7、验证 IP 地址

7. Verify the IP address

ip a

二、Netplan 配置文件详解

 Detailed explanation of Netplan configuration file

1、使用 DHCP:

1. Use DHCP:

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
      dhcp4: true

2、使用静态 IP:

2. Use static IP:

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
      addresses:
        - 10.0.0.10/8
      gateway4: 10.0.0.1
      nameservers:
          search: [mydomain, otherdomain]
          addresses: [10.0.0.5, 1.1.1.1]

3、多个网口 DHCP:

3. Multiple network ports DHCP:

network:
  version: 2
  ethernets:
    enred:
      dhcp4: yes
      dhcp4-overrides:
        route-metric: 100
    engreen:
      dhcp4: yes
      dhcp4-overrides:
        route-metric: 200

4、连接开放的 WiFi(无密码):

4. Connect to open WiFi (without password):

network:
  version: 2
  wifis:
    wl0:
      access-points:
        opennetwork: {}
      dhcp4: yes

5、连接 WPA 加密的 WiFi:

5. Connect to WPA encrypted WiFi:

network:
  version: 2
  renderer: networkd
  wifis:
    wlp2s0b1:
      dhcp4: no
      dhcp6: no
      addresses: [10.0.0.10/8]
      gateway4: 10.0.0.1
      nameservers:
        addresses: [10.0.0.5, 8.8.8.8]
      access-points:
        "network_ssid_name":
          password: "**********"

6、在单网卡上使用多个 IP 地址(同一网段):

6. Use multiple IP addresses on a single network card (same network segment):

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
     addresses:
       - 10.0.0.10/8
       - 10.0.0.10/8
     gateway4: 10.0.0.1

7、在单网卡使用多个不同网段的 IP 地址:

7. Use multiple IP addresses of different network segments on a single network card:

network:
  version: 2
  renderer: networkd
  ethernets:
    enp3s0:
     addresses:
       - 9.0.0.9/24
       - 10.0.0.10/24
       - 11.0.0.11/24
     #gateway4:    # unset, since we configure routes below
     routes:
       - to: 0.0.0.0/0
         via: 9.0.0.1
         metric: 100
       - to: 0.0.0.0/0
         via: 10.0.0.1
         metric: 100
       - to: 0.0.0.0/0
         via: 11.0.0.1
         metric: 100

以上就是Ubuntu通过Netplan配置网络教程的详细内容,更多关于Ubuntu Netplan配置网络的资料请关注脚本之家其它相关文章!

相关文章

  • TCP Wrappers防火墙介绍与封锁IP地址的方法

    TCP Wrappers防火墙介绍与封锁IP地址的方法

    Tcp_Wrappers是一个用来分析TCP/IP封包的软件,类似的IP封包软件还有iptables,linux默认都安装了此软件,作为一个安全的系统
    2012-07-07
  • HTTP响应字段Transfer-Encoding含义及作用详解

    HTTP响应字段Transfer-Encoding含义及作用详解

    在HTTP通信中,响应正文可以以多种不同的编码方式传输,其中一种方式是chunked传输编码,本文将详细介绍Transfer-Encoding字段的含义和chunked传输编码,以及提供示例来解释这些概念
    2023-11-11
  • windows下文件同步工具 CwRsync 4.0.2 安装配置方法(图文)

    windows下文件同步工具 CwRsync 4.0.2 安装配置方法(图文)

    这篇文章主要介绍了CwRsync 4.0.2 安装配置方法,需要的朋友可以参考下
    2015-01-01
  • CentOS下搭建SVN服务器的步骤详解

    CentOS下搭建SVN服务器的步骤详解

    这篇文章主要介绍了CentOS下搭建SVN服务器的步骤,较为详细的分析了CentOS平台上搭建SVN服务器的步骤与相关操作注意事项,需要的朋友可以参考下
    2016-10-10
  • 运维人员处理服务器故障的方法总结

    运维人员处理服务器故障的方法总结

    作为一个运维人员,遇到服务器故障是在所难免的,要是再赶上修复时间紧、奇葩的技术平台、缺少信息和文档,基本上这过程都会惨痛到让我们留下深刻的记忆。当出现此类问题时,应该如何处理?本文给大家详尽的分析了一下,一起来看看
    2014-01-01
  • 将下载到本地的JAR包手动添加到Maven仓库的方法

    将下载到本地的JAR包手动添加到Maven仓库的方法

    下面小编就为大家分享一篇将下载到本地的JAR包手动添加到Maven仓库的方法,具有很好的参考价值,希望对大家有所帮助
    2017-11-11
  • Zookeeper未授权访问测试问题

    Zookeeper未授权访问测试问题

    ZooKeeper是一个分布式的,开放源码的分布式应用程序协调服务,是Google的Chubby一个开源的实现,是Hadoop和Hbase的重要组件。这篇文章主要介绍了Zookeeper未授权访问测试,需要的朋友可以参考下
    2019-10-10
  • magento空间更换迁移图文教程

    magento空间更换迁移图文教程

    magento是一款使用比较普遍的免费开源建站软件,magento网站在更换空间迁移时候,步骤有误常会导致一些功能失效或错误出现,下面就详细介绍一下magento空间更换迁移步骤过程,需要的朋友可以参考下
    2015-12-12
  • github的使用_动力节点Java学院整理

    github的使用_动力节点Java学院整理

    这篇文章主要为大家详细介绍了github使用的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-08-08
  • 一文概括6种负载均衡技术的实现方式(小结)

    一文概括6种负载均衡技术的实现方式(小结)

    这篇文章主要介绍了一文概括6种负载均衡技术的实现方式(小结),小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2019-05-05

最新评论