ARP values with relevance language

When I execute the “arp -a” command on a CMD console, I receive the following values:

Interfaz: 192.168.234.1 --- 0x3
  Dirección de Internet          Dirección física      Tipo
  192.168.234.254       00-50-56-f1-fd-c4     dinámico
  192.168.234.255       ff-ff-ff-ff-ff-ff     estático
  224.0.0.22            01-00-5e-00-00-16     estático
  224.0.0.251           01-00-5e-00-00-fb     estático
  224.0.0.252           01-00-5e-00-00-fc     estático
  239.255.255.250       01-00-5e-7f-ff-fa     estático
  255.255.255.255       ff-ff-ff-ff-ff-ff     estático

Interfaz: 180.15.181.111 --- 0xa
  Dirección de Internet          Dirección física      Tipo
  180.15.181.8          70-35-09-07-27-e3     dinámico
  180.15.181.255        ff-ff-ff-ff-ff-ff     estático
  224.0.0.22            01-00-5e-00-00-16     estático
  224.0.0.251           01-00-5e-00-00-fb     estático
  224.0.0.252           01-00-5e-00-00-fc     estático
  239.255.255.250       01-00-5e-7f-ff-fa     estático
  255.255.255.255       ff-ff-ff-ff-ff-ff     estático

Interfaz: 192.168.30.1 --- 0x12
  Dirección de Internet          Dirección física      Tipo
  192.168.30.254        00-50-56-ed-7e-8c     dinámico
  192.168.30.255        ff-ff-ff-ff-ff-ff     estático
  224.0.0.22            01-00-5e-00-00-16     estático
  224.0.0.251           01-00-5e-00-00-fb     estático
  224.0.0.252           01-00-5e-00-00-fc     estático
  239.255.255.250       01-00-5e-7f-ff-fa     estático
  255.255.255.255       ff-ff-ff-ff-ff-ff     estático

Is there any way to get these values with relevance language?

I looked for something with the following sentence in the QnA but with no apparent result:

q: properties whose (it as string as lowercase contains "address")

Regards.

Are you asking if there are relevance inspectors/properties that act as and return the results of an arp command, or are you asking how to use relevance to read the content of a text file containing the results of an arp command you run?

If your question is about using relevance to retrieve arp information, the are no such inspectors. Your best bet is to create a task that runs “arp -a” and outputs it to a text file, which you can then read into an analysis property by parsing the output file with relevance.

1 Like

thanks you @alinder,
i was asking about relevance inspectors.
Regards.

The arp table is not a property of the computer - it is a current status of the currently known MAC Addresses for other computers on the local network.

1 Like