OpenWRT Install on Asus RT-N13U

I’ve had DD-WRT on my home router for awhile. DD-WRT works well but I want to setup some VLANS to play with some LAB configuration and the build of DD-WRT did not have the VLAN GUI. I had no success configuring this on the command line (could totally be me). I always wanted to try OpenWRT but I have had zero success so far loading it to any hardware. I came across this video on Youtube: ...

November 11, 2014 · 1 min · Shane Greaves

Network Boot Menu setup with iPXE

My iPXE setup is coming along just lovely, and it is working out just fine. My goal is to avoid scurrying around like a headless chicken looking for USB flash drives and optical media whenever I have to work on someone’s system. This part usually takes the most out of me when I am fixing a system as I can never seem to find install media, usb drives and my tools. I sure wish I could network boot my tools! I’m trying to become more organized in that regard :-). ...

August 24, 2013 · 2 min · Shane Greaves

iPXE: WinPe Boot

Network Booting my WinPe image with pxelinux has been an illusive goal of mine. I got it working :-). Get iPXE I downloaded iPXE into my home folder: git clone git://git.ipxe.org/ipxe.git cd ipxe/src make cp bin/undionly.kpxe /tftproot/ PXE Chainloading I have configured my network to chainload iPXE using the “undionly.kpxe” image. I configured my dhcp server (dd-wrt) to point to my tftp server which runs on my NAS. I placed “undionly.kpxe” in the tftp root folder. ...

August 23, 2013 · 2 min · Shane Greaves

ASUS RT-N13U and DD-WRT

I’d given up on getting DD-WRT flashed on this router. With the help of one of my colleagues at work we were able to get DD-WRT flashed! Omar Davis you rock! What got it to Flash Success came with these work arounds: 1. Disable Windows firewall on the command line: netsh firewall set opmode disable 2. Using the ASUS firmware update tool you’ll have to place the .trx file on the root of the C: drive. ...

January 1, 2013 · 2 min · Shane Greaves

PXE Booting with DD-WRT | TFTP Option

Configure DD WRT The following settings needs to be a dded under: Services->Additional DNSMasq Options Code: dhcp-boot=pxelinux.0,,192.168.230.1 Configure tftp In this case we are using tftp-hpa Code: apt-get install tftpd-hpa mcedit /etc/default/tftpd-hpa TFTP_USERNAME="tftp" TFTP_DIRECTORY="/srv/tftp" TFTP_ADDRESS="0.0.0.0:69" TFTP_OPTIONS="--secure" References Source

November 20, 2009 · 1 min · Shane Greaves

DDWRT Access To Modem Configuration

The way to follow Eventually replace the 10.0.0.x by your addresses Go to Administration -> Diagnostics and click on run Enter ifconfig vlan1:1 10.0.0.1 netmask 255.255.255.0<br></br> and click on Save Startup Enter /usr/sbin/iptables -I POSTROUTING -t nat -o vlan1 -d 10.0.0.0/24 -j MASQUERADE<br></br> and click on Save Firewall Source

November 20, 2009 · 1 min · Shane Greaves

DDWRT Debugging PPPOE Problems

Debugging PPPoE Problems PPPoE is used mainly for handling connections via Digital Subscriber Lines (DSL). Remember: The WRT54G / WRT54GS doesn’t have an integrated DSL modem, so you need an external one. Cabling After connecting the WRT54G(S) router to the DSL modem on the port labeled Internet make sure that the Internet LED at the front panel is lit. If not, check cabling. Reboot your DSL modem after you connected the router to it. ...

November 20, 2009 · 2 min · Shane Greaves