Advertisement
Guest User

rs-ctrl1 (Blue Reef OpenStack Control Node)

a guest
Sep 23rd, 2014
885
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. brtmis@rs-ctrl1:~$ cat /etc/neutron/neutron.conf | grep -v ^$ | grep -v ^#
  2. cat: /etc/neutron/neutron.conf: Permission denied
  3. brtmis@rs-ctrl1:~$ sudo cat /etc/neutron/neutron.conf | grep -v ^$ | grep -v ^#
  4. [DEFAULT]
  5. verbose = True
  6. state_path = /var/lib/neutron
  7. lock_path = $state_path/lock
  8. core_plugin = ml2
  9. service_plugins = router
  10. auth_strategy = keystone
  11. allow_overlapping_ips = True
  12. rpc_backend = neutron.openstack.common.rpc.impl_kombu
  13. rabbit_host = rs-ctrl1
  14. rabbit_password = 5e205a8c9761ee38f001
  15. notification_driver = neutron.openstack.common.notifier.rpc_notifier
  16. agent_down_time = 75
  17. notify_nova_on_port_status_changes = True
  18. notify_nova_on_port_data_changes = True
  19. nova_url = http://rs-ctrl1:8774/v2
  20. nova_admin_username = nova
  21. nova_admin_tenant_id = c322a3e4ec8a47179284350a028057d9
  22. nova_admin_password = 1baba494a5ce2b704700
  23. nova_admin_auth_url = http://rs-ctrl1:35357/v2.0
  24. [quotas]
  25. [agent]
  26. root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
  27. [keystone_authtoken]
  28. auth_uri = http://rs-ctrl1:5000
  29. auth_host = rs-ctrl1
  30. auth_port = 35357
  31. auth_protocol = http
  32. admin_tenant_name = service
  33. admin_user = neutron
  34. admin_password = 273e6ee48cb899d4f26e
  35. signing_dir = $state_path/keystone-signing
  36. [database]
  37. connection = mysql://neutron:360f2a9a0e517ca5e924@rs-ctrl1/neutron
  38. [service_providers]
  39. service_provider=LOADBALANCER:Haproxy:neutron.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
  40. service_provider=VPN:openswan:neutron.services.vpn.service_drivers.ipsec.IPsecVPNDriver:default
  41.  
  42. ----------------------------------------------------------------------------------------------------------------------
  43.  
  44. brtmis@rs-ctrl1:~$ sudo cat /etc/neutron/plugins/ml2/ml2_conf.ini | grep -v ^$ | grep -v ^#
  45. [ml2]
  46. type_drivers = gre
  47. tenant_network_types = gre
  48. mechanism_drivers = openvswitch
  49. [ml2_type_flat]
  50. [ml2_type_vlan]
  51. [ml2_type_gre]
  52. tunnel_id_ranges = 1:1000
  53. [ml2_type_vxlan]
  54. [securitygroup]
  55. firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
  56. enable_security_group = True
  57.  
  58. -----------------------------------------------------------------------------------------------------------------------
  59.  
  60. brtmis@rs-ctrl1:~$ sudo cat /etc/nova/nova.conf | grep -v ^$ | grep -v ^#
  61. [DEFAULT]
  62. dhcpbridge_flagfile=/etc/nova/nova.conf
  63. dhcpbridge=/usr/bin/nova-dhcpbridge
  64. logdir=/var/log/nova
  65. state_path=/var/lib/nova
  66. lock_path=/var/lock/nova
  67. force_dhcp_release=True
  68. iscsi_helper=tgtadm
  69. libvirt_use_virtio_for_bridges=True
  70. connection_type=libvirt
  71. root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
  72. verbose=True
  73. ec2_private_dns_show_ip=True
  74. api_paste_config=/etc/nova/api-paste.ini
  75. volumes_path=/var/lib/nova/volumes
  76. enabled_apis=ec2,osapi_compute,metadata
  77. rpc_backend = rabbit
  78. rabbit_host = rs-ctrl1
  79. rabbit_password = 5e205a8c9761ee38f001
  80. my_ip = 10.16.16.23
  81. vncserver_listen = 10.16.16.23
  82. vncserver_proxyclient_address = 10.16.16.23
  83. auth_strategy = keystone
  84. network_api_class = nova.network.neutronv2.api.API
  85. neutron_url = http://rs-ctrl1:9696
  86. neutron_auth_strategy = keystone
  87. neutron_admin_tenant_name = service
  88. neutron_admin_username = neutron
  89. neutron_admin_password = 273e6ee48cb899d4f26e
  90. neutron_admin_auth_url = http://rs-ctrl1:35357/v2.0
  91. linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
  92. firewall_driver = nova.virt.firewall.NoopFirewallDriver
  93. security_group_api = neutron
  94. service_neutron_metadata_proxy = true
  95. neutron_metadata_proxy_shared_secret = 4b38ff7aca4d6a994d58
  96. [database]
  97. connection = mysql://nova:5cef97f8ae1b05959e06@rs-ctrl1/nova
  98. [keystone_authtoken]
  99. auth_uri = http://rs-ctrl1:5000
  100. auth_host = rs-ctrl1
  101. auth_port = 35357
  102. auth_protocol = http
  103. admin_tenant_name = service
  104. admin_user = nova
  105. admin_password = 1baba494a5ce2b704700
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement