I have this output from router command:
Interface IP-Address OK? Method Status Protocol
POS0/0/0 10.137.99.2 YES NVRAM up up
I want to find a regular expression to identify the IP-Address:
I tried with:
if ( $_ =~ m/(.*?)\s*?(.*?)\s*?(.*?)\s*?(.*)/i ){
#print "$1->$2\n";
$sources{$2}=$1;
}
and then use $2 as ip.
However, it does not work; where am I wrong?