I am trying to add fields from a lookup table. However, the matching field is a multivalue field. I need to expand the matching field but do not know how to group the lookup command with a multivalue command
lookup file assest.csv:
ip, host
10.10.1.1|10.100.1.1|10.10.200.1, srv1
10.10.1.2|10.100.1.2|10.10.200.2, srv2 original search that returns an IP value | [lookup assets.csv ip OUTPUT host |makemv delim="|" ip]
does not work
... View more