in reply to Challenge Problem: Merging Network Addresses
-- Randal L. Schwartz, Perl hacker
$ perl use Net::CIDR qw(cidradd); print join (", ", cidradd(qw{ 209.152.214.112/30 209.152.214.116/31 209.152.214.118/31 })), "\n" ^D 209.152.214.112/29 $ perl use Net::CIDR qw(cidradd); print join (", ", cidradd(qw{ 209.152.214.112/31 209.152.214.116/31 209.152.214.118/31 })), "\n" ^D 209.152.214.112/31, 209.152.214.116/30
|
---|
Replies are listed 'Best First'. | |
---|---|
(tye)Re: Challenge Problem: Merging Network Addresses
by tye (Sage) on Oct 12, 2001 at 01:45 UTC | |
Re: Challenge Problem: Merging Network Addresses
by Dominus (Parson) on Oct 12, 2001 at 02:25 UTC | |
by tachyon (Chancellor) on Oct 12, 2001 at 04:42 UTC | |
by Dominus (Parson) on Oct 12, 2001 at 21:10 UTC |