<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--:是v-bond的缩写--> <div id="vue"> <todo> <todo-titl ...
分类:
其他好文 时间:
2021-06-30 18:06:28
阅读次数:
0
1: 单个bond设备举例说明: 创建bond网卡(vim /etc/sysconfig/network-scripts/ifcfg-bond0): DEVICE=bond0 IPADDR=192.168.1.20 NETMASK=255.255.255.0 USERCTL=no BOOTPROTO ...
分类:
其他好文 时间:
2021-06-17 17:04:43
阅读次数:
0
写作替换词 (1) with the development of sth. → due to the proliferation of sth. proliferation /pr??l?f??re??n/ n. 增殖,扩散;分芽繁殖 (2) more and more → the number ...
分类:
其他好文 时间:
2021-06-02 20:40:06
阅读次数:
0
批量更新某个字段 例1: db.getCollection('bond_sentiment_news').find({"source" : 2,"siteUrl" : "http://www.21jingji.com/"}).forEach( function(item){ db.getCollec ...
分类:
数据库 时间:
2021-03-31 12:11:19
阅读次数:
0
##AKSHARE获取债券市场数据 AKSHARE: https://www.akshare.xyz/ ####1. 现券市场报价行情 接口: bond_spot_quote https://www.akshare.xyz/zh_CN/latest/data/bond/bond.html 目标地址: ...
分类:
其他好文 时间:
2020-12-30 11:12:42
阅读次数:
0
1.网卡配置bond#网卡bond模式 Linux 多网卡绑定网卡绑定mode共有七种(0~6) bond0、bond1、bond2、bond3、bond4、bond5、bond6 常用的有三种mode=0:平衡负载模式,有自动备援,但需要”Switch”支援及设定。mode=1:自动备援模式,其中 ...
分类:
其他好文 时间:
2020-11-01 10:14:44
阅读次数:
16
#!/bin/bash # 先备份原来的网卡配置文件 find /etc/sysconfig/network-scripts/ -type f -name "ifcfg*"|xargs cp -t /tmp # 定义要使用的变量 network_file_path=/etc/sysconfig/ne ...
分类:
其他好文 时间:
2020-10-21 21:00:30
阅读次数:
25
前言双网卡绑定单个IP地址为了提供网络的高可用性,我们可能需要将多块网卡绑定成一块虚拟网卡对外提供服务,这样即使其中的一块物理网卡出现故障,也不会导致连接中断。bond在Linux下叫bonding,IBM称为etherchanel,broadcom叫team,但是名字怎么变,效果都是将两块或更多的网卡当做一块网卡使用,在增加带宽的同时也可以提高冗余性。bond七种工作模式及特性详解bond技术提
分类:
系统相关 时间:
2020-09-08 21:02:19
阅读次数:
54
双网卡绑定单个IP地址为了提供网络的高可用性,我们可能需要将多块网卡绑定成一块虚拟网卡对外提供服务,这样即使其中的一块物理网卡出现故障,也不会导致连接中断。bond在Linux下叫bonding,IBM称为etherchanel,broadcom叫team,但是名字怎么变,效果都是将两块或更多的网卡当做一块网卡使用,在增加带宽的同时也可以提高冗余性。实现双网卡绑定的方法有两种:bond和team这
分类:
系统相关 时间:
2020-09-04 17:29:39
阅读次数:
62
实验环境:centos6centos7IP规划:centos6:eth0+eth1=bond0bond0:192.168.16.100centos7:eth0:192.168.16.66实验目的:实现centos6的网卡冗错,网卡的高可用实验步骤:centos6添加两块网卡:eth0,eth1分别配置:vimifcfg-eth0NAME=eth0DEVICE=eth0ONBOOT=yesMASTE
分类:
其他好文 时间:
2020-08-27 17:04:16
阅读次数:
65