From e1bd4638c8a199bc469aa9c3747470f093253074 Mon Sep 17 00:00:00 2001 From: grossmj Date: Fri, 3 Nov 2023 20:46:36 +1000 Subject: [PATCH] Fix sample config: VMware section declared twice. Fixes #2311 --- gns3server/config_samples/gns3_server.conf | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/gns3server/config_samples/gns3_server.conf b/gns3server/config_samples/gns3_server.conf index 4cff6a51..07214fff 100644 --- a/gns3server/config_samples/gns3_server.conf +++ b/gns3server/config_samples/gns3_server.conf @@ -129,10 +129,13 @@ license_check = True vboxmanage_path = vboxmanage [VMware] -; Path to the vmrun binary used to manage VMware +; Path to vmrun binary used to manage VMware vmrun_path = vmrun +; First vmnet interface of the range that can be managed by the GNS3 server vmnet_start_range = 2 +; Last vmnet interface of the range that can be managed by the GNS3 server. It must be maximum 19 on Windows. vmnet_end_range = 255 +; block network traffic originating from the host OS block_host_traffic = False [Qemu] @@ -145,9 +148,3 @@ monitor_host = 127.0.0.1 enable_hardware_acceleration = True ; Require hardware acceleration in order to start VMs require_hardware_acceleration = False - -[VMware] -; First vmnet interface of the range that can be managed by the GNS3 server -vmnet_start_range = 2 -; Last vmnet interface of the range that can be managed by the GNS3 server. It must be maximum 19 on Windows. -vmnet_end_range = 255