zoukankan      html  css  js  c++  java
  • linux 7 绑定网卡

    nmcli device
    nmcli connection show
    nmcli connection delete eno33557248
    nmcli connection delete eno16777984
    nmcli connection show
    nmcli connection add type team ifname team0 con-name team0 config '{"runner": {"name":"roundrobin"}}'
    nmcli connection modify team0 ipv4.addresses 172.20.32.102/24 ipv4.gateway 172.20.32.254 ipv4.method manual
    cd /etc/sysconfig/network-scripts/
    ls
    cat ifcfg-team0
    nmcli connection add type team-slave ifname eno16777984 con-name team0-p1 master team0
    nmcli connection add type team-slave ifname eno33557248 con-name team0-p2 master team0
    nmcli connection up team0-p1
    nmcli connection up team0-p2
    nmcli connection up team0
    nmcli connection show --active
    teamdctl team0 stat

  • 相关阅读:
    Muddy Fields
    LightOJ 1321
    LightOJ 1085
    LightOJ 1278
    LightOJ 1341
    LightOJ 1340
    vijos 1426 背包+hash
    vijos 1071 01背包+输出路径
    vijos 1907 DP+滚动数组
    vijos 1037 背包+标记
  • 原文地址:https://www.cnblogs.com/cnqfz/p/12132253.html
Copyright © 2011-2022 走看看