Optional AUX console port allocation for Dynamips VMs.

This commit is contained in:
grossmj
2015-02-28 16:20:27 -07:00
parent 7fe2d6c367
commit 0f10d25c0b
2 changed files with 4 additions and 2 deletions

View File

@ -113,7 +113,9 @@ class Router(BaseVM):
if self._aux is not None:
self._aux = self._manager.port_manager.reserve_tcp_port(self._aux)
else:
self._aux = self._manager.port_manager.get_free_tcp_port()
allocate_aux = self.manager.config.get_section_config("Dynamips").getboolean("allocate_aux_console_ports", False)
if allocate_aux:
self._aux = self._manager.port_manager.get_free_tcp_port()
else:
log.info("Creating a new ghost IOS instance")
if self._console: