IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> Ubuntu 20.4 没有/etc/network/interfaces,配置网络需用Netplan -> 正文阅读

[系统运维]Ubuntu 20.4 没有/etc/network/interfaces,配置网络需用Netplan

最近装了Ubuntu 20 桌面版,需要配置内网,一如既往地找/etc/network/interfaces去配置,发现没有。

于是上网查询,说桌面版现在使用的是netplan.io,官网打开后如下:
在这里插入图片描述

什么是NetPlan

Netplan is a utility for easily configuring networking on a linux system. You simply create a YAML description of the required network interfaces and what each should be configured to do. From this description Netplan will generate all the necessary configuration for your chosen renderer tool.

译文:

Netplan 是一个用于在 linux 系统上轻松配置网络的实用程序。您只需创建所需网络接口的 YAML 描述以及每个应配置的功能。根据此描述,Netplan 将为您选择的渲染器工具生成所有必要的配置。

NetPlan 如何工作

在这里插入图片描述

How does it work?

Netplan reads network configuration from /etc/netplan/*.yaml which are written by administrators, installers, cloud image instantiations, or other OS deployments. During early boot, Netplan generates backend specific configuration files in /run to hand off control of devices to a particular networking daemon.

Netplan currently works with these supported renderers

译文:

它是如何工作的?

Netplan 从 /etc/netplan/*.yaml 读取网络配置,这些配置由管理员、安装程序、云映像实例化或其他操作系统部署编写。在早期启动期间,Netplan 在 /run 中生成后端特定配置文件,以将设备控制权移交给特定的网络守护进程。

Netplan 目前可与这些受支持的渲染器一起使用。

也就是说,NetPlan 其实最终还是使用NetworkManager 和 System-networkd 完成网络配置,只不过配置方式改为更直观的yaml。

配置项

Netplan为yaml文件设计了一系列配置字段,这些字段满足详见Netplan | Backend-agnostic network configuration in YAML

配置示例

需求不一样,配置也不一样,以下是官方列出的常用配置示例:

network:
  version: 2

  # if specified globally, can only realistically have that value, as
  # networkd cannot render wifi/3G. This would be shipped as a separate
  # config.d/ by desktop images
  # it can also be specified by-type or by-device
  renderer: network-manager
  ethernets:
    # opaque ID for physical interfaces with match rules
    # only referred to by other stanzas
    id0:
      match:
        macaddress: 00:11:22:33:44:55
      wakeonlan: true
      dhcp4: true
      addresses:
        - 192.168.14.2/24
        - 2001:1::1/64
      lom:
        # example for explicitly setting a backend (default would be networkd)
        match:
          driver: ixgbe
        # you are responsible for setting tight enough match rules
        # that only match one device if you use set-name
        set-name: lom1
        dhcp6: true
      switchports:
        # all cards on second PCI bus
        # unconfigured by themselves will be added to br0 below
        match:
          name: enp2*
        mtu: 1280
    wifis:
      all-wlans:
      # useful on a system where you know there is
      # only ever going to be one device
      match: {}
      access-points:
        "Joe's home":
          # mode defaults to "managed" (client), key type to wpa-psk
          password: "s3kr1t"
      # this creates an AP on wlp1s0 using hostapd
      # no match rules, thus ID is the interface name
      wlp1s0:
        access-points:
          "guest":
            mode: ap
            channel: 11
            # no WPA config implies default of open
    bridges:
      # the key name is the name for virtual (created) interfaces;
      # no 'match' or 'set-name' attributes are allowed.
      br0:
        # IDs of the components
        # switchports expands into multiple interfaces
        interfaces: [wlp1s0, switchports]
        dhcp4: true
      routes:
        - to: 0.0.0.0/0
        via: 11.0.0.1
        metric: 3
      nameservers:
        search: [foo.local, bar.local]
        addresses: [8.8.8.8]

更多详细见Netplan | Backend-agnostic network configuration in YAML

命令

根据设计,配置完成后,Netplan 需要执行命令是配置生效。

  • netplan generate

    Use /etc/netplan to generate the required configuration for the renderers.

    使用 /etc/netplan 为渲染器生成所需的配置。

  • netplan apply

    Apply all configuration for the renderers, restarting them as necessary.

    应用渲染器的所有配置,并根据需要重新启动它们

  • netplan try

    Apply configuration and wait for user confirmation; will roll back if network is broken or no confirmation is given.

    应用配置并等待用户确认;如果网络中断或没有确认将回滚。

  • netplan get

    Merge and display all the current available configuration on the system.

    合并并显示系统上所有当前可用的配置。

  • netplan set

    Add new setting by specifying a dotted key=value pair like ethernets.eth0.dhcp4=true.

    通过指定带点的 key=value 对来添加新设置,例如 ethernets.eth0.dhcp4=true

  • netplan info

    Show available feature flags of the currently installed version as YAML.

    将当前安装版本的可用功能标志显示为 YAML。

  • netplan ip

    Retrieve IP information from the system.

    从系统中检索 IP 信息。

  • netplan help

    Show the help message.

    显示帮助信息。

更多详细,请移步官网。

当然,作为桌面版,可以在右上角找到网络设置功能,使用图形化配置来配置。

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-04-22 19:19:35  更:2022-04-22 19:20:27 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:57:20-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码