diff options
author | Kristian Lyngstol <kly@kly.no> | 2018-12-02 02:18:30 +0100 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2018-12-02 02:18:30 +0100 |
commit | 2b10a9e55a417fbd0eb8e248ef8edceab1d794bb (patch) | |
tree | 073f542467a7168d746dd1e0c044a45c5c20e8dd /web/js/nms-map-handlers.js | |
parent | 66f5ac9833d1178c1749d82c000cf656f02c3ba4 (diff) |
front: Adjust new dhcp-magic to be less agressive
Diffstat (limited to 'web/js/nms-map-handlers.js')
-rw-r--r-- | web/js/nms-map-handlers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/js/nms-map-handlers.js b/web/js/nms-map-handlers.js index 9f0c548..6632e9f 100644 --- a/web/js/nms-map-handlers.js +++ b/web/js/nms-map-handlers.js @@ -598,7 +598,7 @@ function dhcpInfo(sw) { if (testTree(nmsData,['switchstate','switches',sw,'clients','live'])) { var tu = parseInt(nmsData.switchstate.switches[sw].clients.live); var tt = parseInt(nmsData.switchstate.switches[sw].clients.total); - if (tu - dhcpClients > 5) { + if (tu - dhcpClients > 12) { if (ret.score < 450) { ret.score = 450; ret.why = "Far more client ports than dhcp clients"; |