How do I tell if a laptop is being used off site?
So I have a general question. I'd like to pull statistics or information on how often a laptop is actually used as a laptop. IE, disconnected taken off site etc.
Does anyone have any thoughts on how you might be able to track this? I was thinking a custom inventory field but I'm new to KACE and not sure what good options to would be most beneficial to getting this accomplished.
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
SMal.tmcc
8 years ago
create a report and filter out all onsite ip subnets
SELECT IP, LAST_SYNC, SYSTEM_DESCRIPTION, MACHINE.NAME AS SYSTEM_NAME, OS_NAME FROM MACHINE WHERE IP NOT LIKE '10.%' AND IP NOT LIKE '192.168%' ORDER BY INET_ATON(IP) asc,LAST_SYNC asc,SYSTEM_DESCRIPTION asc,MACHINE.NAME asc,OS_NAME asc
Comments:
-
Thanks I will give his a try. - omorganx 8 years ago
Posted by:
MacDude
8 years ago
Of course, that report would only show IP Addresses of the machines that were able to connect to the K1000 while they were not on the network. Either through a VPN connection or if the K1000 was externally available.
If the laptop was at Starbucks or at home and it can't resolve and check into the K1000, it wouldn't show up in that report.