目 录CONTENT

文章目录

OS系列06-Ubuntu系统配置网卡

cplinux98
2022-08-30 / 0 评论 / 0 点赞 / 404 阅读 / 95 字 / 正在检测是否收录...

00:文章简介

记录了Ubuntu20.04配置网卡的一些操作

!> 只在Ubuntu20.04中试验有效,其他版本未测试

01:配置静态地址

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

network:
  ethernets:
    ens33:  # 网卡名称
      addresses:
      - 10.10.100.88/24  # 静态地址
      gateway4: 10.10.100.1 # 网关
      nameservers:
        addresses: # dns
        - 10.10.100.1 
        search: []
  version: 2

应用网络配置

netplan apply
0

评论区