mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2025-03-09 15:40:18 +00:00
Added support for alternate SSH port.
This commit is contained in:
parent
87fb8d2dec
commit
c582dce3bc
2 changed files with 34 additions and 7 deletions
|
@ -4202,6 +4202,14 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||
}
|
||||
}
|
||||
|
||||
if ((typeof command.sshport == 'number') && (command.sshport > 0) && (command.sshport < 65536)) {
|
||||
if ((command.sshport == 22) && (node.sshport != null)) {
|
||||
delete node.sshport; change = 1; changes.push('sshport'); // Delete the SSH port
|
||||
} else {
|
||||
node.sshport = command.sshport; change = 1; changes.push('sshport'); // Set the SSH port
|
||||
}
|
||||
}
|
||||
|
||||
if (domain.geolocation && command.userloc && ((node.userloc == null) || (command.userloc[0] != node.userloc[0]) || (command.userloc[1] != node.userloc[1]))) {
|
||||
change = 1;
|
||||
if ((command.userloc.length == 0) && (node.userloc)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue