KACE 1000 create and get report Network Interface installed on machine
Hello,
I need some help reporting Network Interface installed on each machine, with format like this
I need some help reporting Network Interface installed on each machine, with format like this
Device_name | NIC_name | Mac_address
Thanks in advance,
Best Regards
0 Comments
[ + ] Show comments
Answers (1)
Answer Summary:
Please log in to answer
Posted by:
chucksteel
7 years ago
Top Answer
You can create this using the report wizard. Choose Device NICs for the topic.
Comments:
-
Thanks chucksteel. Your answer is awesome.
SELECT MACHINE.NAME, MACHINE_NICS.IP AS NIC_IP, MACHINE_NICS.MAC AS NIC_MAC, NIC
FROM MACHINE_NICS JOIN MACHINE ON (MACHINE.ID = MACHINE_NICS.ID) - yosi_juanda 7 years ago