UniFi IPv6 and Dual Stack PPPoE

This post is somewhat outdated; more recent versions of the USG firmware and UniFi Controller software configure PPPoE and dual-stack IPv4/IPv6 correctly. Setting up the current UniFi Controller is super easy – check out my new guide to configure the UniFi Controller inside a Docker container with a Let’s Encrypt SSL certificate!   Internode offers … Read more

Dynamic IP script for Internode

WWW::Mechanize script for programmatically obtaining the current (dynamic) IPv4 and IPv6 addresses assigned to an Internode ADSL session: #!/usr/bin/perl use strict; use warnings; use WWW::Mechanize; ## Get current session data for our Internode session my $mech = WWW::Mechanize->new(); my $user = “”; ## Enter Internode username my $pass = “”; ## Enter Internode password $mech->get(‘https://secure.internode.on.net/myinternode/sys0/login’); … Read more