The di624 is a wireless router from dlink.
Items filed under di624
NTL broadband connection died at about 5pm. Checked DI624 router and could connect to it's admin functions from laptop via WiFi but could not do a good DHCP renew (it renewed but to 192.168.100.1 which is a local subnet address, not a 'proper' internet address). Looking at the cable modem the ready light was flashing which past experience tells me the line is dead. I didn't bother ringing tech support this time, I was patient.
2 Comments
Got around to trying Skype today for some VOIP fun and games. The main problem for me to set this up was the poor sound quality on my Dell Inspiron 500m laptop. Using windows sound recorder with a plugin external microphone the recordings were distorted and pretty poor quality. I did some searching but I could find no fixes for this. Eventually I tried downloading new drivers for the SigmaTel C-Major Audio hardware from the Dell site. This fixed the problem.
I tried dialling my home phone but I could not get through because my home phone is set up to refuse calls from phones that withhold caller ID (to stop telesales) and Skype obviously has no caller ID to give.
Ringing wife's mobile I was able to amaze her and check Skype out simultaneously. It works. It's as good as using the phone and for ringing my mum in the evenings it works out cheaper than the landline. The rate to mobiles looks pretty steep, about 30p for a 30 second call.
I didn't need to fiddle with the DI624's firewall settings to get this working. For the record, I am on a 750k down/128k up broadband connection.
Now to ponder more about bluetooth headset.
pros:
- can make phone calls with hands free
cons:
- horrible pose factor makes it embarrassing to buy
Summary: Skype is cool.
1 Comment
Following previous activities my wifi connection had been ok for a week or two. I had no strange failures to connect when powering up my laptop, life was sweet. Last night I was in the middle of a good surf and the wireless connection died. It stayed dead through rebooting the laptop, swearing etc.
Eventually I went upstairs and rebooted the DI624 and this immediately fixed the problem.
This evening I went to use my desktop PC which is wired to the DI624 and it could not connect to the internet: DNS lookups failed. It could conneect to the routers administration pages on 192.168.0.1 but nslookup failed, e.g:
c:>nslookup www.bisiand.me.uk
DNS request timed out.
timeout was 2 seconds.
*** Can't find server name for address 194.168.8.100: Timed out
DNS request timed out.
timeout was 2 seconds.
*** Can't find server name for address 194.168.4.100: Timed out
*** Default servers are not available
Server: UnKnown
Address: 194.168.8.100
DNS request timed out.
timeout was 2 seconds.
DNS request timed out.
timeout was 2 seconds.
*** Request to UnKnown timed-out
A side-by-side comparison with the laptop showed me that it was fine:
C:>nslookup www.bisiand.me.uk Server: cache2.ntli.net Address: 194.168.8.100 Non-authoritative answer: Name: www.bisiand.me.uk Address: 209.59.159.21
After some fiddling I rebooted the router through an option in the admin pages and this fixed the problem again.
Moral: the DI624 plays up about once every two weeks. Not sure I can pin this on the Intel Wifi card built into my laptop.
2 Comments
Since I flashed my DLink DI624 last week I haven't had any annoying/weird connection problems. So either:
- Flashing DI624 fixed annoying/weird problems
- WiFi using neighbours are on holiday
- It's a flash in the pan and will start again, worse than ever.
Right now I have a UltraVNC window open on my laptop controlling my desktop PC upstairs while it burns a Knoppix ISO downloaded with BitTorrent using ISO Recorder.
Cool
Had another odd network problem. Happily surfing wirelessly on laptop when connection died. No amount of rebooting laptop restored connection so investigated further. Main desktop pc could connect to DI-624 admin pages so that was not a problem. Trued a DHCP-renew and it timed out. Unplugged power on broadband router and plugged back in, still no joy. Rebooted the DI-624, did a DHCP renew and now all is fine (i.e. you are reading this). Odd.
Update: persistant problems all evening. Took the opportunity to flash the DI624 with a new version released last August. This reset everything to default values and I've only just got things talking again. I'm on WPA-PSK authentication.
USB Flash Keys: a must have.
Not sure I ever documented that I got the free 600Kbps to 750Kbps upgrade from NTL.
Not so much NTHell as WIFIHell.
1 Comment
Windows XP SP2 has not fixed the flakiness of my wireless networking. A summary of my setup:
- Dell Inspiron 500m notebook with Dell Truemobile 1300 WLAN Mini PCI card.
- DLink DI624 Wireless router
Most of the time this works fine but occasionally when the laptop comes out of hibernation it fails to connect. I have to go back into hibernate and out again to get things rolling.
When it's working it gives me a 54.0Mbps connection which is ample for my 750kbps NTL Internet connection (and thanks to NTL for the free upgrade from 600k).
My ISP gives my server a dynamic IP address which is allocated using DHCP. If the ISP decided to reallocate this IP address for some reason then nobody would be able to access my server because only my ISP would know the new IP address.
DynDNS provides a DNS service that allows dynamic IP addresses to be assigned to domain names. A client program running on the server can check to see if the IP address has been reassigned and, if so, tell the dyndns service which will in turn tell the rest of the world. The service is free (for up to 5 domains) and very reliable.
There are client programs available to update the DynDNS information but I didn't want to use any of these because:
Most are windows
Most linux ones are overcomplex and underdocumented (not unusual)
None support interrogating my DLink DI624 router for the current IP address. They mostly support accessing web sites to get the IP address but this limits how often I can check for changes without being accused of net abuse.
Hence I wrote a python script to do it. This is executed by cron once an hour.
My ISP gives my server a dynamic IP address which is allocated using DHCP. If the ISP decided to reallocate this IP address for some reason then nobody would be able to access my server because only my ISP would know the new IP address.
DynDNS provides a DNS service that allows dynamic IP addresses to be assigned to domain names. A client program running on the server can check to see if the IP address has been reassigned and, if so, tell the dyndns service which will in turn tell the rest of the world. The service is free (for up to 5 domains) and very reliable.
There are client programs available to update the DynDNS information but I didn't want to use any of these because:
Most are windows
Most linux ones are overcomplex and underdocumented (not unusual)
None support interrogating my DLink DI624 router for the current IP address. They mostly support accessing web sites to get the IP address but this limits how often I can check for changes without being accused of net abuse.
Hence I wrote a python script to do it. This is executed by cron once an hour.
#!/usr/bin/python
import urllib2
import string
import base64
import re
import sys
import time
#
# Read config settings.
#
try:
from dynconfig import *
except:
strCurrentAddr = None
strLastUpdate = 0
strRouterName = <CENSORED>
strRouterPassword = <CENSORED>
#
# Send request to dlink DI-624 for status page
# Add authorisation header to log in.
#
oReq = urllib2.Request('http://192.168.0.1/st_devic.html')
oReq.add_header("USER-AGENT", "Mozilla/4.76 en (X11; U; Linux 2.4.1-0.1.9 i586)")
oReq.add_header("AUTHORIZATION", string.strip("Basic " +
base64.encodestring("%s:%s" % (strRouterName, strRouterPassword))))
#
# Search through status page for 'WAN' followed by the IP address
#
bWan = False
for strLine in urllib2.urlopen(oReq):
# print strLine:-1
#
# Searching for the 'WAN' section.
#
if bWan == False:
if strLine.find( 'WAN') >= 0:
bWan = True
else:
#
# Searching for an ip address.
#
oMatch = re.search( r'\d+\.\d+\.\d+\.\d+', strLine)
if oMatch:
strAddr = oMatch.group()
break
else:
if bWan == True:
raise "IP address not found"
else:
raise "WAN section not found"
#
# Create set of urls and login details
#
if 1:
#
# My urls to update.
#
strUrls = <CENSORED>
strName = <CENSORED>
strPassword = <CENSORED>
else:
#
# Testing: test urls to update
#
strUrls = ( "test.homeip.net", "test.mine.nu")
strName = "test"
strPassword = "test"
strAddr = "1.2.3.4"
#
# If address is unchanged do not submit it.
#
if strAddr == strCurrentAddr:
#
# Also update if it is more than a while since the last update.
# This stops the account terminating through lack of use.
#
if strLastUpdate - time.time() < (3600 * 24 * 14):
sys.exit()
#
# Create url to submit the request
# optional fields left blank
# This will handle all urls in one go.
#
strUrl = ("""http://members.dyndns.org/nic/update?
system=dyndns&
hostname=%s&
myip=%s""" % (",".join( strUrls), strAddr)).replace( '\n', '')
oReq = urllib2.Request( strUrl)
oReq.add_header("USER-AGENT", "Mozilla/4.76 en (X11; U; Linux 2.4.1-0.1.9 i586)")
oReq.add_header("AUTHORIZATION", string.strip("Basic " + base64.encodestring("%s:%s" % (strName, strPassword))))
#
# Dump out the responses. It should say 'good' for each.
#
# for strLine in urllib2.urlopen(oReq):
# print strLine
#
# Write updated address and time to config file.
#
open( "dynconfig.py", "wt").write( """strCurrentAddr = "%s"
strLastUpdate = %d
""" % (strAddr, time.time()))
My broadband connection suddenly stopped working. This is NTL broadband for the record, using a DLink DI624 Wireless router. All PCs lost connection but could still connect to the router.
The problem turned out to be because the Router had lost the IP address allocated to it from the ISP via DHCP. I pressed the DHCP renew button on the status panel and it all burst into life. Not sure if it's a problem with my new XP setup, deciding to drop the DHCP for me.
I had to manually tell dyndns.org about my new IP address as I don't have my Gentoo box set up to do it. The router should be able to update it automatically but it crashes every time I try to set that up. Hum, maybe they have a new version of the firmware out...
2 Comments
Set up ipcheck (http://ipcheck.sourceforge.net/) to check if my ip address changes and tell http://dyndns.org about it. The -r option is useful as it tells it to use http://checkip.dyndns.org/ to get the ip address, it doesn't try to parse the routers web based files. I could set this up and check more often without thrashing dyndns's server but it works as it is. ipcheck does not check the Dlink DI624 natively. If I was more public spirited I could find out how and tell the world.
Read here about cron http://www.tech-geeks.org/contrib/mdrone/cron-howto.html and set up a cron job to check the dns once an hour.
Filed under: di624
Created a dyndns account on DynDns.org to allow me to wake pc up over the internet, despite having a dynamic IP. Dyndns is free and allows domain names to be mapped to dynamic ips. The DI624 router is supposed to be able to tell dyndns whenever the IP address changes but the router seems to reboot whenever I try to set it. I suspect a firmware problem. 3 possible workarounds
wait for firmware upgrade
get pc to turn on and run a pc based dyndns update
figure a way to get old Orico router to handle it.
Orico would have to sit between the cable modem and the dlink. Could be temporary till dlink start SVTing their firmware.
Filed under: di624
New laptop came yesterday. It is wonderful, I love it.
Bigger than I thought it would be
Came with everything installed and battery charged, switched it on (no mains) and it just went
High res screen (1400x?) makes my eyes bleed
It is light enough to sit on lap comfortably, although warm towards the end
It ran for an evening's worth which is ok, although the optional extra battery pack is tempting
Wireless network can play Milkshake video. Problems playing videos from BBC site which could be due to BBC or supply
Played DVD's nicely
Sound is a little too quiet.
Installed mozilla incredibly quickly.
It seems much faster than old 1GHz home PC or 300MHz PC at work.
Rushed out to buy a DLink DI624 wireless router. After some worries from studying the box that it was not really IEE802.??g compliant I went to their web site to find that it very much was so. Replaced the Orico wired router and got it all going with no big problems. I Get good signal strength in the lounge, at times it seemed faster than the wired connection upstairs with the old router. I flashed the firmware and enabled WAP(?) security so nobody in the street can leech off my wireless broadband connection (surprising that by default there is absolutely no security, just pluck any wireless connection out of the air). The MAC address in the router is programmable and I had to set it to the same value as my old router for the broadband to work. Not a problem for now but if I sell the old router I may have to register the new routers own address for it all to work, I'm not sure of these details.
The firmware in the new router is much nicer, I had to read the manual to realise that the firmware is flashed by (in effect) uploading the file to the server's 'website'. Good idea. The CD it comes with has nothing but accursed PDF files on it.
Filed under: di624

