mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-01-25 21:53:14 -05:00
Added amtscanner option to settings for #3139.
This commit is contained in:
parent
f4cb2bab1e
commit
a75af8aa44
@ -111,6 +111,8 @@
|
|||||||
"noAgentUpdate": { "type": "integer", "default": 0, "description": "Set to 1 to present the server from updating any agent." },
|
"noAgentUpdate": { "type": "integer", "default": 0, "description": "Set to 1 to present the server from updating any agent." },
|
||||||
"agentUpdateSystem": { "type": "integer", "default": 1, "description": "When set to 2, all agents that need to be updated will use the meshcore.js update system. With the default value of 1, the native update system is used." },
|
"agentUpdateSystem": { "type": "integer", "default": 1, "description": "When set to 2, all agents that need to be updated will use the meshcore.js update system. With the default value of 1, the native update system is used." },
|
||||||
"temporaryAgentUpdate": { "type": "boolean", "default": true, "description": "Set to false to not allow temporary agents to be updated." },
|
"temporaryAgentUpdate": { "type": "boolean", "default": true, "description": "Set to false to not allow temporary agents to be updated." },
|
||||||
|
"amtScanner": { "type": "boolean", "default": true, "description": "Set to false to disable Intel AMT scanning on the local network, this is already disabled in WAN mode." },
|
||||||
|
"meshScanner": { "type": "boolean", "default": true, "description": "Set to false to disable agent multicast scanning on the local network, this is already disabled in WAN mode." },
|
||||||
"meshErrorLogPath": { "type": "string" },
|
"meshErrorLogPath": { "type": "string" },
|
||||||
"npmPath": { "type": "string" },
|
"npmPath": { "type": "string" },
|
||||||
"npmProxy": { "type": "string", "format": "uri" },
|
"npmProxy": { "type": "string", "format": "uri" },
|
||||||
|
@ -1569,8 +1569,8 @@ function CreateMeshCentralServer(config, args) {
|
|||||||
|
|
||||||
// Setup the Intel AMT local network scanner
|
// Setup the Intel AMT local network scanner
|
||||||
if (obj.args.wanonly != true) {
|
if (obj.args.wanonly != true) {
|
||||||
obj.amtScanner = require('./amtscanner.js').CreateAmtScanner(obj).start();
|
if (obj.args.amtscanner != true) { obj.amtScanner = require('./amtscanner.js').CreateAmtScanner(obj).start(); }
|
||||||
obj.meshScanner = require('./meshscanner.js').CreateMeshScanner(obj).start();
|
if (obj.args.meshscanner != true) { obj.meshScanner = require('./meshscanner.js').CreateMeshScanner(obj).start(); }
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup and start the MPS server
|
// Setup and start the MPS server
|
||||||
|
Loading…
x
Reference in New Issue
Block a user