Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I parse IP addresses and address ranges with Perl?

I have list of IPs:

238.51.208.96/28
238.51.209.180-199
238.51.209.100-109
238.51.213.2-254
...

How can I easily parse them? I need first and last IP from range. For the first line I can use Net::Netmask CPAN module, but what can I do with others lines?

like image 742
Andrey Zentavr Avatar asked Apr 13 '10 01:04

Andrey Zentavr


2 Answers

Try Net::IP module

If second patterns does not support, you may need to some changes to ips in advances like

238.51.209.180-199

to

238.51.209.180 - 238.51.209.199

by using some regex, for example,

$range =~ s/^((?:\d+\.){3})(\d+)-(\d+)$/$1$2 - $1$3/gm;

Full script:

use warnings;
use strict;
use Net::IP;
my $range = "238.51.209.180-199";
$range =~ s/^((?:\d+\.){3})(\d+)-(\d+)$/$1$2 - $1$3/;
my $ip = new Net::IP ($range) || die;
print $ip->ip (), "\n";
print $ip->last_ip (), "\n";
like image 158
YOU Avatar answered Sep 23 '22 17:09

YOU


You can match IP addresses using the Regexp::Common::net package, and manipulate them (and get netmasks etc) with any number of modules on CPAN, including Network::IPv4Addr, NetAddr::IP and Net::CIDR.

like image 41
Ether Avatar answered Sep 25 '22 17:09

Ether