IPv6 Tunnel on pfSense

18. July 2010

0 Comments

IPv6 Tunnel on pfSense

Hi, in this tutorial I will be showing you how to setup IPv6 connectivity for your network using he.net and pfsense.

  1. Pop on over to he.net and create an account
  2. Create a regular tunnel and you should be given a page of details like the following
    details
  3. Download the following script
    Open the script with your favorite text editor and set the variables at the top as required

    IFIN="re1"

    This is your LAN interface.

    IPv6Router="2001:470:1f09:3cd::1"
    IPv6Server="2001:470:1f08:3cd::1"
    IPv6Client="2001:470:1f08:3cd::2"

    IPv6 Router is the first address from your routed /64 range given on the he.net details panel
    IPv6 Server is simply your IPv6 server address given on the he.net details panel
    and IPv6 Client is also just your IPv6 client address given on the he.net details panel.

    IPv4Server="216.66.80.26"
    IPv4Client="88.151.87.116"

    IPv4 Server is simply the IPv4 server address given on the he.net details panel
    and IPv4 client is your WAN IP address.

  4. We also need to create a configuration file for rtadvd copy and paste the following
    re1:\
       :addrs#1:addr="2001:470:1f09:3cd::":prefixlen#64:tc=ether:

    Where re1 is your LAN interface and where 2001:470:1f09:3cd:: is your /64 route. Save the following as rtadvd.conf

  5. Using sftp upload rtadvd.conf to /etc and config-ipv6.sh to /usr/local/etc/rc.d on your pfsense box. Set the permissions for config-ipv6.sh as executable.
  6. Reboot your pfsense box and the script should auto start and bring up your IPv6 tunnel
Continue reading...

30. April 2010

5 Comments

How to spoof your speedtest.net results

In this tutorial we will be showing you how to spoof your speedtest.net results. You will require a httpd server to do this, in this tutorial I used lighttpd running on debian. To install lighttpd on debian just simply run apt-get install lighttpd php5-cgi php5-mhash and edit your php.ini to change cgi.force_redirect to 0 nano [...]

Continue reading...

5. April 2010

0 Comments

Set Preference for IPv4 over IPv6 on Windows 7

Set Preference for IPv4 over IPv6 on Windows 7

By default on Windows 7 IPv6 is preferred over IPv4, this is a nuisance when your IPv6 connectivity is supplied via a 6 to 4 tunnel. This tutorial will show you how to set preference for IPv4 Open regedit Start -> Search -> regedit Navigate to the following registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\tcpip6\Parameters\ Create a DWORD value [...]

Continue reading...

3. April 2010

1 Comment

Installing Windows 7 from USB

Installing Windows 7 from USB

You've had your netbook for sometime now, Windows has gotten slow and clunky, Your feeling the need to reformat but don't have a CD-ROM what to do? Simple, create a USB Flash Drive that can boot into the windows installer. You will need the following USB Flash Drive Windows 7 CD or ISO A Computer [...]

Continue reading...

7. October 2009

0 Comments

Understanding and Preventing Fork Bombs

A fork bomb is just a bash function that gets called recursively. Once a fork bomb is active on a machine it may not be able to preform normally until a reboot is made, as the only solution to the fork bomb is to kill all its processes. Bash Functions A fork bomb is really [...]

Continue reading...
Page 1 of 121234510...Last »