Ubuntu18使用netplan设置网络参考:https://www.cnblogs.com/minseo/p/11325384.html

  修改配置文件

/etc/netplan/50-cloud-init.yaml
network:
ethernets:
enp1s0:
addresses: []
# dhcp4: true
# dhcp6: true
enp2s0:
addresses: []
# dhcp4: true
# dhcp6: true
#设置聚合端口,新端口名称为eth0
bonds:
eth0:
addresses: [10.10.10.202/24]
gateway4: 10.10.10.1
nameservers:
addresses: [114.114.114.114,8.8.8.8]
#聚合端口包含那几个端口,为网口名称
interfaces:
- enp1s0
- enp2s0
#parameters:
#lacp-rate: fast
#mode: 802.3ad
#transmit-hash-policy: layer2

  重启主机即可

  PS:1,重启主机会选择其中一个物理口的mac地址作为聚合端口的mac地址,而且两个物理端口地址会一致,假如1口接触好2口断了重启以后eth0的mac地址就是1口的mac地址,反之一样。

2,中断任何一根网线,网络不会中断

  如果设置了其中两个网卡聚合还需要使用其他网卡也可以如下设置

network:
ethernets:
enp1s0:
addresses: []
# dhcp4: true
# dhcp6: true
enp2s0:
addresses: []
enp3s0:
addresses: [192.168.1.20/24]
# dhcp4: true
# dhcp6: true
#设置聚合端口,新端口名称为eth0
bonds:
eth0:
addresses: [10.10.10.202/24]
gateway4: 10.10.10.1
nameservers:
addresses: [114.114.114.114,8.8.8.8]
#聚合端口包含那几个端口,为网口名称
interfaces:
- enp1s0
- enp2s0
#parameters:
#lacp-rate: fast
#mode: 802.3ad
#transmit-hash-policy: layer2

  其中网卡1,2聚合成eth0 网卡3设置成另外一个网段的网络,可以通过手动添加默认路由的方式实现访问外网

route add default gw 192.168.1.1

  修改dns配置文件/etc/reslove.conf添加dns服务器

Ubuntu18使用netplan设置多网口绑定的更多相关文章

  1. Ubuntu18使用netplan设置网络

    参考:https://my.oschina.net/u/2306127/blog/2877106 https://blog.csdn.net/peyte1/article/details/805090 ...

  2. Linux多网口绑定配合华为5700 eth-trunk技术,提高网络性能

    在实际的环境中,服务器通过网口绑定技术,可以很容易的实现网口冗余,负载均衡,从而达到高可用的目的,而且可以提升网络的性能,大幅的提升网络I/O. 一般情况下,Linux的多网口绑定使用的是内核中的“b ...

  3. CentOS6下4网口绑定双IP

    1. 基础信息介绍    4个物理网口分别是:eth0,eth1(集成网卡),eth2,eth3(外置网卡)    其中,    内置网卡eth0和eth1绑定到bond0(192.168.224.2 ...

  4. RHEL7 网口绑定Network Teaming

    1.选择Networking Teaming配置方法 使用文本用户界面工具nmtui 使用命令行工具nmcli 使用ifcfg配置文件创建网络成组 使用图形用户界面配置网络成组     2.了解主接口 ...

  5. ubuntu16 和ubuntu18安装及设置静态ip

    1.准备ubuntu16镜像2.安装:https://zhuanlan.zhihu.com/p/1447048653.安装ubuntu后,sudo passwd root这个命令建立root用户的密码 ...

  6. Ubuntu18.04版本设置root账户

    Linux系统下文件的权限十分重要,大多数操作都需要一定的权限才可以操作,Ubuntu18.04默认安装是没有设置root账户的,因此想要获得root账户登录可以使用以下步骤:   1.首先获得临时的 ...

  7. Ubuntu18.04偏好设置

    以下只是我个人的一些偏好设置,会持续更新 一.安装中文输入法和换用中文界面 Ubuntu18.04下安装搜狗输入法 Ubuntu18.04如何从英文界面更改为中文界面 二.更改系统自带设置 1.设置- ...

  8. linux下关于Apache设置二级域名绑定二级目录的方法

    背景:对于一些论坛网站,某些目录需要制定二级域名去访问,这时候就要在apache中用二级域名绑定二级目录. 方法: 1.首先你要找到apache安装路径,在apahce安装路径下的conf文件夹中找到 ...

  9. linux下使用taskset设置进程cpu绑定不起作用

    自从大规模使用了虚拟化之后,大流量时soft interrupt在某个cpu很高就是个严重的问题,最近一有时间就研究这个问题,如果网卡本身不支持多队列的话,有没有办法缓解这个问题. 一开始使用rps, ...

随机推荐

  1. Kafka 通过python简单的生产消费实现

    使用CentOS6.5.python3.6.kafkaScala 2.10  - kafka_2.10-0.8.2.2.tgz (asc, md5) 一.下载kafka 下载地址 https://ka ...

  2. (尚004)Vue计算属性之基本使用和监视

    所做效果预览: test004.html <!DOCTYPE html><html lang="en"><head> <meta char ...

  3. Optimize Cube.js Performance with Pre-Aggregations

    转自:https://cube.dev/blog/high-performance-data-analytics-with-cubejs-pre-aggregations/ 可以了解 Pre-Aggr ...

  4. mac 安装 报错 "/usr/local/include/stdint.h:2:10: error: #include nested too deeply"

    报错详细信息 构建错误 - “#include嵌套太深” /usr/local/include/stdint.h:2:10: error: #include nested too deeply #in ...

  5. make 的使用参数

  6. 使用pytesseract进行图像识别

    引言 对于简单验证码及一些图像的识别,我们需要使用pytesseract及相应的Tesseract引擎,它是开源的OCR引擎.帮助我们做一些简单的图像识别 当然为了更好将图片识别,对一些像素比较低的图 ...

  7. 【概率论】5-10:二维正态分布(The Bivariate Normal Distributions)

    title: [概率论]5-10:二维正态分布(The Bivariate Normal Distributions) categories: - Mathematic - Probability k ...

  8. Flask一种通用视图,增删改查RESTful API的设计

    模型设计是后端开发的第一步.数据模型反映了各种对象之间的相互关系. from app import db class Role(db.Model): """角色" ...

  9. fork()函数 图解

    code #include<stdio.h> #include <getopt.h> #include<iostream> #include<string&g ...

  10. 实体类(VO,DO,DTO,PO)的划分《转载---》

    转载自:https://blog.csdn.net/u010722643/article/details/61201899 经常会接触到VO,DO,DTO的概念,本文从领域建模中的实体划分和项目中的实 ...