Date: Oct 08
Affected Product & Version - NetVault:8.2
OS Version: All
Plugin version: N/A
Application version: N/A
Description:
Sometimes when the machines.dat is very large, you may need a command to parse the file and only show a limited list with only relevant information
If all you want to see is a list with the machine name; preferred address; and contact address, you can run the following command.
From a Windows machine:
findstr /I "[ contact preferred ]" "C:\Program Files\BakBone Software\NetVault\etc\machines.dat"
From a Linux and any OS with the grep command:
grep -i '\[\|Contact\|Preferred\|\]' /usr/netvault/etc/machines.dat