networkstatic

Fedora DevStack Build GRE Tunnels

Nov 21st, 2013
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 74.04 KB | None | 0 0
  1.  
  2.  
  3. Controller: fedora2 -- 172.16.58.139
  4. Compute: fedora1 -- 172.16.58.136
  5.  
  6. ================================
  7.  
  8. To boot into any compute node you want, we need to give the demo tenant an admin role.
  9.  
  10. The following will force a tenant VM to boot onto the specified (fedora1 compute) nova compute host. The DevStack "demo" project does not have the permissions in its default role so we need to add this ID to the "admin" role.
  11. nova boot --flavor m1.nano --image 8261eca8-7c88-4dfc-b198-b1b92e3ef916 --nic net-id=58e717fc-0ea1-4845-9fe5-9ca2159b55f3 admin2vm1 --availability_zone=nova:fedora1
  12.  
  13. Add the demo user to the admin role to use the availability-zone option with the following. Grab demo related uuids from the following commands and plug them into the last.
  14.  
  15. -keystone tenant-list
  16. -keystone user-list
  17. -keystone role-list
  18. -keystone user-role-add --user 73cb82d1bcae4b98a8ad2fa89c57fcb7 --role fa143e6628e8421dbc131c98eb7ccf22 --tenant_id 471c5556be1b4929acd30b4f35b44f68
  19.  
  20. Now . ./openrc demo demo
  21. nova boot --flavor m1.nano --image 8261eca8-7c88-4dfc-b198-b1b92e3ef916 --nic net-id=58e717fc-0ea1-4845-9fe5-9ca2159b55f3 admin2vm1 --availability_zone=nova:fedora1
  22.  
  23. Will boot a host on the specified compute node
  24.  
  25. ============================= nova-list demo tenant =====================
  26.  
  27. [brent@fedora1 devstack]$ . ./openrc demo demo
  28. [brent@fedora1 devstack]$ nova list
  29. +--------------------------------------+-------+--------+------------+-------------+------------------+
  30. | ID | Name | Status | Task State | Power State | Networks |
  31. +--------------------------------------+-------+--------+------------+-------------+------------------+
  32. | 397abecb-ab8d-4dc7-a881-a9de929d73ef | f2vm1 | ACTIVE | None | Running | private=10.0.0.7 |
  33. | 2c0aa5ad-5a88-49ea-b452-03071cebdd28 | r2vm2 | ACTIVE | None | Running | private=10.0.0.4 |
  34. | b12960cf-6125-4d5a-a984-975c57ccc2d5 | r2vm3 | ACTIVE | None | Running | private=10.0.0.5 |
  35. | f7ccb75e-522f-409e-b268-6bed79fa7473 | r2vm3 | ACTIVE | None | Running | private=10.0.0.6 |
  36. +--------------------------------------+-------+--------+------------+-------------+------------------+
  37.  
  38. ============================= nova-list demo tenant =====================
  39. [brent@fedora1 devstack]$ . ./openrc admin admin
  40. [brent@fedora1 devstack]$ nova list
  41. +--------------------------------------+-----------+--------+------------+-------------+------------------+
  42. | ID | Name | Status | Task State | Power State | Networks |
  43. +--------------------------------------+-----------+--------+------------+-------------+------------------+
  44. | 62c26e76-1d20-424c-a82d-242d85b45d42 | admin2vm1 | ACTIVE | None | Running | private=10.0.0.8 |
  45. | e3fe70b7-5516-464c-96f3-923062e05173 | r2vm1 | ACTIVE | None | Running | private=10.0.0.3 |
  46. +--------------------------------------+-----------+--------+------------+-------------+------------------+
  47.  
  48.  
  49. ============================= neutron router-list =====================
  50.  
  51. #neutron router-list
  52. +--------------------------------------+---------+-----------------------------------------------------------------------------+
  53. | id | name | external_gateway_info |
  54. +--------------------------------------+---------+-----------------------------------------------------------------------------+
  55. | 1fbed97e-c642-44c7-a9f5-f476f477c7a7 | router1 | {"network_id": "1d5dc244-1eb3-4ea0-b0ef-9f37420571aa", "enable_snat": true} |
  56. +--------------------------------------+---------+-----------------------------------------------------------------------------+
  57.  
  58.  
  59. ============================= ovs Table for br-int Compute Node =====================
  60.  
  61. [brent@fedora1 devstack]$ sudo ovs-ofctl dump-tables br-int
  62. OFPST_TABLE reply (xid=0x2): 254 tables
  63. 0: classifier: wild=0x3fffff, max=1000000, active=1
  64. lookup=139, matched=138
  65. 1: table1 : wild=0x3fffff, max=1000000, active=0
  66. lookup=0, matched=0
  67.  
  68. ========================= ovs-Table for br-tun Compute Node =========================
  69.  
  70. [brent@fedora1 devstack]$ sudo ovs-ofctl dump-tables br-tun
  71. OFPST_TABLE reply (xid=0x2): 254 tables
  72. 0: classifier: wild=0x3fffff, max=1000000, active=3
  73. lookup=139, matched=137
  74. 1: table1 : wild=0x3fffff, max=1000000, active=2
  75. lookup=0, matched=0
  76. 2: table2 : wild=0x3fffff, max=1000000, active=2
  77. lookup=0, matched=0
  78. 3: table3 : wild=0x3fffff, max=1000000, active=1
  79. lookup=0, matched=0
  80. 4: table4 : wild=0x3fffff, max=1000000, active=0
  81. lookup=0, matched=0
  82. 5: table5 : wild=0x3fffff, max=1000000, active=0
  83. lookup=0, matched=0
  84. 6: table6 : wild=0x3fffff, max=1000000, active=0
  85. lookup=0, matched=0
  86. 7: table7 : wild=0x3fffff, max=1000000, active=0
  87. lookup=0, matched=0
  88. 8: table8 : wild=0x3fffff, max=1000000, active=0
  89. lookup=0, matched=0
  90. 9: table9 : wild=0x3fffff, max=1000000, active=0
  91. lookup=0, matched=0
  92. 10: table10 : wild=0x3fffff, max=1000000, active=1
  93. lookup=0, matched=0
  94. 11: table11 : wild=0x3fffff, max=1000000, active=0
  95. lookup=0, matched=0
  96.  
  97. ============================== ovs-ofctl from Compute Node ================================
  98.  
  99. [brent@fedora1 devstack]$ sudo ovs-ofctl dump-flows br-int
  100. NXST_FLOW reply (xid=0x4):
  101. cookie=0x0, duration=9295.22s, table=0, n_packets=95, n_bytes=11430, idle_age=115, priority=1 actions=NORMAL
  102. [brent@fedora1 devstack]$ sudo ovs-ofctl dump-flows br-tun
  103. NXST_FLOW reply (xid=0x4):
  104. cookie=0x0, duration=9289.549s, table=0, n_packets=36, n_bytes=3716, idle_age=120, priority=1,in_port=1 actions=resubmit(,1)
  105. cookie=0x0, duration=9277.941s, table=0, n_packets=57, n_bytes=7554, idle_age=124, priority=1,in_port=2 actions=resubmit(,2)
  106. cookie=0x0, duration=9288.606s, table=0, n_packets=1, n_bytes=70, idle_age=9287, priority=0 actions=drop
  107. cookie=0x0, duration=9288.002s, table=1, n_packets=16, n_bytes=1300, idle_age=124, priority=0,dl_dst=00:00:00:00:00:00/01:00:00:00:00:00 actions=resubmit(,20)
  108. cookie=0x0, duration=9287.336s, table=1, n_packets=20, n_bytes=2416, idle_age=120, priority=0,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=resubmit(,21)
  109. cookie=0x0, duration=8810.795s, table=2, n_packets=57, n_bytes=7554, idle_age=124, priority=1,tun_id=0x1 actions=mod_vlan_vid:1,resubmit(,10)
  110. cookie=0x0, duration=9286.754s, table=2, n_packets=0, n_bytes=0, idle_age=9286, priority=0 actions=drop
  111. cookie=0x0, duration=9286.12s, table=3, n_packets=0, n_bytes=0, idle_age=9286, priority=0 actions=drop
  112. cookie=0x0, duration=9285.505s, table=10, n_packets=57, n_bytes=7554, idle_age=124, priority=1 actions=learn(table=20,hard_timeout=300,priority=1,NXM_OF_VLAN_TCI[0..11],NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[],load:0->NXM_OF_VLAN_TCI[],load:NXM_NX_TUN_ID[]->NXM_NX_TUN_ID[],output:NXM_OF_IN_PORT[]),output:1
  113. cookie=0x0, duration=129.145s, table=20, n_packets=2, n_bytes=140, hard_timeout=300, idle_age=124, hard_age=123, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:6f:53:28 actions=load:0->NXM_OF_VLAN_TCI[],load:0x1->NXM_NX_TUN_ID[],output:2
  114. cookie=0x0, duration=129.383s, table=20, n_packets=6, n_bytes=510, hard_timeout=300, idle_age=129, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:ac:df:03 actions=load:0->NXM_OF_VLAN_TCI[],load:0x1->NXM_NX_TUN_ID[],output:2
  115. cookie=0x0, duration=9284.898s, table=20, n_packets=0, n_bytes=0, idle_age=9284, priority=0 actions=resubmit(,21)
  116. cookie=0x0, duration=8811.279s, table=21, n_packets=20, n_bytes=2416, idle_age=120, priority=1,dl_vlan=1 actions=strip_vlan,set_tunnel:0x1,output:2
  117. cookie=0x0, duration=9284.407s, table=21, n_packets=0, n_bytes=0, idle_age=9284, priority=0 actions=drop
  118.  
  119. ============================= Resubmit Action ===========================================
  120.  
  121. (The resubmit action can search OpenFlow flow tables with arbitrary in_port values, so flows that match port numbers that do not exist from an OpenFlow perspective can still potentially be matched.)
  122.  
  123. ============================== ovs-vsctl show from Compute Node ================================
  124.  
  125. ad6767c0-f906-485b-bde0-c6805772bff9
  126. Bridge br-tun
  127. Port patch-int
  128. Interface patch-int
  129. type: patch
  130. options: {peer=patch-tun}
  131. Port br-tun
  132. Interface br-tun
  133. type: internal
  134. Port "gre-172.16.58.139"
  135. Interface "gre-172.16.58.139"
  136. type: gre
  137. options: {in_key=flow, local_ip="172.16.58.136", out_key=flow, remote_ip="172.16.58.139"}
  138. Bridge br-int
  139. Port patch-tun
  140. Interface patch-tun
  141. type: patch
  142. options: {peer=patch-int}
  143. Port "tap00b9dc6d-7d"
  144. tag: 1
  145. Interface "tap00b9dc6d-7d"
  146. Port "tapcfe489f1-80"
  147. tag: 1
  148. Interface "tapcfe489f1-80"
  149. Port "tap552a2c98-60"
  150. tag: 1
  151. Interface "tap552a2c98-60"
  152. Port br-int
  153. Interface br-int
  154. type: internal
  155. ovs_version: "1.11.0"
  156.  
  157.  
  158. ============================== ovsdb-client dump from Compute Node ================================
  159.  
  160.  
  161. [brent@fedora1 devstack]$ sudo ovsdb-client dump
  162. Bridge table
  163. _uuid controller datapath_id datapath_type external_ids fail_mode flood_vlans flow_tables ipfix mirrors name netflow other_config ports protocols sflow status stp_enable
  164. ------------------------------------ ---------- ------------------ ------------- ------------------ --------- ----------- ----------- ----- ------- ------ ------- ------------ ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --------- ----- ------ ----------
  165. 5bb0f178-3980-4020-8e3b-6adeed671623 [] "00007af1b05b2040" "" {} [] [] {} [] [] br-tun [] {} [2870fe70-17f8-4b93-a28d-bd68c4222693, 32f86ac0-d209-405e-89c0-4f877b96ed1c, fa5b7332-b53e-469f-9fb4-2e490b17549d] [] [] {} false
  166. 968cedf0-1b60-4a96-ad40-2133f29b9107 [] "0000f2ed8c96964a" "" {bridge-id=br-int} [] [] {} [] [] br-int [] {} [5450e91a-ec29-4e5a-bedf-e7e6e1adda89, a1091455-efe9-4eb2-b98a-772ad8b8707a, cc90d985-d6c1-410f-aae2-5d2f6ec0fd51, cddfabae-1969-40d9-bd17-6c83781b22fb, e6da3502-5250-4fce-9b74-ce6fa644f04e] [] [] {} false
  167.  
  168. Controller table
  169. _uuid connection_mode controller_burst_limit controller_rate_limit enable_async_messages external_ids inactivity_probe is_connected local_gateway local_ip local_netmask max_backoff other_config role status target
  170. ----- --------------- ---------------------- --------------------- --------------------- ------------ ---------------- ------------ ------------- -------- ------------- ----------- ------------ ---- ------ ------
  171.  
  172. Flow_Sample_Collector_Set table
  173. _uuid bridge external_ids id ipfix
  174. ----- ------ ------------ -- -----
  175.  
  176. Flow_Table table
  177. _uuid flow_limit groups name overflow_policy
  178. ----- ---------- ------ ---- ---------------
  179.  
  180. IPFIX table
  181. _uuid external_ids obs_domain_id obs_point_id sampling targets
  182. ----- ------------ ------------- ------------ -------- -------
  183.  
  184. Interface table
  185. _uuid admin_state cfm_fault cfm_fault_status cfm_health cfm_mpid cfm_remote_mpids cfm_remote_opstate duplex external_ids ingress_policing_burst ingress_policing_rate lacp_current link_resets link_speed link_state mac mac_in_use mtu name ofport ofport_request options other_config statistics status type
  186. ------------------------------------ ----------- --------- ---------------- ---------- -------- ---------------- ------------------ ------ ------------------------------------------------------------------------------------------------------------------------------------------------------ ---------------------- --------------------- ------------ ----------- ---------- ---------- --- ------------------- ---- ------------------- ------ -------------- -------------------------------------------------------------------------------- ------------ ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------- --------
  187. 6a16103f-a12f-418b-a150-9bbf7fe8a37d up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "6e:32:40:25:8b:fe" [] patch-int 1 [] {peer=patch-tun} {} {collisions=0, rx_bytes=5574, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=54, tx_bytes=9018, tx_dropped=0, tx_errors=0, tx_packets=69} {} patch
  188. 9d03afe9-de39-4bda-b369-990433187fb9 up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "ca:95:1b:fb:39:f2" [] "gre-172.16.58.139" 2 [] {in_key=flow, local_ip="172.16.58.136", out_key=flow, remote_ip="172.16.58.139"} {} {collisions=0, rx_bytes=4263, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=34, tx_bytes=5574, tx_dropped=0, tx_errors=0, tx_packets=54} {tunnel_egress_iface="eno16777736", tunnel_egress_iface_carrier=up} gre
  189. 115b9d4c-4ae1-4a60-995a-1fe79aa12aa4 up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "da:e6:2f:9f:43:13" [] patch-tun 1 [] {peer=patch-int} {} {collisions=0, rx_bytes=9018, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=69, tx_bytes=5574, tx_dropped=0, tx_errors=0, tx_packets=54} {} patch
  190. bacf7b01-dc54-4a3b-a0be-b226e116577a up [] [] [] [] [] [] [] {} 0 0 [] 2 [] up [] "7a:f1:b0:5b:20:40" 1500 br-tun 65534 [] {} {} {collisions=0, rx_bytes=648, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=8, tx_bytes=0, tx_dropped=0, tx_errors=0, tx_packets=0} {driver_name=openvswitch} internal
  191. a5818c96-4f83-4a96-bb37-aada249a610a up [] [] [] [] [] [] [] {} 0 0 [] 2 [] up [] "f2:ed:8c:96:96:4a" 1500 br-int 65534 [] {} {} {collisions=0, rx_bytes=648, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=8, tx_bytes=8250, tx_dropped=0, tx_errors=0, tx_packets=63} {driver_name=openvswitch} internal
  192. 510520ce-8c25-4d7e-b0ac-468f955cb5ff up [] [] [] [] [] [] full {attached-mac="fa:16:3e:6f:83:5e", iface-id="00b9dc6d-7de4-415b-ac89-5e3fdf559f17", iface-status=active, vm-id="62c26e76-1d20-424c-a82d-242d85b45d42"} 0 0 [] 1 10000000 up [] "fe:16:3e:6f:83:5e" 1500 "tap00b9dc6d-7d" 4 [] {} {} {collisions=0, rx_bytes=1858, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=18, tx_bytes=1464, tx_dropped=0, tx_errors=0, tx_packets=12} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  193. 14024788-4a5b-49cf-8a25-deaa69921092 up [] [] [] [] [] [] full {attached-mac="fa:16:3e:7e:ef:a5", iface-id="cfe489f1-8089-49ea-be34-a5cf82fa1e8e", iface-status=active, vm-id="397abecb-ab8d-4dc7-a881-a9de929d73ef"} 0 0 [] 1 10000000 up [] "fe:16:3e:7e:ef:a5" 1500 "tapcfe489f1-80" 3 [] {} {} {collisions=0, rx_bytes=1858, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=18, tx_bytes=2672, tx_dropped=0, tx_errors=0, tx_packets=22} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  194. 39cf37d4-3642-4402-8f41-52e2eecb4da1 up [] [] [] [] [] [] full {attached-mac="fa:16:3e:88:03:c9", iface-id="552a2c98-6046-40df-9d08-a1fe39766728", iface-status=active, vm-id="e3fe70b7-5516-464c-96f3-923062e05173"} 0 0 [] 1 10000000 up [] "fe:16:3e:88:03:c9" 1500 "tap552a2c98-60" 2 [] {} {} {collisions=0, rx_bytes=1858, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=18, tx_bytes=8506, tx_dropped=0, tx_errors=0, tx_packets=65} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  195.  
  196. Manager table
  197. _uuid connection_mode external_ids inactivity_probe is_connected max_backoff other_config status target
  198. ----- --------------- ------------ ---------------- ------------ ----------- ------------ ------ ------
  199.  
  200. Mirror table
  201. _uuid external_ids name output_port output_vlan select_all select_dst_port select_src_port select_vlan statistics
  202. ----- ------------ ---- ----------- ----------- ---------- --------------- --------------- ----------- ----------
  203.  
  204. NetFlow table
  205. _uuid active_timeout add_id_to_interface engine_id engine_type external_ids targets
  206. ----- -------------- ------------------- --------- ----------- ------------ -------
  207.  
  208. Open_vSwitch table
  209. _uuid bridges cur_cfg db_version external_ids manager_options next_cfg other_config ovs_version ssl statistics system_type system_version
  210. ------------------------------------ ---------------------------------------------------------------------------- ------- ---------- -------------------------------------------------- --------------- -------- ------------ ----------- --- ---------- ----------- --------------
  211. ad6767c0-f906-485b-bde0-c6805772bff9 [5bb0f178-3980-4020-8e3b-6adeed671623, 968cedf0-1b60-4a96-ad40-2133f29b9107] 27 "7.1.0" {system-id="8834615c-4196-43d5-989e-a288ec8fcb19"} [] 27 {} "1.11.0" [] {} unknown unknown
  212.  
  213. Port table
  214. _uuid bond_downdelay bond_fake_iface bond_mode bond_updelay external_ids fake_bridge interfaces lacp mac name other_config qos statistics status tag trunks vlan_mode
  215. ------------------------------------ -------------- --------------- --------- ------------ ------------ ----------- -------------------------------------- ---- --- ------------------- ------------ --- ---------- ------ --- ------ ---------
  216. e6da3502-5250-4fce-9b74-ce6fa644f04e 0 false [] 0 {} false [a5818c96-4f83-4a96-bb37-aada249a610a] [] [] br-int {} [] {} {} [] [] []
  217. 32f86ac0-d209-405e-89c0-4f877b96ed1c 0 false [] 0 {} false [bacf7b01-dc54-4a3b-a0be-b226e116577a] [] [] br-tun {} [] {} {} [] [] []
  218. fa5b7332-b53e-469f-9fb4-2e490b17549d 0 false [] 0 {} false [9d03afe9-de39-4bda-b369-990433187fb9] [] [] "gre-172.16.58.139" {} [] {} {} [] [] []
  219. 2870fe70-17f8-4b93-a28d-bd68c4222693 0 false [] 0 {} false [6a16103f-a12f-418b-a150-9bbf7fe8a37d] [] [] patch-int {} [] {} {} [] [] []
  220. 5450e91a-ec29-4e5a-bedf-e7e6e1adda89 0 false [] 0 {} false [115b9d4c-4ae1-4a60-995a-1fe79aa12aa4] [] [] patch-tun {} [] {} {} [] [] []
  221. a1091455-efe9-4eb2-b98a-772ad8b8707a 0 false [] 0 {} false [510520ce-8c25-4d7e-b0ac-468f955cb5ff] [] [] "tap00b9dc6d-7d" {} [] {} {} 1 [] []
  222. cddfabae-1969-40d9-bd17-6c83781b22fb 0 false [] 0 {} false [39cf37d4-3642-4402-8f41-52e2eecb4da1] [] [] "tap552a2c98-60" {} [] {} {} 1 [] []
  223. cc90d985-d6c1-410f-aae2-5d2f6ec0fd51 0 false [] 0 {} false [14024788-4a5b-49cf-8a25-deaa69921092] [] [] "tapcfe489f1-80" {} [] {} {} 1 [] []
  224.  
  225. QoS table
  226. _uuid external_ids other_config queues type
  227. ----- ------------ ------------ ------ ----
  228.  
  229. Queue table
  230. _uuid dscp external_ids other_config
  231. ----- ---- ------------ ------------
  232.  
  233. SSL table
  234. _uuid bootstrap_ca_cert ca_cert certificate external_ids private_key
  235. ----- ----------------- ------- ----------- ------------ -----------
  236.  
  237. sFlow table
  238. _uuid agent external_ids header polling sampling targets
  239. ----- ----- ------------ ------ ------- -------- -------
  240.  
  241. ============================== ovsdb-client dump from Controller Node ================================
  242.  
  243. [brent@fedora2 devstack]$ sudo ovsdb-client dump
  244. Bridge table
  245. _uuid controller datapath_id datapath_type external_ids fail_mode flood_vlans flow_tables ipfix mirrors name netflow other_config ports protocols sflow status stp_enable
  246. ------------------------------------ ---------- ------------------ ------------- ------------------ --------- ----------- ----------- ----- ------- ------ ------- ------------ -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --------- ----- ------ ----------
  247. 462fc407-38cc-4902-acd8-cd3053c71cee [] "000006c42f460249" "" {} [] [] {} [] [] br-tun [] {} [1a8e888b-30b7-423a-9a07-f464657cb237, a1f6812a-33a0-4e26-b024-dbea1cd1c8d7, e4650535-8751-4a39-a24e-56a9ed59e7d3] [] [] {} false
  248. eeef5088-2789-47d6-ab5d-cbbd3745f015 [] "00008a50efeed647" "" {bridge-id=br-ex} [] [] {} [] [] br-ex [] {} [d131c243-c6b6-4656-ac75-731c26377358, f98d5da9-b6be-476d-8fab-d8b400bebfcf] [] [] {} false
  249. 17d26fcf-894c-4d97-b48f-0e0a6f180798 [] "0000ce6fd217974d" "" {bridge-id=br-int} [] [] {} [] [] br-int [] {} [17b91b18-1afe-477d-ac5c-4e2db323c37f, 509e9068-e944-4515-a206-442b85fdeaeb, 594ae4fb-4f1d-4fef-8e6f-a00ff048c20e, 6d34b43d-a057-4bfb-ba00-55912c8fb6f5, 80b70ea5-0c45-4baa-ac94-702a6d0ac678, c7676339-0720-4543-8226-ef886153dedd, fe72c52f-d2c7-4627-8876-06ae7fc3cba5] [] [] {} false
  250.  
  251. Controller table
  252. _uuid connection_mode controller_burst_limit controller_rate_limit enable_async_messages external_ids inactivity_probe is_connected local_gateway local_ip local_netmask max_backoff other_config role status target
  253. ----- --------------- ---------------------- --------------------- --------------------- ------------ ---------------- ------------ ------------- -------- ------------- ----------- ------------ ---- ------ ------
  254.  
  255. Flow_Sample_Collector_Set table
  256. _uuid bridge external_ids id ipfix
  257. ----- ------ ------------ -- -----
  258.  
  259. Flow_Table table
  260. _uuid flow_limit groups name overflow_policy
  261. ----- ---------- ------ ---- ---------------
  262.  
  263. IPFIX table
  264. _uuid external_ids obs_domain_id obs_point_id sampling targets
  265. ----- ------------ ------------- ------------ -------- -------
  266.  
  267. Interface table
  268. _uuid admin_state cfm_fault cfm_fault_status cfm_health cfm_mpid cfm_remote_mpids cfm_remote_opstate duplex external_ids ingress_policing_burst ingress_policing_rate lacp_current link_resets link_speed link_state mac mac_in_use mtu name ofport ofport_request options other_config statistics status type
  269. ------------------------------------ ----------- --------- ---------------- ---------- -------- ---------------- ------------------ ------ ------------------------------------------------------------------------------------------------------------------------------------------------------ ---------------------- --------------------- ------------ ----------- ---------- ---------- --- ------------------- ---- ------------------- ------ -------------- -------------------------------------------------------------------------------- ------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------- --------
  270. 7ae150c9-0dc3-4a04-bfd3-a6adc0edc6e4 down [] [] [] [] [] [] [] {attached-mac="fa:16:3e:6f:53:28", iface-id="b08aa5f0-9706-41e0-af50-b70aa4f6b84f", iface-status=active} 0 0 [] 3 [] down [] [] [] "qr-b08aa5f0-97" 3 [] {} {} {collisions=0, rx_bytes=1908, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=28, tx_bytes=9250, tx_dropped=0, tx_errors=0, tx_packets=77} {driver_name=openvswitch} internal
  271. f8609e91-5b86-4e2e-89a3-0c25053bd578 down [] [] [] [] [] [] [] {attached-mac="fa:16:3e:7c:a0:fa", iface-id="d71cd17e-3dc1-4a10-a731-36fbe900c48e", iface-status=active} 0 0 [] 3 [] down [] [] [] "qg-d71cd17e-3d" 1 [] {} {} {collisions=0, rx_bytes=816, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=10, tx_bytes=0, tx_dropped=0, tx_errors=0, tx_packets=0} {driver_name=openvswitch} internal
  272. fa0b8a50-cad1-41c3-90b3-1e5948862120 down [] [] [] [] [] [] [] {attached-mac="fa:16:3e:ac:df:03", iface-id="629d5b16-45ce-4d90-b7f1-1e7231dd72ee", iface-status=active} 0 0 [] 3 [] down [] [] [] "tap629d5b16-45" 2 [] {} {} {collisions=0, rx_bytes=9981, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=76, tx_bytes=11790, tx_dropped=0, tx_errors=0, tx_packets=105} {driver_name=openvswitch} internal
  273. 529f0d8c-0300-4dfe-b964-c881e9312905 up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "0e:a8:20:1b:de:8c" [] "gre-172.16.58.136" 2 [] {in_key=flow, local_ip="172.16.58.139", out_key=flow, remote_ip="172.16.58.136"} {} {collisions=0, rx_bytes=2787, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=25, tx_bytes=9018, tx_dropped=0, tx_errors=0, tx_packets=69} {tunnel_egress_iface="eno16777736", tunnel_egress_iface_carrier=up} gre
  274. 42b289e5-bffb-4963-bcdc-f6c505daf7e9 up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "16:cd:12:89:ed:ac" [] patch-int 1 [] {peer=patch-tun} {} {collisions=0, rx_bytes=10650, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=89, tx_bytes=5734, tx_dropped=0, tx_errors=0, tx_packets=56} {} patch
  275. 45c75688-f798-4de5-bbec-fadd38179d20 up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "36:3f:09:57:40:0f" [] patch-tun 1 [] {peer=patch-int} {} {collisions=0, rx_bytes=5734, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=56, tx_bytes=10650, tx_dropped=0, tx_errors=0, tx_packets=89} {} patch
  276. a4e63e47-6d32-4204-8ec3-fa4100dceabf up [] [] [] [] [] [] [] {} 0 0 [] 2 [] up [] "06:c4:2f:46:02:49" 1500 br-tun 65534 [] {} {} {collisions=0, rx_bytes=648, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=8, tx_bytes=0, tx_dropped=0, tx_errors=0, tx_packets=0} {driver_name=openvswitch} internal
  277. 29e0f185-058f-46f7-b6b4-617647bbe8ee up [] [] [] [] [] [] [] {} 0 0 [] 2 [] up [] "8a:50:ef:ee:d6:47" 1500 br-ex 65534 [] {} {} {collisions=0, rx_bytes=270, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=3, tx_bytes=816, tx_dropped=0, tx_errors=0, tx_packets=10} {driver_name=openvswitch} internal
  278. eebcb636-ae8a-4caa-80d6-935a0999785e up [] [] [] [] [] [] [] {} 0 0 [] 2 [] up [] "ce:6f:d2:17:97:4d" 1500 br-int 65534 [] {} {} {collisions=0, rx_bytes=648, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=8, tx_bytes=10042, tx_dropped=0, tx_errors=0, tx_packets=85} {driver_name=openvswitch} internal
  279. e392dae5-c9ba-47b5-b432-58e7b60e55d5 up [] [] [] [] [] [] full {attached-mac="fa:16:3e:04:c1:e1", iface-id="d793fce2-c1e0-487f-879a-839c5ce530ce", iface-status=active, vm-id="2c0aa5ad-5a88-49ea-b452-03071cebdd28"} 0 0 [] 1 10000000 up [] "fe:16:3e:04:c1:e1" 1500 "tapd793fce2-c1" 4 [] {} {} {collisions=0, rx_bytes=2192, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=19, tx_bytes=7455, tx_dropped=0, tx_errors=0, tx_packets=58} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  280. 8ed28fa6-e404-44b0-abcc-4780c1b3066c up [] [] [] [] [] [] full {attached-mac="fa:16:3e:15:8c:c4", iface-id="a304e38d-1d5e-49ae-8852-4916978b5807", iface-status=active, vm-id="f7ccb75e-522f-409e-b268-6bed79fa7473"} 0 0 [] 1 10000000 up [] "fe:16:3e:15:8c:c4" 1500 "tapa304e38d-1d" 6 [] {} {} {collisions=0, rx_bytes=2192, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=19, tx_bytes=4789, tx_dropped=0, tx_errors=0, tx_packets=39} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  281. 5270ab85-ff62-4bea-8893-0060429507b9 up [] [] [] [] [] [] full {attached-mac="fa:16:3e:39:98:dc", iface-id="5ae0f0cb-78e6-4682-aa13-8f673d78f5a4", iface-status=active, vm-id="b12960cf-6125-4d5a-a984-975c57ccc2d5"} 0 0 [] 1 10000000 up [] "fe:16:3e:39:98:dc" 1500 "tap5ae0f0cb-78" 5 [] {} {} {collisions=0, rx_bytes=2192, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=19, tx_bytes=6331, tx_dropped=0, tx_errors=0, tx_packets=50} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  282.  
  283. Manager table
  284. _uuid connection_mode external_ids inactivity_probe is_connected max_backoff other_config status target
  285. ----- --------------- ------------ ---------------- ------------ ----------- ------------ ------ ------
  286.  
  287. Mirror table
  288. _uuid external_ids name output_port output_vlan select_all select_dst_port select_src_port select_vlan statistics
  289. ----- ------------ ---- ----------- ----------- ---------- --------------- --------------- ----------- ----------
  290.  
  291. NetFlow table
  292. _uuid active_timeout add_id_to_interface engine_id engine_type external_ids targets
  293. ----- -------------- ------------------- --------- ----------- ------------ -------
  294.  
  295. Open_vSwitch table
  296. _uuid bridges cur_cfg db_version external_ids manager_options next_cfg other_config ovs_version ssl statistics system_type system_version
  297. ------------------------------------ ------------------------------------------------------------------------------------------------------------------ ------- ---------- -------------------------------------------------- --------------- -------- ------------ ----------- --- ---------- ----------- --------------
  298. 1b24b28e-0930-4726-a4bd-39f5d5b5dd52 [17d26fcf-894c-4d97-b48f-0e0a6f180798, 462fc407-38cc-4902-acd8-cd3053c71cee, eeef5088-2789-47d6-ab5d-cbbd3745f015] 24 "7.1.0" {system-id="3597684e-bcf7-4af2-b559-caf9317e881a"} [] 24 {} "1.11.0" [] {} unknown unknown
  299.  
  300. Port table
  301. _uuid bond_downdelay bond_fake_iface bond_mode bond_updelay external_ids fake_bridge interfaces lacp mac name other_config qos statistics status tag trunks vlan_mode
  302. ------------------------------------ -------------- --------------- --------- ------------ ------------ ----------- -------------------------------------- ---- --- ------------------- ------------ --- ---------- ------ --- ------ ---------
  303. f98d5da9-b6be-476d-8fab-d8b400bebfcf 0 false [] 0 {} false [29e0f185-058f-46f7-b6b4-617647bbe8ee] [] [] br-ex {} [] {} {} [] [] []
  304. 6d34b43d-a057-4bfb-ba00-55912c8fb6f5 0 false [] 0 {} false [eebcb636-ae8a-4caa-80d6-935a0999785e] [] [] br-int {} [] {} {} [] [] []
  305. e4650535-8751-4a39-a24e-56a9ed59e7d3 0 false [] 0 {} false [a4e63e47-6d32-4204-8ec3-fa4100dceabf] [] [] br-tun {} [] {} {} [] [] []
  306. a1f6812a-33a0-4e26-b024-dbea1cd1c8d7 0 false [] 0 {} false [529f0d8c-0300-4dfe-b964-c881e9312905] [] [] "gre-172.16.58.136" {} [] {} {} [] [] []
  307. 1a8e888b-30b7-423a-9a07-f464657cb237 0 false [] 0 {} false [42b289e5-bffb-4963-bcdc-f6c505daf7e9] [] [] patch-int {} [] {} {} [] [] []
  308. c7676339-0720-4543-8226-ef886153dedd 0 false [] 0 {} false [45c75688-f798-4de5-bbec-fadd38179d20] [] [] patch-tun {} [] {} {} [] [] []
  309. d131c243-c6b6-4656-ac75-731c26377358 0 false [] 0 {} false [f8609e91-5b86-4e2e-89a3-0c25053bd578] [] [] "qg-d71cd17e-3d" {} [] {} {} [] [] []
  310. fe72c52f-d2c7-4627-8876-06ae7fc3cba5 0 false [] 0 {} false [7ae150c9-0dc3-4a04-bfd3-a6adc0edc6e4] [] [] "qr-b08aa5f0-97" {} [] {} {} 1 [] []
  311. 80b70ea5-0c45-4baa-ac94-702a6d0ac678 0 false [] 0 {} false [5270ab85-ff62-4bea-8893-0060429507b9] [] [] "tap5ae0f0cb-78" {} [] {} {} 1 [] []
  312. 594ae4fb-4f1d-4fef-8e6f-a00ff048c20e 0 false [] 0 {} false [fa0b8a50-cad1-41c3-90b3-1e5948862120] [] [] "tap629d5b16-45" {} [] {} {} 1 [] []
  313. 509e9068-e944-4515-a206-442b85fdeaeb 0 false [] 0 {} false [8ed28fa6-e404-44b0-abcc-4780c1b3066c] [] [] "tapa304e38d-1d" {} [] {} {} 1 [] []
  314. 17b91b18-1afe-477d-ac5c-4e2db323c37f 0 false [] 0 {} false [e392dae5-c9ba-47b5-b432-58e7b60e55d5] [] [] "tapd793fce2-c1" {} [] {} {} 1 [] []
  315.  
  316. QoS table
  317. _uuid external_ids other_config queues type
  318. ----- ------------ ------------ ------ ----
  319.  
  320. Queue table
  321. _uuid dscp external_ids other_config
  322. ----- ---- ------------ ------------
  323.  
  324. SSL table
  325. _uuid bootstrap_ca_cert ca_cert certificate external_ids private_key
  326. ----- ----------------- ------- ----------- ------------ -----------
  327.  
  328. sFlow table
  329. _uuid agent external_ids header polling sampling targets
  330. ----- ----- ------------ ------ ------- -------- -------
  331.  
  332.  
  333. ============================== ovsdb-client dump from Compute Node ================================
  334.  
  335.  
  336. [brent@fedora1 devstack]$ sudo ovsdb-client dump
  337. Bridge table
  338. _uuid controller datapath_id datapath_type external_ids fail_mode flood_vlans flow_tables ipfix mirrors name netflow other_config ports protocols sflow status stp_enable
  339. ------------------------------------ ---------- ------------------ ------------- ------------------ --------- ----------- ----------- ----- ------- ------ ------- ------------ ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- --------- ----- ------ ----------
  340. 5bb0f178-3980-4020-8e3b-6adeed671623 [] "00007af1b05b2040" "" {} [] [] {} [] [] br-tun [] {} [2870fe70-17f8-4b93-a28d-bd68c4222693, 32f86ac0-d209-405e-89c0-4f877b96ed1c, fa5b7332-b53e-469f-9fb4-2e490b17549d] [] [] {} false
  341. 968cedf0-1b60-4a96-ad40-2133f29b9107 [] "0000f2ed8c96964a" "" {bridge-id=br-int} [] [] {} [] [] br-int [] {} [5450e91a-ec29-4e5a-bedf-e7e6e1adda89, a1091455-efe9-4eb2-b98a-772ad8b8707a, cc90d985-d6c1-410f-aae2-5d2f6ec0fd51, cddfabae-1969-40d9-bd17-6c83781b22fb, e6da3502-5250-4fce-9b74-ce6fa644f04e] [] [] {} false
  342.  
  343. Controller table
  344. _uuid connection_mode controller_burst_limit controller_rate_limit enable_async_messages external_ids inactivity_probe is_connected local_gateway local_ip local_netmask max_backoff other_config role status target
  345. ----- --------------- ---------------------- --------------------- --------------------- ------------ ---------------- ------------ ------------- -------- ------------- ----------- ------------ ---- ------ ------
  346.  
  347. Flow_Sample_Collector_Set table
  348. _uuid bridge external_ids id ipfix
  349. ----- ------ ------------ -- -----
  350.  
  351. Flow_Table table
  352. _uuid flow_limit groups name overflow_policy
  353. ----- ---------- ------ ---- ---------------
  354.  
  355. IPFIX table
  356. _uuid external_ids obs_domain_id obs_point_id sampling targets
  357. ----- ------------ ------------- ------------ -------- -------
  358.  
  359. Interface table
  360. _uuid admin_state cfm_fault cfm_fault_status cfm_health cfm_mpid cfm_remote_mpids cfm_remote_opstate duplex external_ids ingress_policing_burst ingress_policing_rate lacp_current link_resets link_speed link_state mac mac_in_use mtu name ofport ofport_request options other_config statistics status type
  361. ------------------------------------ ----------- --------- ---------------- ---------- -------- ---------------- ------------------ ------ ------------------------------------------------------------------------------------------------------------------------------------------------------ ---------------------- --------------------- ------------ ----------- ---------- ---------- --- ------------------- ---- ------------------- ------ -------------- -------------------------------------------------------------------------------- ------------ ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- ------------------------------------------------------------------- --------
  362. 6a16103f-a12f-418b-a150-9bbf7fe8a37d up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "6e:32:40:25:8b:fe" [] patch-int 1 [] {peer=patch-tun} {} {collisions=0, rx_bytes=5574, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=54, tx_bytes=9018, tx_dropped=0, tx_errors=0, tx_packets=69} {} patch
  363. 9d03afe9-de39-4bda-b369-990433187fb9 up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "ca:95:1b:fb:39:f2" [] "gre-172.16.58.139" 2 [] {in_key=flow, local_ip="172.16.58.136", out_key=flow, remote_ip="172.16.58.139"} {} {collisions=0, rx_bytes=4263, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=34, tx_bytes=5574, tx_dropped=0, tx_errors=0, tx_packets=54} {tunnel_egress_iface="eno16777736", tunnel_egress_iface_carrier=up} gre
  364. 115b9d4c-4ae1-4a60-995a-1fe79aa12aa4 up [] [] [] [] [] [] [] {} 0 0 [] 0 [] up [] "da:e6:2f:9f:43:13" [] patch-tun 1 [] {peer=patch-int} {} {collisions=0, rx_bytes=9018, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=69, tx_bytes=5574, tx_dropped=0, tx_errors=0, tx_packets=54} {} patch
  365. bacf7b01-dc54-4a3b-a0be-b226e116577a up [] [] [] [] [] [] [] {} 0 0 [] 2 [] up [] "7a:f1:b0:5b:20:40" 1500 br-tun 65534 [] {} {} {collisions=0, rx_bytes=648, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=8, tx_bytes=0, tx_dropped=0, tx_errors=0, tx_packets=0} {driver_name=openvswitch} internal
  366. a5818c96-4f83-4a96-bb37-aada249a610a up [] [] [] [] [] [] [] {} 0 0 [] 2 [] up [] "f2:ed:8c:96:96:4a" 1500 br-int 65534 [] {} {} {collisions=0, rx_bytes=648, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=8, tx_bytes=8250, tx_dropped=0, tx_errors=0, tx_packets=63} {driver_name=openvswitch} internal
  367. 510520ce-8c25-4d7e-b0ac-468f955cb5ff up [] [] [] [] [] [] full {attached-mac="fa:16:3e:6f:83:5e", iface-id="00b9dc6d-7de4-415b-ac89-5e3fdf559f17", iface-status=active, vm-id="62c26e76-1d20-424c-a82d-242d85b45d42"} 0 0 [] 1 10000000 up [] "fe:16:3e:6f:83:5e" 1500 "tap00b9dc6d-7d" 4 [] {} {} {collisions=0, rx_bytes=1858, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=18, tx_bytes=1464, tx_dropped=0, tx_errors=0, tx_packets=12} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  368. 14024788-4a5b-49cf-8a25-deaa69921092 up [] [] [] [] [] [] full {attached-mac="fa:16:3e:7e:ef:a5", iface-id="cfe489f1-8089-49ea-be34-a5cf82fa1e8e", iface-status=active, vm-id="397abecb-ab8d-4dc7-a881-a9de929d73ef"} 0 0 [] 1 10000000 up [] "fe:16:3e:7e:ef:a5" 1500 "tapcfe489f1-80" 3 [] {} {} {collisions=0, rx_bytes=1858, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=18, tx_bytes=2672, tx_dropped=0, tx_errors=0, tx_packets=22} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  369. 39cf37d4-3642-4402-8f41-52e2eecb4da1 up [] [] [] [] [] [] full {attached-mac="fa:16:3e:88:03:c9", iface-id="552a2c98-6046-40df-9d08-a1fe39766728", iface-status=active, vm-id="e3fe70b7-5516-464c-96f3-923062e05173"} 0 0 [] 1 10000000 up [] "fe:16:3e:88:03:c9" 1500 "tap552a2c98-60" 2 [] {} {} {collisions=0, rx_bytes=1858, rx_crc_err=0, rx_dropped=0, rx_errors=0, rx_frame_err=0, rx_over_err=0, rx_packets=18, tx_bytes=8506, tx_dropped=0, tx_errors=0, tx_packets=65} {driver_name=tun, driver_version="1.6", firmware_version=""} ""
  370.  
  371. Manager table
  372. _uuid connection_mode external_ids inactivity_probe is_connected max_backoff other_config status target
  373. ----- --------------- ------------ ---------------- ------------ ----------- ------------ ------ ------
  374.  
  375. Mirror table
  376. _uuid external_ids name output_port output_vlan select_all select_dst_port select_src_port select_vlan statistics
  377. ----- ------------ ---- ----------- ----------- ---------- --------------- --------------- ----------- ----------
  378.  
  379. NetFlow table
  380. _uuid active_timeout add_id_to_interface engine_id engine_type external_ids targets
  381. ----- -------------- ------------------- --------- ----------- ------------ -------
  382.  
  383. Open_vSwitch table
  384. _uuid bridges cur_cfg db_version external_ids manager_options next_cfg other_config ovs_version ssl statistics system_type system_version
  385. ------------------------------------ ---------------------------------------------------------------------------- ------- ---------- -------------------------------------------------- --------------- -------- ------------ ----------- --- ---------- ----------- --------------
  386. ad6767c0-f906-485b-bde0-c6805772bff9 [5bb0f178-3980-4020-8e3b-6adeed671623, 968cedf0-1b60-4a96-ad40-2133f29b9107] 27 "7.1.0" {system-id="8834615c-4196-43d5-989e-a288ec8fcb19"} [] 27 {} "1.11.0" [] {} unknown unknown
  387.  
  388. Port table
  389. _uuid bond_downdelay bond_fake_iface bond_mode bond_updelay external_ids fake_bridge interfaces lacp mac name other_config qos statistics status tag trunks vlan_mode
  390. ------------------------------------ -------------- --------------- --------- ------------ ------------ ----------- -------------------------------------- ---- --- ------------------- ------------ --- ---------- ------ --- ------ ---------
  391. e6da3502-5250-4fce-9b74-ce6fa644f04e 0 false [] 0 {} false [a5818c96-4f83-4a96-bb37-aada249a610a] [] [] br-int {} [] {} {} [] [] []
  392. 32f86ac0-d209-405e-89c0-4f877b96ed1c 0 false [] 0 {} false [bacf7b01-dc54-4a3b-a0be-b226e116577a] [] [] br-tun {} [] {} {} [] [] []
  393. fa5b7332-b53e-469f-9fb4-2e490b17549d 0 false [] 0 {} false [9d03afe9-de39-4bda-b369-990433187fb9] [] [] "gre-172.16.58.139" {} [] {} {} [] [] []
  394. 2870fe70-17f8-4b93-a28d-bd68c4222693 0 false [] 0 {} false [6a16103f-a12f-418b-a150-9bbf7fe8a37d] [] [] patch-int {} [] {} {} [] [] []
  395. 5450e91a-ec29-4e5a-bedf-e7e6e1adda89 0 false [] 0 {} false [115b9d4c-4ae1-4a60-995a-1fe79aa12aa4] [] [] patch-tun {} [] {} {} [] [] []
  396. a1091455-efe9-4eb2-b98a-772ad8b8707a 0 false [] 0 {} false [510520ce-8c25-4d7e-b0ac-468f955cb5ff] [] [] "tap00b9dc6d-7d" {} [] {} {} 1 [] []
  397. cddfabae-1969-40d9-bd17-6c83781b22fb 0 false [] 0 {} false [39cf37d4-3642-4402-8f41-52e2eecb4da1] [] [] "tap552a2c98-60" {} [] {} {} 1 [] []
  398. cc90d985-d6c1-410f-aae2-5d2f6ec0fd51 0 false [] 0 {} false [14024788-4a5b-49cf-8a25-deaa69921092] [] [] "tapcfe489f1-80" {} [] {} {} 1 [] []
  399.  
  400. QoS table
  401. _uuid external_ids other_config queues type
  402. ----- ------------ ------------ ------ ----
  403.  
  404. Queue table
  405. _uuid dscp external_ids other_config
  406. ----- ---- ------------ ------------
  407.  
  408. SSL table
  409. _uuid bootstrap_ca_cert ca_cert certificate external_ids private_key
  410. ----- ----------------- ------- ----------- ------------ -----------
  411.  
  412. sFlow table
  413. _uuid agent external_ids header polling sampling targets
  414. ----- ----- ------------ ------ ------- -------- -------
  415.  
  416.  
  417. ============================== UP interfaces from Compute Node ================================
  418.  
  419. [brent@fedora1 devstack]$ ifconfig
  420. br-int: flags=67<UP,BROADCAST,RUNNING> mtu 1500
  421. inet6 fe80::84a4:cdff:fe9d:1ea8 prefixlen 64 scopeid 0x20<link>
  422. ether f2:ed:8c:96:96:4a txqueuelen 0 (Ethernet)
  423. TX packets 8 bytes 648 (648.0 B)
  424.  
  425.  
  426. br-tun: flags=67<UP,BROADCAST,RUNNING> mtu 1500
  427. inet6 fe80::d87b:d4ff:fe58:f77a prefixlen 64 scopeid 0x20<link>
  428.  
  429.  
  430.  
  431. TX packets 8 bytes 648 (648.0 B)
  432.  
  433.  
  434. eno16777736: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  435. inet 172.16.58.136 netmask 255.255.255.0 broadcast 172.16.58.255
  436. inet6 fe80::20c:29ff:fe64:9d46 prefixlen 64 scopeid 0x20<link>
  437. ether 00:0c:29:64:9d:46 txqueuelen 1000 (Ethernet)
  438. RX packets 338382 bytes 368638645 (351.5 MiB)
  439.  
  440. TX packets 204720 bytes 33699508 (32.1 MiB)
  441.  
  442.  
  443. lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
  444. inet 127.0.0.1 netmask 255.0.0.0
  445. inet6 ::1 prefixlen 128 scopeid 0x10<host>
  446. loop txqueuelen 0 (Local Loopback)
  447. RX packets 362 bytes 22189 (21.6 KiB)
  448.  
  449. TX packets 362 bytes 22189 (21.6 KiB)
  450.  
  451.  
  452. tap00b9dc6d-7d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  453. inet6 fe80::fc16:3eff:fe6f:835e prefixlen 64 scopeid 0x20<link>
  454. ether fe:16:3e:6f:83:5e txqueuelen 500 (Ethernet)
  455. RX packets 18 bytes 1858 (1.8 KiB)
  456.  
  457. TX packets 20 bytes 2112 (2.0 KiB)
  458.  
  459.  
  460. tap552a2c98-60: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  461. inet6 fe80::fc16:3eff:fe88:3c9 prefixlen 64 scopeid 0x20<link>
  462. ether fe:16:3e:88:03:c9 txqueuelen 500 (Ethernet)
  463. RX packets 18 bytes 1858 (1.8 KiB)
  464.  
  465. TX packets 73 bytes 9154 (8.9 KiB)
  466.  
  467.  
  468. tapcfe489f1-80: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  469. inet6 fe80::fc16:3eff:fe7e:efa5 prefixlen 64 scopeid 0x20<link>
  470. ether fe:16:3e:7e:ef:a5 txqueuelen 500 (Ethernet)
  471. RX packets 18 bytes 1858 (1.8 KiB)
  472.  
  473. TX packets 30 bytes 3320 (3.2 KiB)
  474.  
  475.  
  476. virbr0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
  477. inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255
  478. ether 52:54:00:99:4e:6e txqueuelen 0 (Ethernet)
  479.  
  480.  
  481.  
  482.  
  483. ============================== All interfaces from Compute ================================
  484.  
  485.  
  486. [brent@fedora1 devstack]$ ifconfig -a
  487. br-int: flags=67<UP,BROADCAST,RUNNING> mtu 1500
  488. inet6 fe80::84a4:cdff:fe9d:1ea8 prefixlen 64 scopeid 0x20<link>
  489. ether f2:ed:8c:96:96:4a txqueuelen 0 (Ethernet)
  490. TX packets 8 bytes 648 (648.0 B)
  491.  
  492.  
  493. br-tun: flags=67<UP,BROADCAST,RUNNING> mtu 1500
  494. inet6 fe80::d87b:d4ff:fe58:f77a prefixlen 64 scopeid 0x20<link>
  495.  
  496.  
  497.  
  498. TX packets 8 bytes 648 (648.0 B)
  499.  
  500.  
  501. eno16777736: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  502. inet 172.16.58.136 netmask 255.255.255.0 broadcast 172.16.58.255
  503. inet6 fe80::20c:29ff:fe64:9d46 prefixlen 64 scopeid 0x20<link>
  504. ether 00:0c:29:64:9d:46 txqueuelen 1000 (Ethernet)
  505. RX packets 338655 bytes 368707660 (351.6 MiB)
  506.  
  507. TX packets 204999 bytes 33778064 (32.2 MiB)
  508.  
  509.  
  510. eno33554960: flags=4098<BROADCAST,MULTICAST> mtu 1500
  511. ether 00:0c:29:64:9d:50 txqueuelen 1000 (Ethernet)
  512.  
  513.  
  514.  
  515. lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
  516. inet 127.0.0.1 netmask 255.0.0.0
  517. inet6 ::1 prefixlen 128 scopeid 0x10<host>
  518. loop txqueuelen 0 (Local Loopback)
  519. RX packets 362 bytes 22189 (21.6 KiB)
  520.  
  521. TX packets 362 bytes 22189 (21.6 KiB)
  522.  
  523.  
  524. ovs-system: flags=4098<BROADCAST,MULTICAST> mtu 1500
  525. ether ea:c6:6c:92:0d:e1 txqueuelen 0 (Ethernet)
  526.  
  527.  
  528.  
  529. tap00b9dc6d-7d: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  530. inet6 fe80::fc16:3eff:fe6f:835e prefixlen 64 scopeid 0x20<link>
  531. ether fe:16:3e:6f:83:5e txqueuelen 500 (Ethernet)
  532. RX packets 18 bytes 1858 (1.8 KiB)
  533.  
  534. TX packets 20 bytes 2112 (2.0 KiB)
  535.  
  536.  
  537. tap552a2c98-60: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  538. inet6 fe80::fc16:3eff:fe88:3c9 prefixlen 64 scopeid 0x20<link>
  539. ether fe:16:3e:88:03:c9 txqueuelen 500 (Ethernet)
  540. RX packets 18 bytes 1858 (1.8 KiB)
  541.  
  542. TX packets 73 bytes 9154 (8.9 KiB)
  543.  
  544.  
  545. tapcfe489f1-80: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
  546. inet6 fe80::fc16:3eff:fe7e:efa5 prefixlen 64 scopeid 0x20<link>
  547. ether fe:16:3e:7e:ef:a5 txqueuelen 500 (Ethernet)
  548. RX packets 18 bytes 1858 (1.8 KiB)
  549.  
  550. TX packets 30 bytes 3320 (3.2 KiB)
  551.  
  552.  
  553. virbr0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
  554. inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255
  555. ether 52:54:00:99:4e:6e txqueuelen 0 (Ethernet)
  556.  
  557.  
  558.  
  559. virbr0-nic: flags=4098<BROADCAST,MULTICAST> mtu 1500
  560. ether 52:54:00:99:4e:6e txqueuelen 500 (Ethernet)
  561.  
  562.  
  563.  
  564.  
  565. ============================== Routing Table from Compute ================================
  566.  
  567.  
  568. [brent@fedora1 devstack]$ route -n
  569. Kernel IP routing table
  570. Destination Gateway Genmask Flags Metric Ref Use Iface
  571. 0.0.0.0 172.16.58.2 0.0.0.0 UG 0 0 0 eno16777736
  572. 172.16.58.0 0.0.0.0 255.255.255.0 U 0 0 0 eno16777736
  573. 192.168.122.0 0.0.0.0 255.255.255.0 U 0 0 0 virbr0
  574.  
  575.  
  576. ============================== ovsdb-client dump from Compute ================================
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584.  
  585.  
  586.  
  587.  
  588. ============================= ovs Table for br-int Controller =====================
  589.  
  590. [root@fedora2 devstack]# sudo ovs-ofctl dump-tables br-int
  591. OFPST_TABLE reply (xid=0x2): 254 tables
  592. 0: classifier: wild=0x3fffff, max=1000000, active=1
  593. lookup=244, matched=244
  594. 1: table1 : wild=0x3fffff, max=1000000, active=0
  595. lookup=0, matched=0
  596. 2: table2 : wild=0x3fffff, max=1000000, active=0
  597. lookup=0, matched=0
  598.  
  599. ========================= ovs-Table for br-tun Controller =========================
  600.  
  601. [root@fedora2 devstack]# sudo ovs-ofctl dump-tables br-tun
  602. OFPST_TABLE reply (xid=0x2): 254 tables
  603. 0: classifier: wild=0x3fffff, max=1000000, active=3
  604. lookup=244, matched=243
  605. 1: table1 : wild=0x3fffff, max=1000000, active=2
  606. lookup=0, matched=0
  607. 2: table2 : wild=0x3fffff, max=1000000, active=2
  608. lookup=0, matched=0
  609. 3: table3 : wild=0x3fffff, max=1000000, active=1
  610. lookup=0, matched=0
  611. 4: table4 : wild=0x3fffff, max=1000000, active=0
  612. lookup=0, matched=0
  613. 5: table5 : wild=0x3fffff, max=1000000, active=0
  614. lookup=0, matched=0
  615. 6: table6 : wild=0x3fffff, max=1000000, active=0
  616. lookup=0, matched=0
  617. 7: table7 : wild=0x3fffff, max=1000000, active=0
  618. lookup=0, matched=0
  619. 8: table8 : wild=0x3fffff, max=1000000, active=0
  620. lookup=0, matched=0
  621. 9: table9 : wild=0x3fffff, max=1000000, active=0
  622. lookup=0, matched=0
  623. 10: table10 : wild=0x3fffff, max=1000000, active=1
  624. lookup=0, matched=0
  625.  
  626. ============================ ip netns list (Controller only L3 svcs/dhcp) ========================
  627.  
  628. #ip netns list
  629. qrouter-1fbed97e-c642-44c7-a9f5-f476f477c7a7
  630. qdhcp-58e717fc-0ea1-4845-9fe5-9ca2159b55f3
  631.  
  632. ============================= ip a (Controller) ==============================
  633.  
  634. [brent@fedora2 devstack]$ ip a
  635. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
  636. link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  637. inet 127.0.0.1/8 scope host lo
  638. valid_lft forever preferred_lft forever
  639. inet6 ::1/128 scope host
  640. valid_lft forever preferred_lft forever
  641. 2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
  642. link/ether 00:0c:29:1c:3e:5c brd ff:ff:ff:ff:ff:ff
  643. inet 172.16.58.139/24 brd 172.16.58.255 scope global eno16777736
  644. valid_lft forever preferred_lft forever
  645. inet6 fe80::20c:29ff:fe1c:3e5c/64 scope link
  646. valid_lft forever preferred_lft forever
  647. 3: eno33554960: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast state DOWN qlen 1000
  648. link/ether 00:0c:29:1c:3e:66 brd ff:ff:ff:ff:ff:ff
  649. 4: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN
  650. link/ether da:97:f6:df:b3:b1 brd ff:ff:ff:ff:ff:ff
  651. inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
  652. valid_lft forever preferred_lft forever
  653. 5: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
  654. link/ether d2:ab:ae:94:45:88 brd ff:ff:ff:ff:ff:ff
  655. 6: br-int: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
  656. link/ether ce:6f:d2:17:97:4d brd ff:ff:ff:ff:ff:ff
  657. inet6 fe80::7cf3:5eff:fe87:bd2e/64 scope link
  658. valid_lft forever preferred_lft forever
  659. 7: br-ex: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
  660. link/ether 8a:50:ef:ee:d6:47 brd ff:ff:ff:ff:ff:ff
  661. inet 172.24.4.225/24 scope global br-ex
  662. valid_lft forever preferred_lft forever
  663. 8: br-tun: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
  664. link/ether 06:c4:2f:46:02:49 brd ff:ff:ff:ff:ff:ff
  665. inet6 fe80::9c58:58ff:fe96:8cf2/64 scope link
  666. valid_lft forever preferred_lft forever
  667. 12: tapd793fce2-c1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 500
  668. link/ether fe:16:3e:04:c1:e1 brd ff:ff:ff:ff:ff:ff
  669. inet6 fe80::fc16:3eff:fe04:c1e1/64 scope link
  670. valid_lft forever preferred_lft forever
  671. 13: tap5ae0f0cb-78: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 500
  672. link/ether fe:16:3e:39:98:dc brd ff:ff:ff:ff:ff:ff
  673. inet6 fe80::fc16:3eff:fe39:98dc/64 scope link
  674. valid_lft forever preferred_lft forever
  675. 14: tapa304e38d-1d: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 500
  676. link/ether fe:16:3e:15:8c:c4 brd ff:ff:ff:ff:ff:ff
  677. inet6 fe80::fc16:3eff:fe15:8cc4/64 scope link
  678. valid_lft forever preferred_lft forever
  679.  
  680. ============================= ip a (Compute) =================================
  681.  
  682. $ ip a
  683. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN
  684. link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  685. inet 127.0.0.1/8 scope host lo
  686. valid_lft forever preferred_lft forever
  687. inet6 ::1/128 scope host
  688. valid_lft forever preferred_lft forever
  689. 2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
  690. link/ether 00:0c:29:64:9d:46 brd ff:ff:ff:ff:ff:ff
  691. inet 172.16.58.136/24 brd 172.16.58.255 scope global eno16777736
  692. valid_lft forever preferred_lft forever
  693. inet6 fe80::20c:29ff:fe64:9d46/64 scope link
  694. valid_lft forever preferred_lft forever
  695. 3: eno33554960: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN qlen 1000
  696. link/ether 00:0c:29:64:9d:50 brd ff:ff:ff:ff:ff:ff
  697. 5: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN
  698. link/ether 52:54:00:99:4e:6e brd ff:ff:ff:ff:ff:ff
  699. inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
  700. valid_lft forever preferred_lft forever
  701. 6: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast master virbr0 state DOWN qlen 500
  702. link/ether 52:54:00:99:4e:6e brd ff:ff:ff:ff:ff:ff
  703. 7: ovs-system: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
  704. link/ether ea:c6:6c:92:0d:e1 brd ff:ff:ff:ff:ff:ff
  705. 8: br-int: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
  706. link/ether f2:ed:8c:96:96:4a brd ff:ff:ff:ff:ff:ff
  707. inet6 fe80::84a4:cdff:fe9d:1ea8/64 scope link
  708. valid_lft forever preferred_lft forever
  709. 9: br-tun: <BROADCAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN
  710. link/ether 7a:f1:b0:5b:20:40 brd ff:ff:ff:ff:ff:ff
  711. inet6 fe80::d87b:d4ff:fe58:f77a/64 scope link
  712. valid_lft forever preferred_lft forever
  713. 10: tap552a2c98-60: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 500
  714. link/ether fe:16:3e:88:03:c9 brd ff:ff:ff:ff:ff:ff
  715. inet6 fe80::fc16:3eff:fe88:3c9/64 scope link
  716. valid_lft forever preferred_lft forever
  717. 11: tapcfe489f1-80: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 500
  718. link/ether fe:16:3e:7e:ef:a5 brd ff:ff:ff:ff:ff:ff
  719. inet6 fe80::fc16:3eff:fe7e:efa5/64 scope link
  720. valid_lft forever preferred_lft forever
  721. 12: tap00b9dc6d-7d: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN qlen 500
  722. link/ether fe:16:3e:6f:83:5e brd ff:ff:ff:ff:ff:ff
  723. inet6 fe80::fc16:3eff:fe6f:835e/64 scope link
  724. valid_lft forever preferred_lft forever
  725. [brent@fedora1 devstack]$
  726.  
  727.  
  728.  
  729. ============================= neutron router-list =====================
  730.  
  731. [brent@fedora1 devstack]$ neutron router-list
  732. +--------------------------------------+---------+-----------------------------------------------------------------------------+
  733. | id | name | external_gateway_info |
  734. +--------------------------------------+---------+-----------------------------------------------------------------------------+
  735. | 1fbed97e-c642-44c7-a9f5-f476f477c7a7 | router1 | {"network_id": "1d5dc244-1eb3-4ea0-b0ef-9f37420571aa", "enable_snat": true} |
  736. +--------------------------------------+---------+-----------------------------------------------------------------------------+
  737.  
  738.  
  739. =============================== DevStack local.conf Controller Node (Fedora2 - 172.16.58.139) ===========================
  740.  
  741.  
  742. [[local|localrc]]
  743. LOGFILE=stack.sh.log
  744. SCREEN_LOGDIR=/opt/stack/data/log
  745. LOG_COLOR=False
  746. #OFFLINE=True
  747. RECLONE=yes
  748.  
  749. disable_service rabbit
  750. enable_service qpid
  751.  
  752. enable_service n-cond
  753. disable_service n-net
  754. enable_service q-svc
  755. enable_service q-agt
  756. enable_service q-dhcp
  757. enable_service q-l3
  758. enable_service q-meta
  759. enable_service quantum
  760.  
  761. Q_HOST=$SERVICE_HOST
  762. HOST_IP=172.16.58.139
  763.  
  764. Q_PLUGIN=ml2
  765. Q_AGENT=openvswitch
  766. Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,linuxbridge,l2population
  767. Q_ML2_TENANT_NETWORK_TYPE=gre
  768. Q_USE_SECGROUP=True
  769. Q_AGENT_EXTRA_AGENT_OPTS=(tunnel_types=gre)
  770. Q_AGENT_EXTRA_SRV_OPTS=(local_ip=$HOST_IP)
  771.  
  772. VNCSERVER_PROXYCLIENT_ADDRESS=192.168.64.193
  773. VNCSERVER_LISTEN=0.0.0.0
  774.  
  775. HOST_NAME=fedora2
  776. SERVICE_HOST_NAME=${HOST_NAME}
  777. SERVICE_HOST=172.16.58.139
  778.  
  779. FLOATING_RANGE=192.168.100.0/24
  780. #PUBLIC_NETWORK_GATEWAY=192.168.75.254
  781. MYSQL_HOST=$SERVICE_HOST
  782. RABBIT_HOST=$SERVICE_HOST
  783. GLANCE_HOSTPORT=$SERVICE_HOST:9292
  784. KEYSTONE_AUTH_HOST=$SERVICE_HOST
  785. KEYSTONE_SERVICE_HOST=$SERVICE_HOST
  786.  
  787. MYSQL_PASSWORD=mysql
  788. RABBIT_PASSWORD=rabbit
  789. QPID_PASSWORD=rabbit
  790. SERVICE_TOKEN=service
  791. SERVICE_PASSWORD=admin
  792. ADMIN_PASSWORD=admin
  793.  
  794.  
  795. =============================== DevStack local.conf Compute Node (Fedora1 - 172.16.58.136) ===========================
  796.  
  797. [[local|localrc]]
  798. LOGFILE=stack.sh.log
  799. SCREEN_LOGDIR=/opt/stack/data/log
  800. LOG_COLOR=False
  801. #OFFLINE=true
  802. RECLONE=yes
  803. disable_all_services
  804. enable_service n-cpu quantum q-agt n-novnc qpid
  805.  
  806. HOST_NAME=fedora1
  807. HOST_IP=172.16.58.136
  808. SERVICE_HOST_NAME=fedora2
  809. SERVICE_HOST=172.16.58.139
  810.  
  811. FLOATING_RANGE=192.168.100.0/24
  812.  
  813. Q_PLUGIN=ml2
  814. Q_AGENT=openvswitch
  815. Q_ML2_PLUGIN_MECHANISM_DRIVERS=openvswitch,linuxbridge,l2population
  816. Q_ML2_TENANT_NETWORK_TYPE=gre
  817.  
  818. Q_AGENT_EXTRA_AGENT_OPTS=(tunnel_types=gre)
  819. Q_AGENT_EXTRA_SRV_OPTS=(local_ip=$HOST_IP)
  820.  
  821. Q_HOST=$SERVICE_HOST
  822. MYSQL_HOST=$SERVICE_HOST
  823. RABBIT_HOST=$SERVICE_HOST
  824. GLANCE_HOSTPORT=$SERVICE_HOST:9292
  825. KEYSTONE_AUTH_HOST=$SERVICE_HOST
  826. KEYSTONE_SERVICE_HOST=$SERVICE_HOST
  827.  
  828. MYSQL_PASSWORD=mysql
  829. RABBIT_PASSWORD=rabbit
  830. QPID_PASSWORD=rabbit
  831. SERVICE_TOKEN=service
  832. SERVICE_PASSWORD=admin
  833. ADMIN_PASSWORD=admin
  834.  
  835.  
  836. =========================================================================================================
Advertisement
Add Comment
Please, Sign In to add comment