roadrunner2Ever so often you need to test your Internet speed (for debugging speed issues or maybe to determine the actual speed of a new line or a customers line), in Denmark people often use the test page at www.tdc.dk (the largest telecommunications provider in Denmark) however sometimes, during my work, I need to test the Internet speed from other countries and a Danish test page does not give a reliable result in other countries.

Today I stumbled across what appear to be a very neat test page, it offers nice graphs and customization of the test.

Give it a spin at;
http://www.numion.com/YourSpeed3/Run.php

If you live in Europe you are bound to have experienced being rejected, when trying to watch your favorite TV show on a US web-site – something in the line of “We are sorry but your IP seem to come from a country outside the USA” bummer – this is annoying as some US TV stations have cool tv shows available for free viewing (but restricted to the US).

ultrasurf9So, as I have mentioned before you can use the TOR network (http://www.torproject.org/) to proxy around this problem – but TOR is an install package that may not always be appropriate to install on a company/school pc etc, along comes UltraSurf (http://www.ultrareach.com/) a simple little portable application you can put on your USB stick.

UltraSurf will once it is started open a browser and you can browse the net with a US based IP (by proxying your traffic) thus giving you access to US based webservices.  Speed is not great but seemed acceptable and I managed to get an ok mediastream from ABC (note you may have to restart the browser when installing activex components).

A word of caution, I would not share creditcard or other confidential information on a proxyed connection, you never know who/what is inspecting your HTTP traffic, HTTPS/SSL/TSL traffic should be secure though (but still think about what you are doing).

Get it here (Free);
http://www.ultrareach.com/

Show your IP (you will notice this changes once UltraSurf is started);
http://showip.net/ or http://www.ipchicken.com/

WEBMON2009---Box-874-900If you have ever worked with Microsoft ISA server you may have heard of “GFI WebMonitor”, “GFI WebMonitor” is an add on to the ISA server (it does also exist as a standalone server application) that will allow for Malware, Virus scanning along with traffic analysis and extended logging of HTTP traffic thus protecting workstations against ‘drive by infections’ and other script dangers while surfing.

The news part is that GFI now offer a freeware version, the freeware version is however limited to logging and statistics thus the Malware and Virus protection is turned off in the freeware version after 30 days.  But still the logging and statistics functionality is not half bad for free.

So if you are looking for traffic logging and analysis this may be worth a look.

Get it here;
http://www.gfi.com/internet-monitoring-software

tftpEver so often (or in my case ever so seldom) you need a TFTP server for some equipment that need updating (firmware etc), and as I do so seldom I keep forgetting whitch software I need for this.

Well here is the link you need, a mini server software for not only offering TFTP but also DHCP, TFTP, DNS, SNTP and Syslog ;
http://tftpd32.jounin.net/

 

 

.

peerblock-1For those of you that has been using PeerGuardian 2 in the past (PeerGuardian 2 is a Firewall / blacklist that can block certain IP’s based upon lists you subscribe to) here is some good news 🙂

As you may know PeerGuardian 2 has not been supported for the past 1-2 years, and is (to say it mildly) not very stable on Windows Vista/7 etc.  Well some nice people has decided to continue the project under a new name Peerblock, and I do mean continue as the first version is based upon the source from the last PeerGuardian.

As with PeerGuardian the Peerblock application is free (although donations are greatly appreciated).

Get  it here

dnsb1Are your DNS settings configured for optimal performance?  Don’t know?  Well www.grc.comhas released a DNS Benchmarking utility that will not only test your configured DNS servers but also check a bunch of known DNS servers and thus provide you with a diagram of which servers perform best for you, along with this DNS servers are also tested for known security problems.

The tool is not ‘officially’ released as the documentation is not yet ready, but the tool is available for download and usage never the less;

http://www.grc.com/dns/benchmark.htm  (please note the download link at the top does not work, use the one at the bottom “Download a copy to your computer“)

sradio1

 

 

 

I have never really done much research in the field of Internet Radio, guess I have enough to occupy my mind elsewhere 😉  but I just stumbled across what seem to be a quite cool Internet Radio App and I just might give it a spin; it’s free, it’s easy/intuitive, it can record and it has a LOT of preset radio stations world wide.

sradio2

Try it yourself, get it here;
http://www.screamer-radio.com/

 

 

 

.

r2c1Just stumbled across a cool site, it offers quite detailed instructions for port setup for a bunch of routers (all kind of brands and all sorts of applications, games etc).

Now you can just refer your friends here instead of having to write them detailed instructions 🙂 neat..

Give it a spin at; http://portforward.com/

an example for a netgear router can be found here;
http://portforward.com/english/routers/port_forwarding/Netgear/CG814W/CG814Windex.htm

tb3The free Thunderbird email client has been released in a version 3, it offers some interesting new features eg. emails now open in tabs like in browsers and a whole lot more.

Setup was a breeze as the guide is pretty good and even capable of guessing/testing many settings by itself (server settings like which server and what encryption is supported).

It looks very promising and interesting.

Get it here

We have a few servers that for some reason refuse to update their antimalware definitions automatically, the procedure is then to download the definition update manually and apply it, not rocket science but annoying as hell.

We use Microsoft Forefront Client Security and Microsoft is kind enough to offer a link where you can download a complete definition update file as an exe file, this will then update your antivirus – all you do is download and execute.

So I came up with the idea that if I could download this file via a script then I could apply it via a schedule during the night on the affected servers.  But how do you download a file via a schedule/script?  At first I leaned towards a VBS script, I even found a few but either they did no longer work (due to added security over the years to IE) or was painfully slow (the latter is not good when downloading a file of 45mb).  Further Googeling let me to WGET a simple commandline utility that can be scripted, and sure enough it worked like a charm 🙂

Should anyone have a similar problem then the batch/script file I made looks like this;
(Just modify the parts in red)

cls
Echo *************************************************************************
Echo  This script will download the latest forefront antimalware def
Echo  once a day for servers with update problems
Echo *************************************************************************
Echo  The file downloaded is;
Echo.
Echo  http://go.microsoft.com/fwlink/?LinkID=87342&clcid=0×409
Echo.
echo.
del D:\Appl\msdefinitions\Definitions\mpam-fe.exe
D:\Appl\msdefinitions\wget.exe -t9 -O D:\Appl\msdefinitions\Definitions\mpam-fe.exe http://go.microsoft.com/fwlink/?LinkID=87342&clcid=0×409

More on downloading MS-Forefront definition files look here;
https://readmydamnblog.com/?p=84