From 6f2b12c218f2ad102a50a7ffbcc334ec4585f149 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sat, 18 May 2024 23:43:50 +0700 Subject: [PATCH] Fix to allow changing the auxiliary console for IOS router nodes. --- gns3server/compute/dynamips/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gns3server/compute/dynamips/__init__.py b/gns3server/compute/dynamips/__init__.py index eae8ab61..7f3d1e13 100644 --- a/gns3server/compute/dynamips/__init__.py +++ b/gns3server/compute/dynamips/__init__.py @@ -521,6 +521,10 @@ class Dynamips(BaseManager): if usage is not None and usage != vm.usage: vm.usage = usage + aux_type = settings.get("aux_type") + if aux_type is not None and aux_type != vm.aux_type: + vm.aux_type = aux_type + # update the configs if needed await self.set_vm_configs(vm, settings)