zoukankan      html  css  js  c++  java
  • Opentack常用技巧

    这篇博客将收集一些openstack里的使用技巧。

    1. which dhcp agent is hosting the network?

      

    2. 各个网桥port命令规则

     

        grep for port’s prefix:

        $ip address | grep e052edbb-94
        ... qbre052edbb-94: ...
        ... qvoe052edbb-94: ...
        ... qvbe052edbb-94: ...
        ... tape052edbb-94: ...

        

        tap device is the starting point

        qbr (Quantum bridge) is a Linux bridge, qbr bridge connected to tap and qvb

          $brctl show

          bridge name     bridge id         STP enabled   interfaces
          qbre052edbb-94   8000.8eb30d69e9bd   no        qvbe052edbb-94
                                          tape052edbb-94

        qvb (Quantum veth bridge) and qvo (Quantum veth openvswitch) form a Virtual Ethernet pair
          

          $ip -d link show qvoe052edbb-94
          ...
            veth
          $ip -d link show qvbe052edbb-94
          ...
            veth

        qvo device connected to br-int

          $ovs-vsctl list-ports br-int

          ...
          qvoe052edbb-94
          ...

        两个OVS网桥之间是用openvswitch的patch对组成的。    

        

       

        

        $ip netns exec qdhcp-<network_id> ip address

          … tapXYZ …

        $ovs-vsctl list-ports br-int

         ...

         tapXYZ
         ...

  • 相关阅读:
    ReactiveCocoa 谈谈RACMulticastConnection
    ReactiveCocoa 谈谈concat
    Swift 一些环境配置
    hpple 简单使用
    Swift 学习手记1,pod 的 类库使用
    [转]SQL语句:Group By总结
    Jquery VailDate初探
    C#RSA加密解密详解
    电子印章制作管理系统 -升级版本
    tensorflow 实现的第一个目标检测模型
  • 原文地址:https://www.cnblogs.com/xingyun/p/4853915.html
Copyright © 2011-2022 走看看