Filed under: blah, networking
Social Tagging: Hurricane Electric • IPv6 • Tunnel Broker
Last November we moved from a rental home into a home of our own. Unfortunately, the old woman before us never had cable television or internet and so we had to wait a month before the ISP was able to dig in a line and hook us up. Now that we have internet, I’ve finally been able to resurrect my network.
While our ISP does have 6RD, I’m a huge fan of Hurricane Electric’s TunnelBroker.net. I find it easy to use and I don’t need to worry about changing ISP and keeping the same address range.
From before the move I had a dual-stack with an old laptop working as the IPv6 tunnel/router/firewall. (Because I don’t yet have a PCMCIA ethernet card and it’s so old I can’t get vlan trunking working so it has to function behind my Buffalo router/AP.) Now that we have internet, I just powered it on, ran “sudo ifup he-ipv6″, and voila! IPv6 was up and running.
What to do with 2^64 addresses at my disposal? Well, one thing I’m wanting to get working is getting my media anywhere I have a cellular signal and data. This is a problem as my phone only seems to support IPv4 on cellular networks and I don’t really want to go the dynamic DNS route as it seems too…archaic.
IPv6 router using TunnelBroker
/etc/network/interfaces
auto he-ipv6
iface he-ipv6 inet6 v4tunnel
pre-up wget -q --no-check-certificate -O - 'https://ipv4.tunnelbroker.net/ipv4_end.php?ip=AUTO&pass={PASSWORD}&apikey={APIKEY}&tid={TUNNELID}'
address {LOCAL_TUNNEL_IPV6}
netmask 64 endpoint {HE_ENDPOINT}
up `ip -6 route add default via {HE_TUNNEL_ENDPOINT_IPV6} dev he-ipv6`
up `echo 1 > /proc/sys/net/ipv6/conf/all/forwarding` down `echo 0 > /proc/sys/net/ipv6/conf/all/forwarding`
Needing a quick and dirty growl notification to know when a person restarted their computer, so I wrote up this originally one line script.
. '\libs\growl\Send-Growl 3.1.ps1'; #http://poshcode.org/1464
#Might need to modify the file a little.
$str = @("down", "up");
$last_ds = $false;
while(1) {
$new_ds = Test-Connection TargetHost -Quiet -Count 2;
if($new_ds -ne $last_ds) {
Send-Growl -Caption "Watchtower" -Message ("TargetHost is {0}" -f $str[$new_ds]);
}
$last_ds = $new_ds;
sleep 5;
}
Just copy and paste in ISE, modify and away you go!
Bonus points protip: Run in the background.
start-process powershell @("Hidden", "-File" "\path\to\above\script.ps1") -WindowStyle Hidden
Dahlia laughing it up
(Sorry for the shaky camera work!)
Dahlia tries tasting her feet!
Filed under: code, csharp, powershell
Social Tagging: cgi-bin • httpd • poshttpd • powershell • ps1
For a while now I’ve wanted to make use of PowerShell to do things like what you would use PHP for with Apache, but nothing I found worked, not even cgi-bin stuff. So I figured, why not just build my own? By using stuff like HttpListener, it’s pretty easy to get started and worry more about what the daemon will do with requests then how to handle the conversations.
Git logs and such can be found here and you can get the code by git cloning http://plan.snoj.us/repo/poshttpd.git
=0.0.1=
*Two “engines”.
**One passthru for static files like images and html.
**The second is for PowerShell scripts.To build, you must first edit the rootDir variables in main.cs as well as the BG.prefix (if you desire), run buildntest.ps1. It will build main.cs and start poshttpd.exe.
After it’s built and running, open your brower (default: http://localhost:81) and run your PowerShell script. There is an example script in /sites/.
I recently saw the “We are the 99 Percent” blog on Tumblr. Which if we’re going by “millionaire” status, should be more like “We are the 96.777777 percent”.
Reading the about/introduction page, I have to say that some of that applied to me. Then I attended some Financial Peace University classes. I started planning my finances better, deliberately putting aside money for rainy days, cancelling extra services like my cable television, not eating out so much, etc. These things really started to come to head after getting married. We were able to be quite comfortable month to month even while paying down our debts.
While my wife and I have been very blessed and have not had the hardships many people have put on “We are the 99 Percent”. I would like think that our planning and our hard work have played a significant role in where our lives are today.
So without further delay, my “I am the 1 percent” contribution.
I never finished the two year Associate in Applied Science degree at the local Community College I was working towards.
My wife had several thousand dollars in student loans when we married, I had some credit card debt.
I never owned a brand new car.
I am married to a wonderful woman.
I have a beautiful daughter and another child on the way.
I have a job where I enjoy the work with decent pay.
My wife and I share a car.
My wife and I both have a smart-phones.
My wife and I have one television.
My wife and I have no paid television service (cable/satellite) unless Netflix counts.
I have an Xbox 360 Slim.
My wife and I rent a home.
My wife and I have no credit cards.
My wife and I have a 3 months of living expenses in savings.
My wife and I now have no debt other then our upcoming home mortgage.
We are in our mid-twenties.I am the 1 percent.
There are of course many other things that could be on this list, but to think of the all would just push this entry back.
Filed under: Child-processes
Social Tagging: Daughter family
My main project at the moment.
Filed under: powershell
Social Tagging: 6in4 • HE • Hurricane Electric • IPv6 • Tunnel Broker • v6v4tunnel
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;
while([datetime]::Now -lt $endtime) {
if(fastpingtest) { $mapipv6 = $true; break; }
}
if($mapipv6) {
$wc = New-Object net.webclient;
$url= "https://ipv4.tunnelbroker.net/ipv4_end.php?ip=AUTO&pass={1}&apikey={0}&tid={2}";
$values = "USERID", "PASSWORDMD5HASH", TUNNELID;
$wc.DownloadString(($url -f $values));
#get connected interface
$interface = netsh interface ipv4 show interface | findstr /c:" connected" | ?{!$_.contains("Loopback");} | %{[regex]::Split($_, "( )+") | ?{$_.trim().length -gt 0} | %{$_.trim()}; }
$interface_ip = (netsh interface ipv4 show address $interface[0] | findstr /c:"IP Address" | select -First 1).split(":")[1].trim()
netsh interface teredo set state disabled
netsh interface ipv6 add v6v4tunnel IP6Tunnel $interface_ip HEIPv4ENDPOINT
netsh interface ipv6 add address IP6Tunnel YOURIPv6ADDRESS
netsh interface ipv6 add route ::/0 IP6Tunnel HEIPv6ADDRESS
}
Filed under: blah, code, powershell, tools
Social Tagging: IPv6 • subnet • subnetting
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 2001:470:1f10:60::10 64 | ft ipaddress* ipv6range.ps1 2003:5:1f:fa0::10 104 | ft ipaddress* #ipv4 /8 equivalent ipv6range.ps1 2003:5:1f:fa0::10 112 | ft ipaddress* #ipv4 /16 equivalent ipv6range.ps1 2003:5:1f:fa0::10 120 | ft ipaddress* #ipv4 /24 equivalent ipv6range.ps1 2003:5:1f:fa0::10 124 | ft ipaddress* #ipv4 /28 equivalent
….and the code….
param(
[net.ipaddress]$Addr,
[int]$netmask = 64,
[switch]$ForceListing
)
if($Addr.AddressFamily -ne 'InterNetworkV6') { throw "`$Addr must be a valid IPv6 address."; }
<#
Create a subnet mask based on a CIDR input.
#>
function subnet {
param(
[int]$netmask
)
if($netmask -gt 128) { throw "`$netmask cannot be greater than 128"; }
$mask = (@($true) * $netmask) + (@($false) * (128-$netmask));
return New-Object Collections.BitArray @(,$mask);
}
<#
Convert a BitArray into a byte array for easy conversion into an IPAddress.
#>
function bit2byte {
param(
[Collections.BitArray]$bitArray
)
for($i = 0; $i -lt $bitArray.length; $i+=8) {
[convert]::ToByte([string]::Join("", ([string[]][byte[]]($bitArray[$i..($i+7)]))), 2)
}
}
<#
convert an ip into a BitArray for easy bitwise operations.
#>
function ip2bit {
param([net.ipaddress]$addr)
$b = $addr.GetAddressBytes();
$bits = @();
foreach($a in $b) {
$t = [convert]::ToString($a,2).padleft(8,"0") #[7..0];
$bits += [string]::join("",$t);
}
$nbits = ($bits | %{[char[]]$_} | %{[bool]::Parse("$_".replace("1","true").replace("0","false"))});
return New-Object collections.bitarray @(,$nbits)
}
<#
Increment an ipv6 address.
#>
function inc {
param([net.ipaddress]$addr)
$b = $addr.GetAddressBytes();
for($i = $b.length-1; $i -ge 0; $i--) {
if($b[$i] -gt 254) { continue; }
$b[$i]++;
break;
}
New-Object net.ipaddress @(,$b);
}
<#
Decrement an ipv6 address.
#>
function dec {
param([net.ipaddress]$addr)
$b = $addr.GetAddressBytes();
for($i = $b.length-1; $i -ge 0; $i--) {
if($b[$i] -eq 0) { continue; }
$b[$i]--;
break;
}
New-Object net.ipaddress @(,$b);
}
$ipArr = new-object collections.bitarray @(,(ip2bit $Addr.GetAddressBytes()))
$netBits = New-Object collections.bitarray @(,(subnet $netmask))
$hostBits = (New-Object collections.bitarray $netBits).Xor((New-Object collections.bitarray 128, $true)) #.xor((New-Object collections.bitarray 128, $true))
$netId = New-Object net.ipaddress @(, (bit2byte (New-Object collections.bitarray $ipArr).And($netBits)));
$netBcast = New-Object net.ipaddress @(, (bit2byte (New-Object collections.bitarray $ipArr).Or($hostBits)));
$numHosts = [math]::Pow(2, ($hostBits | ?{$_} | measure).count)
if($numHosts -gt 256 -and !$ForceListing.ispresent) {
#well, if we have more than this, just output the (ipv4 equivalent) network id and broadcast address.
$netId
$netBcast
} else {
Add-Member -PassThru -Force -InputObject $netId -MemberType NoteProperty -Name IsUsable -Value $false;
try {
$lastAddr = $netId;
for($i = 0; $i -lt $numHosts-2; $i ++) {
$lastAddr = inc $lastAddr
Add-Member -PassThru -Force -InputObject $lastAddr -MemberType NoteProperty -Name IsUsable -Value $true;
}
} catch {}
Add-Member -PassThru -Force -InputObject $netBcast -MemberType NoteProperty -Name IsUsable -Value $false;
#$res
}
Notes:
- Not commented well. RTCFA (read the code for answers)! >:(
- Only increments despite there being a decrement function.
- If the number of host addresses is less then 256, it will always display the complete listing.
Filed under: code
Social Tagging: .net • compile • microsoft • visual studio
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.
#download your library source and extract if necessary cd \path\to\source\code #If your target is x64, use "Framework64" instead C:\Windows\Microsoft.NET\Framework\v4.0.30319\v4.0.30319\MSBuild.exe .\project.csproj
Now you have a version of your library compiled as a .NET 4.0 DLL. You could of course use Visual Studio to do this, but who would want to deal with it when you’re only a couple commands away?
RSS