diff options
Diffstat (limited to 'web/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"; |