Installing OpenVPN on a DIR-320 router

So I’ve got some semipermanent office space in Indooroopilly, and thought it would be nice to be able to transparently VPN into the various machines I have running at home.

So I picked up a D-Link DIR-320 for $22 at umart, which I intend to run at the remote office:

D-Link DIR-320 router
D-Link DIR-320 router

The DIR-320 doesn’t have OpenVPN capabilities out-of-the-box, but you can install a custom firmware on it which will give it these features. (Yes, I know I could run the OpenVPN client on the remote machines, but having it running on the router will allow any device connected to the router to be able to see the machines I have at home, which may turn out to be useful).

There are various pages over the internet which are useful here, but none of them contained all the information I needed, so here’s a quick list of the steps involved in getting OpenVPN running on the router:

What you need to do is:

  1. Decide to use DD-WRT, as opposed to the OpenWRT or Tomato firmwares.
  2. Alter your registry so that your network stack doesn’t attempt to detect DHCP on the network when a LAN cable is plugged in. (The time window to update the firmware on the DIR320 only lasts for a second or two, and if your network is doing DHCP initialisation, then you miss this window of opportunity). You can do this by running the following DisableDHCPMediaSense.reg file, or entering the value manually in regedit.
    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]
    "DisableDHCPMediaSense"=dword:00000001
    
  3. After updating the registry, reboot your PC
  4. Open up the Network Connections dialog, (Start -> Control Panel -> Network), right-click on your ethernet network connection and click ‘Properties’. In the TCP/IP protocol settings for your connection, set your IP address to 192.168.0.2 and remove any DNS servers (remember to write down a copy of your settings first, so you can set it back later on).
  5. Go to the DD-WRT router database at http://www.dd-wrt.com/site/support/router-database . Type DIR-320 into the search box, and download both the latest “Micro Generic” and the “VPN Generic” firmwares (the micro firmware needs to be installed first via TFTP, after which you can use the Web user interface to install the larger firmware)
  6. Make a copy of the file containing the micro firmware, and rename it as firmware.bin
  7. Download nircmdc.exe from http://www.nirsoft.net/utils/nircmd.html and place it in the same folder as the firmware
  8. Create a dir320-install.cmd batch file in the same folder as the firmware containing the following code:
    for /L %%a in (1, 1, 10) do (nircmdc.exe wait 500 
    start cmd.exe /k tftp -i 192.168.0.1 put firmware.bin )
    
  9. Open up a command window (Start -> Run… -> cmd) and cd to the firmware folder. Type dir320-install.cmd, but don’t press Enter just yet. Connect the router to your PC (by connecting the LAN1 port on the router directly to the ethernet port on your PC), then hold down the ‘reset‘ button on the back (I used a toothpick) whilst turning it on (i.e. plugging in the power jack).
  10. At the same time as turning on the router, run the dir32-install.cmd script. It will attempt to TFTP the firmware onto the router ten times in succession; only one of which will actually work (this will be the window containing the text similar to
    Transfer successful: 1769472 bytes in 7 seconds, 25781bytes /s

    ).

  11. If the firmware transferred successfully, then wait a few minutes and restart the router. If it didn’t, turn off the router and go back to step 9 and try the transfer again.
  12. Log onto the router by pointing your browser at http://192.168.1.1, and then upgrade to the VPN Generic firmware (Administration -> Firmware Upgrade).
  13. Don’t forget to reenable DHCP by deleting the registry entry you created in step 2, and set your TCP/IP settings back to their original values from step 4, and restart your PC again.

So there you go. Easy. Now all you have to do is configure the thing 🙂

Sources

  • http://www.dd=wrt.com/wiki/index.php/Hard_reset_or_30/30/30
  • http://www.shadowandy.net/2008/06/flashing-guide-for-dir-320.htm
  • http://www.dd-wrt.com/phpBB2/viewtopic.php?t=52589&highlight=openvpn
  • http://www.dd-wrt.com/phpBB2/viewtopic.php?p=311023&sid=085f27d0ae20ba501c7d3c9fa99e9ac1
  • http://www.dd-wrt.com/wiki/index.php/OpenVPN#GUI:_Server_Configuration
One Comment

Add a Comment

Your email address will not be published. Required fields are marked *