2015-05-21 11:47:00 |
Martin Gerhard Loschwitz |
description |
The Contrail API will currently use the IP address that is configured in contrail-api.conf as IP address to listen to. The corresponding lines in vnc_cfg_api_server.py are:
'ip-address': self._args.ifmap_server_ip,
and
'ip-address': self._args.ifmap_server_ip,
This is obviously a TYPO, as there is a separate parameter available to specifiy the listen IP for the API, which is, however, currently not used for that purpose. |
The Contrail API will currently use the IP address that is configured in contrail-api.conf as IP address to report to the discovery service. The corresponding lines in vnc_cfg_api_server.py are:
'ip-address': self._args.ifmap_server_ip,
and
'ip-address': self._args.ifmap_server_ip,
This is obviously a TYPO, as there is a separate parameter available to specifiy the listen IP for the API, which is, however, currently not used for that purpose. |
|