Help for this page

Select Code to Download


  1. or download this
    if ( @ips = $line =~ /[\d.]{7,15}/g ) {
        $client_ip{$ips[0]}{$iteration}++;
        . . .
    }
    
  2. or download this
    $numrx = qr/[01]?\d\d?|2[0-4]\d|25[0-5]/;
    $iprx = qr/($numrx\.){3}$numrx/;
    if ( $line =~ /^(\s*($iprx):\d+\s*->){2}\s*$iprx/ ) {
       . . .
    }
    
  3. or download this
    if ( $line =~ /^\s*($iprx):\d+\s*->\s*($iprx):\d+\s*->\s*($iprx)/ ) {