diff --git a/modules/test/services/conf/module_config.json b/modules/test/services/conf/module_config.json index fecb41862..375759d50 100644 --- a/modules/test/services/conf/module_config.json +++ b/modules/test/services/conf/module_config.json @@ -9,7 +9,7 @@ "docker": { "depends_on": "base", "enable_container": true, - "timeout": 600 + "timeout": 900 }, "tests": [ { @@ -310,6 +310,10 @@ { "number": 5903, "type": "tcp" + }, + { + "number": 6001, + "type": "tcp" } ] }, diff --git a/modules/test/services/python/src/services_module.py b/modules/test/services/python/src/services_module.py index 094eb8eb5..56458ff64 100644 --- a/modules/test/services/python/src/services_module.py +++ b/modules/test/services/python/src/services_module.py @@ -196,7 +196,7 @@ def _process_port_results(self): self._scan_results.update(self._scan_udp_results) def _scan_tcp_ports(self): - max_port = 1000 + max_port = 10000 LOGGER.info('Running nmap TCP port scan') nmap_results = util.run_command( # pylint: disable=E1120 f'''nmap --open -sT -sV -Pn -v -p 1-{max_port}