I am trying to grab a specific sub-string within a log message:
Example:
esx03.mrlab.local dfwpktlogs: 61283 INET match PASS domain-c7/1001 IN 52 TCP 192.168.50.124/60313->192.168.50.122/48002 SEW
What I am looking to capture is the string after the 10th whitespace and before the next / mark.
In the above example, I am trying to capture 192.168.50.124
This string may or may not have an IP address, but it will always follow the 10th space and precede a slash (/).
I have tried a few methods, but I cannot seem to figure out how to begin after the 10th whitespace.