Archive for July, 2011

Updates HE public IP records for your tunnel (for instance at the coffee shop), finds the first available interface that is connected and creates a v6v4tunnel using that IP. See script for where you need to edit. function fastpingtest { $ping = New-Object System.Net.NetworkInformation.Ping; $ping.Send(“8.8.8.8″, 1000).status -eq “success”; } $endtime = [datetime]::Now.AddMinutes(1); $mapipv6 = $false; [...]

From what I can tell, there aren’t many…if any, IPv6 address range calculators. While I read it is recommended that you use the entire /64 block, I don’t think it’s always necessary to do so. Besides, what happens when you want to route only a portion of the block to one place? Example usage: ipv6range.ps1 [...]

Recently I made some configuration changes to Powershell so I could use the latest .Net version (4.0), but it caused errors with a project. The problem turned out to be that the library was trying to load an older version of mscorelib. This is pretty easily fixed thanks to Microsoft packaging a compiler with .NET. [...]