ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

Ubuntu20.04 网卡配置

2021-03-17 16:33:23  阅读:685  来源: 互联网

标签:Ubuntu20.04 27.908 00 netplan 配置 网卡 DEBUG generate ens32


Ubuntu20.04 网络配置

网络管理工具 netplan

  1. Ubuntu20.04 版本中使用 netplan 管理网络
  2. 在安装好的 Ubuntu20.04 中没有 networkingNetworkManage 服务
  3. netplan 配置文件:/etc/netplan/*.yaml ,文件名每个不一样
  4. netplan 说明文件: /usr/share/doc/netplan/example/ 目录下,在该目录下有各种样例文件,可以提供帮助

img

修改网卡配置

  1. 编辑网络配置文件
root@it:~# vim /etc/netplan/00-installer-config.yaml
# This is the network config written by 'subiquity'
network:
  ethernets:
    ens32:
      addresses:
      - 192.168.121.25/24
      gateway4: 192.168.121.2
      nameservers:
        addresses:
        - 8.8.8.8
  version: 2
  1. 加载刚刚修改的配置文件信息
root@it:~# netplan apply
root@it:~# 
  • 没有提示报错信息,说明配置成功
root@it:~# ip add
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host 
       valid_lft forever preferred_lft forever
2: ens32: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 00:0c:29:16:8d:18 brd ff:ff:ff:ff:ff:ff
    inet 192.168.121.25/24 brd 192.168.121.255 scope global ens32
       valid_lft forever preferred_lft forever
    inet6 fe80::20c:29ff:fe16:8d18/64 scope link 
       valid_lft forever preferred_lft forever

netplan 帮助信息

root@it:~# netplan help
usage: /usr/sbin/netplan  [-h] [--debug]  ...

Network configuration in YAML        #YAML中的网络配置

optional arguments:
  -h, --help  show this help message and exit        #显示此帮助信息并退出
  --debug     Enable debug messages        #启用调试消息

Available commands:
  
    help      Show this help message        #显示帮助信息
    apply     Apply current netplan config to running system         #应用当前netplan配置到运行系统
    generate  Generate backend specific configuration files from /etc/netplan/*.yaml       #从/etc/netplan/*.yaml中生成特定后端配置文件
    info      Show current netplan version and available features       #显示当前netplan版本和可用特性
    ip        Retrieve IP information from the system        #从系统中检索IP信息
    try       Try to apply a new netplan config to running system, with automatic rollback        #尝试将新的netplan配置应用到正在运行的系统,并自动回滚
  1. 启用调试信息
root@it:~# netplan --debug apply
** (generate:3189): DEBUG: 01:15:27.908: Processing input file /etc/netplan/00-installer-config.yaml..
** (generate:3189): DEBUG: 01:15:27.908: starting new processing pass
** (generate:3189): DEBUG: 01:15:27.908: We have some netdefs, pass them through a final round of validation
** (generate:3189): DEBUG: 01:15:27.908: ens32: setting default backend to 1
** (generate:3189): DEBUG: 01:15:27.908: Configuration is valid
** (generate:3189): DEBUG: 01:15:27.908: Generating output files..
** (generate:3189): DEBUG: 01:15:27.908: NetworkManager: definition ens32 is not for us (backend 1)
(generate:3189): GLib-DEBUG: 01:15:27.908: posix_spawn avoided (fd close requested) 
DEBUG:netplan generated networkd configuration changed, restarting networkd
DEBUG:no netplan generated NM configuration exists
DEBUG:ens32 not found in {}
DEBUG:Merged config:
network:
  bonds: {}
  bridges: {}
  ethernets:
    ens32:
      addresses:
      - 192.168.121.25/24
      gateway4: 192.168.121.2
      nameservers:
        addresses:
        - 8.8.8.8
  vlans: {}
  wifis: {}

DEBUG:Skipping non-physical interface: lo
DEBUG:device ens32 operstate is up, not changing
DEBUG:{}
DEBUG:netplan triggering .link rules for lo
DEBUG:netplan triggering .link rules for ens32

标签:Ubuntu20.04,27.908,00,netplan,配置,网卡,DEBUG,generate,ens32
来源: https://www.cnblogs.com/Gmiaomiao/p/14550151.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有