Advertisement
Guest User

Untitled

a guest
Mar 18th, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. compute:/etc/neutron/plugins/ml2/linuxbridge_agent.ini
  2. [linux_bridge]
  3. physical_interface_mappings = public:eth0
  4. [vxlan]
  5. enable_vxlan = True
  6. local_ip = 10.3.0.4
  7. l2_population = True
  8. [agent]
  9. prevent_arp_spoofing = True
  10. [securitygroup]
  11. enable_security_group = True
  12. firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
  13.  
  14. cloud@compute02:~$ ifconfig | grep eth0 -A 2
  15. eth0 Link encap:Ethernet HWaddr 40:f2:e9:5d:63:a4
  16. inet addr:10.3.0.4 Bcast:10.3.0.255 Mask:255.255.255.0
  17. inet6 addr: fe80::42f2:e9ff:fe5d:63a4/64 Scope:Link
  18.  
  19. root@controller:/home/cloud# neutron agent-list
  20. +--------------------------------------+--------------------+------------+-------+----------------+---------------------------+
  21. | id | agent_type | host | alive | admin_state_up | binary |
  22. +--------------------------------------+--------------------+------------+-------+----------------+---------------------------+
  23. | 2a3ff30d-a437-4751-878a-d2cde04144a6 | L3 agent | controller | :-) | True | neutron-l3-agent |
  24. | 63f28e74-6b2e-44b8-be82-92ca7dfd4de5 | Metadata agent | controller | :-) | True | neutron-metadata-agent |
  25. | b53ecb81-cbfa-49fb-a51c-e03d74fa1156 | DHCP agent | controller | :-) | True | neutron-dhcp-agent |
  26. | ff12ad2f-3fb4-4c78-a581-4a3d92a4d81d | Linux bridge agent | compute02 | :-) | True | neutron-linuxbridge-agent |
  27. +--------------------------------------+--------------------+------------+-------+----------------+---------------------------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement