Ah-ha, I think I see what is happening. You are enabling DHCP on the LAN side of the router in /etc/config/network (because I told you to do it in the tutorial, so it is my fault). Since the LAN and WAN are bridged, to telnet back in via ethernet you would have to use the IP address that your wireless network is assigning the router with DHCP instead of 192.168.1.1. This is not the best way to do it (at the time I wrote the tutorial I was using the serial port to access the router so this stuff didn't matter). If you can figure out what IP address your home network is assigning the router, you should be able to ssh to that IP instead.
Or...
To simplify things and keep a known IP address, try changing your configs to something like this instead:
/etc/config/wireless:
- Code: Select all
config wifi-device wl0
option type broadcom
option channel 3
# REMOVE THIS LINE TO ENABLE WIFI:
config wifi-iface
option device wl0
option network wan
option mode sta
option ssid Joe
option encryption psk
option key xxxx
/etc/config/network:
- Code: Select all
#### VLAN configuration
config switch eth0
option vlan0 "1 2 3 4 5*"
option vlan1 "0 5"
#### Loopback configuration
config interface loopback
option ifname "lo"
option proto static
option ipaddr 127.0.0.1
option netmask 255.0.0.0
#### LAN configuration
config interface lan
#option type bridge
option ifname "eth0.0"
option proto static
option ipaddr 192.168.1.1
option netmask 255.255.255.0
#### WAN configuration
config interface wan
option ifname "eth0.1"
option proto dhcp