Advertisement
logoff

localrc

May 21st, 2014
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. [[local|localrc]]
  2. HOST_IP=127.0.0.1
  3.  
  4. # Interface connected to switch
  5. FLAT_INTERFACE=eth1
  6.  
  7. # Logging settings
  8. LOGDAYS=1
  9. LOGFILE=$DEST/logs/stack.sh.log
  10. SCREEN_LOGDIR=$DEST/logs/screen
  11.  
  12. # Passwords and token
  13. ADMIN_PASSWORD=lab123
  14. DATABASE_PASSWORD=$ADMIN_PASSWORD
  15. RABBIT_PASSWORD=$ADMIN_PASSWORD
  16. SERVICE_PASSWORD=$ADMIN_PASSWORD
  17. SERVICE_TOKEN=token
  18.  
  19. # Clean up on every restart
  20. RECLONE=yes
  21.  
  22. # Fixed and floating subnets
  23. FIXED_RANGE=10.254.1.0/24
  24. NETWORK_GATEWAY=10.254.1.1
  25.  
  26.  
  27. # Disable Nova Networking and enable Neutron
  28. disable_service n-net
  29. enable_service q-svc
  30. enable_service q-agt
  31. enable_service q-dhcp
  32. enable_service q-l3
  33. enable_service q-meta
  34. enable_service neutron
  35.  
  36. # Turn on ML2
  37. Q_PLUGIN=ml2
  38.  
  39. # Allow tenants to create vlans?
  40. ENABLE_TENANT_VLANS=True
  41. TENANT_VLAN_RANGE=1100:2999
  42.  
  43. # these are needed fo VLANs for tenants to connect to physical switch
  44. PHYSICAL_NETWORK=default
  45. OVS_PHYSICAL_BRIDGE=br-eth1
  46. # I think this will load the arista ML2 driver
  47. # Q_ML2_PLUGIN_MECHANISM_DRIVERS = openvswitch,linuxbridge,arista
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement