Stein dashboard configuration for networking option 2
Hi according to the stein OpenStack installation guide, for dashboard configuration if we have chosen option 1 then we need to disable support for layer-3 networking services.
https://docs.openstack.org/horizon/stein/install/install-rdo.html (https://docs.openstack.org/horizon/st...)
If you chose networking option 1, disable support for layer-3 networking services:
OPENSTACK_NEUTRON_NETWORK = {
...
'enable_router': False,
'enable_quotas': False,
'enable_distributed_router': False,
'enable_ha_router': False,
'enable_lb': False,
'enable_firewall': False,
'enable_vpn': False,
'enable_fip_topology_check': False,
}
This is what given in the guide.
But I have chosen networking option 2, so should I enable all layer-3 networking services which are told to disable in the above link?
or
should I leave the default one?
This is what presentby default in the file /etc/openstack-dashboard/local_settings :
OPENSTACK_NEUTRON_NETWORK = {
'enable_router': True,
'enable_quotas': True,
'enable_ipv6': True,
'enable_distributed_router': False,
'enable_ha_router': False,
'enable_fip_topology_check': True,
}