0

I've just deployed Liberty on a single machine using the official doc.

For neutron, I used Provider networks configuration.

When accessing horizon dashboard, I found that the router tab was missing.

Is this a common issue??

MrHanachoo
  • 109
  • 1
  • 6

1 Answers1

1

Check the horizon config file local_settings.py, make sure enable_router is set to True.

OPENSTACK_NEUTRON_NETWORK = {
    ...
    'enable_router': True,
    ...
}
Q.Tian
  • 71
  • 3
  • Yes, I 've already fixed it with this config. I Thought that I've shared the sol but I did not. My bad ! Thank you @Q.Tian – MrHanachoo Apr 09 '16 at 00:03