Monthly Archives: June 2010

Using Net::DNS to write your own recursor.

Here’s a bit of code I wrote for work that I thought was kind of neat; it uses a recursive function and Net::DNS to recurse DNS. #!/usr/bin/perl use strict; use warnings; use Net::DNS; my $domain = ‘schwer.us’; my $sonicrns= ‘ns2.sonic.net’; … Continue reading

Posted in work | 1 Comment