Chris Boyd writes:
> My old Test-Um Lanscaper died, and I was curious what people liked these
> days. Don’t need throughput testing or anything like that, just basic
> wire map testing, cable ID, cable length, PoE voltage, and DHCP client.
>
> What do y’all like?
Pocketethernet has already been
ByteBrothers (Now Triplett) Real World Certifier (RWC) has been my go-to
for a while. It doesn't mess with DHCP or PoE voltage though.
But cable maps, distance, and it includes tracing/toning.
I like that the remote wand indicates success/failure by its LED so you
don't have to walk back to the
Sorry if this is slightly off-topic, but I am writing some code for a custom
GeoDNS routemap. My starting data set is a raw list of /24 subnets, no prefix
aggregation has been done. In other words, its the entire BGP routing table in
/24 prefixes - tagged by Geo region. Each region is its own tx
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
use NetAddr::IP qw(Compact);
my @ips = ( '105.170.72.0/24', '105.170.73.0/24', '105.170.74.0/24' );
my @agged = aggregate(\@ips);
sub aggregate {
my @naddr = map { NetAddr::IP->new($_) } @{$_[0]};
my @output = Compact(@n
The Perl Net::Netmask module is also worth checking out. It may not be
better at aggregation but it does have other functions that could be
helpful. I use the shortest match address lookup functions of Net::Netmask
very heavily and have reproduced them in a R / C++ package.
Jon
On Thu, Oct 1, 202
> On Sep 30, 2020, at 11:41 , Daniel Sterling wrote:
>
> On Wed, Sep 30, 2020 at 12:47 PM Owen DeLong wrote:
>> Games want to go peer-to-peer.
>
> That was true up until about 2012.
>
> As Martijn Schmidt noted, Activison contracts out to multiple managed
> hosting companies to provide serv
If you write your code on to be IPv6 compliant, making the code
support
dual stack is a matter of making sure that the IPv6_V6ONLY socket option is
false.
Owen
> On Sep 30, 2020, at 12:03 , Daniel Sterling wrote:
>
> On Wed, Sep 30, 2020 at 2:50 PM Josh Luthman
> wrote:
>> Based on packet
Not Perl, though this may be useful depending on your environment:
https://github.com/rus-cert/compress-cidr
The examples are for IPv6, though I use it to consolidate lists of IPv4 in a
variety of jobs/scripts without issue. YMMV.
From: NANOG on behalf of John Von Essen
Hi,
Check https://github.com/job/aggregate6 (thank you, Job)
El jue., 1 oct. 2020 a las 10:36, John Von Essen () escribió:
>
> Sorry if this is slightly off-topic, but I am writing some code for a custom
> GeoDNS routemap. My starting data set is a raw list of /24 subnets, no prefix
> aggregati
On Thu, Oct 1, 2020 at 5:00 AM wrote:
> My old Test-Um Lanscaper died, and I was curious what people liked these
> days. Don’t need throughput testing or anything like that, just basic wire
> map testing, cable ID, cable length, PoE voltage, and DHCP client.
>
We've been happy with the Platinum
On Thu, 1 Oct 2020 13:32:53 +
John Von Essen wrote:
> I tried to write my code to do this, and its not trivial, just
> lookinh for a shortcurt. I did a breif glance at some CIDR related
> Perl cpan modules, and nothing has jumped out.
I wrote the code below some time ago. I've not used it i
11 matches
Mail list logo