Help for this page

Select Code to Download


  1. or download this
      if (/[\x20]{5}\(base 16\)[\t]{2}/) {
    ...
      if ($_ =~ m/([\d]+\.[\d]+\.[\d]+\.[\d]+).*([\w]{4})\.([\w]{4})\.([\w
    +]{4})/i) {
    
  2. or download this
      if (/\x20{5}\(base 16\)\t{2}/) {
    ...
      if ($_ =~ m/(\d+\.\d+\.\d+\.\d+).*(\w{4})\.(\w{4})\.(\w{4})/i) {
    
  3. or download this
    open(INPUT, $ARGV[0]) || die "Cannot do eet! $!";      # Takes the inp
    +ut file name on the command line and builds an array.
    while (<INPUT>) {                                    # This is the ARP
    + Cache file created from a copy/paste of a routers 
    ...
        $hash{$temp} = $1;
      }
    }