<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Matt Daubneys Blog &#187; webbyness</title>
	<atom:link href="http://daubers.co.uk/category/webbyness/feed/" rel="self" type="application/rss+xml" />
	<link>http://daubers.co.uk</link>
	<description></description>
	<lastBuildDate>Sun, 25 Mar 2012 19:34:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Denyhosts Stats</title>
		<link>http://daubers.co.uk/2009/05/25/denyhosts-stats/</link>
		<comments>http://daubers.co.uk/2009/05/25/denyhosts-stats/#comments</comments>
		<pubDate>Mon, 25 May 2009 14:44:20 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webbyness]]></category>
		<category><![CDATA[denyhosts]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[matplotlib]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[stats]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=187</guid>
		<description><![CDATA[I have been told many many times that moving ssh to a different port (i.e. other than 22) makes your machine more secure. I do see some wisdom in this, however, I&#8217;ve decided to put it to the test. I have been using Denyhosts to stop brute force attacks on my ssh servers for some [...]]]></description>
			<content:encoded><![CDATA[<p>I have been told many many times that moving ssh to a different port (i.e. other than 22) makes your machine more secure. I do see some wisdom in this, however, I&#8217;ve decided to put it to the test. I have been using Denyhosts to stop brute force attacks on my ssh servers for some time now, and on my most recent server, the attacks per day are fairly regular, as seen in the graph.</p>
<p style="text-align: left;">
<div id="attachment_188" class="wp-caption aligncenter" style="width: 490px"><a href="http://daubers.co.uk/wp-content/uploads/2009/05/plot.png"><img class="size-full wp-image-188" title="Plot of Deny Hosts Blocks per Day" src="http://daubers.co.uk/wp-content/uploads/2009/05/plot.png" alt="Plot of Deny Hosts Blocks per Day" width="480" height="360" /></a><p class="wp-caption-text">Plot of Deny Hosts Blocks per Day</p></div>
<p style="text-align: left;">At the end of June I will stop using port 22 and start using another random port. I&#8217;ll then collect data for 3 months and at the end of september do another blog post showing the difference. I also have another server that I will repeat this experiment on, but that one will be 3 months behind.</p>
<p style="text-align: left;">Hopefully then I will have a nice sturdy scientific answer as to how much more protection moving ssh to a different port gives <img src='http://daubers.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: left;">The code I used to generate this graph is given below for reference.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
</pre></td><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">os</span>
<span style="color: #ff7700;font-weight:bold;">import</span> matplotlib
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">datetime</span>
<span style="color: #ff7700;font-weight:bold;">import</span> matplotlib.<span style="color: black;">pyplot</span> <span style="color: #ff7700;font-weight:bold;">as</span> plt
<span style="color: #ff7700;font-weight:bold;">import</span> matplotlib.<span style="color: black;">dates</span> <span style="color: #ff7700;font-weight:bold;">as</span> mdates
<span style="color: #ff7700;font-weight:bold;">import</span> matplotlib.<span style="color: black;">mlab</span> <span style="color: #ff7700;font-weight:bold;">as</span> mlab
matplotlib.<span style="color: black;">use</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'Agg'</span><span style="color: black;">&#41;</span>
&nbsp;
&nbsp;
datelist = <span style="color: black;">&#123;</span><span style="color: black;">&#125;</span>
rootdir = <span style="color: #483d8b;">'./'</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> plot_all<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
	<span style="color: #808080; font-style: italic;">#first convert dict to a set of x values and a set of y values</span>
	keys = datelist.<span style="color: black;">keys</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	keys.<span style="color: black;">sort</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	values = <span style="color: black;">&#91;</span><span style="color: black;">&#93;</span>
	times = <span style="color: black;">&#91;</span><span style="color: black;">&#93;</span>
	<span style="color: #ff7700;font-weight:bold;">for</span> key <span style="color: #ff7700;font-weight:bold;">in</span> keys:
		values.<span style="color: black;">append</span><span style="color: black;">&#40;</span>datelist<span style="color: black;">&#91;</span>key<span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
	<span style="color: #808080; font-style: italic;">#now convert the keys into time format</span>
		times.<span style="color: black;">append</span><span style="color: black;">&#40;</span><span style="color: #dc143c;">datetime</span>.<span style="color: #dc143c;">datetime</span>.<span style="color: black;">strptime</span><span style="color: black;">&#40;</span>key, <span style="color: #483d8b;">&quot;%Y-%m-%d&quot;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">#now we're ready to plot with matplotlib</span>
	months   = mdates.<span style="color: black;">MonthLocator</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>  <span style="color: #808080; font-style: italic;"># every month</span>
	days	= mdates.<span style="color: black;">DayLocator</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	yearsFmt = mdates.<span style="color: black;">DateFormatter</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'%b'</span><span style="color: black;">&#41;</span>
	dayFmt = mdates.<span style="color: black;">DateFormatter</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'%d'</span><span style="color: black;">&#41;</span>
&nbsp;
	fig = plt.<span style="color: black;">figure</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
	ax = fig.<span style="color: black;">add_subplot</span><span style="color: black;">&#40;</span><span style="color: #ff4500;">111</span><span style="color: black;">&#41;</span>
	dates = <span style="color: #008000;">range</span><span style="color: black;">&#40;</span>times<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span>.<span style="color: black;">toordinal</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>, times<span style="color: black;">&#91;</span>-<span style="color: #ff4500;">1</span><span style="color: black;">&#93;</span>.<span style="color: black;">toordinal</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span> 
	ax.<span style="color: black;">bar</span><span style="color: black;">&#40;</span>times,values,width=<span style="color: #ff4500;">1</span><span style="color: black;">&#41;</span>
&nbsp;
	ax.<span style="color: black;">set_xlabel</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'Date'</span><span style="color: black;">&#41;</span>
	ax.<span style="color: black;">set_ylabel</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'Number of Hosts Denied'</span><span style="color: black;">&#41;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">#ax.plot(times, values)</span>
	<span style="color: #808080; font-style: italic;">#ax.xaxis.set_major_formatter(yearsFmt)</span>
	<span style="color: #808080; font-style: italic;">#ax.xaxis.set_major_locator(months)</span>
	<span style="color: #808080; font-style: italic;">#ax.xaxis.set_minor_formatter(dayFmt)</span>
	<span style="color: #808080; font-style: italic;">#ax.xaxis.set_minor_locator(days)</span>
	ax.<span style="color: black;">format_xdata</span> = mdates.<span style="color: black;">DateFormatter</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'%Y-%m-%d'</span><span style="color: black;">&#41;</span>
	fig.<span style="color: black;">autofmt_xdate</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
        fig.<span style="color: black;">savefig</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;plot.png&quot;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> countup<span style="color: black;">&#40;</span><span style="color: #008000;">file</span><span style="color: black;">&#41;</span>:
	f = <span style="color: #008000;">open</span><span style="color: black;">&#40;</span><span style="color: #008000;">file</span>, <span style="color: #483d8b;">'r'</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">for</span> line <span style="color: #ff7700;font-weight:bold;">in</span> f.<span style="color: black;">readlines</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
		<span style="color: #808080; font-style: italic;">#split by spaces to get the date</span>
		line = line.<span style="color: black;">split</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot; &quot;</span><span style="color: black;">&#41;</span>
		<span style="color: #808080; font-style: italic;">#now see if this is already in the list</span>
		newline = <span style="color: #008000;">False</span>	
		<span style="color: #ff7700;font-weight:bold;">for</span> part <span style="color: #ff7700;font-weight:bold;">in</span> line:
			<span style="color: #ff7700;font-weight:bold;">if</span> part == <span style="color: #483d8b;">&quot;new&quot;</span>:
				newline = <span style="color: #008000;">True</span>
			<span style="color: #ff7700;font-weight:bold;">else</span>:
				<span style="color: #ff7700;font-weight:bold;">continue</span>
		<span style="color: #ff7700;font-weight:bold;">if</span> newline == <span style="color: #008000;">True</span>:
			n = <span style="color: #ff4500;">0</span>
			<span style="color: #ff7700;font-weight:bold;">if</span> line<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span> <span style="color: #ff7700;font-weight:bold;">in</span> datelist:
				datelist<span style="color: black;">&#91;</span>line<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span><span style="color: black;">&#93;</span> = datelist<span style="color: black;">&#91;</span>line<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span><span style="color: black;">&#93;</span> + <span style="color: #ff4500;">1</span>
			<span style="color: #ff7700;font-weight:bold;">else</span>:
				datelist<span style="color: black;">&#91;</span>line<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span><span style="color: black;">&#93;</span> = <span style="color: #ff4500;">1</span>
	f.<span style="color: black;">close</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">for</span> subdir, dirs, files <span style="color: #ff7700;font-weight:bold;">in</span> <span style="color: #dc143c;">os</span>.<span style="color: black;">walk</span><span style="color: black;">&#40;</span>rootdir<span style="color: black;">&#41;</span>:
	<span style="color: #ff7700;font-weight:bold;">for</span> <span style="color: #008000;">file</span> <span style="color: #ff7700;font-weight:bold;">in</span> files:
		<span style="color: #ff7700;font-weight:bold;">if</span> <span style="color: #ff7700;font-weight:bold;">not</span> <span style="color: #008000;">file</span><span style="color: black;">&#91;</span>-<span style="color: #ff4500;">2</span>:<span style="color: black;">&#93;</span> == <span style="color: #483d8b;">&quot;py&quot;</span> <span style="color: #ff7700;font-weight:bold;">and</span> <span style="color: #008000;">file</span>.<span style="color: black;">split</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;.&quot;</span><span style="color: black;">&#41;</span><span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span> == <span style="color: #483d8b;">&quot;denyhosts&quot;</span>:
			countup<span style="color: black;">&#40;</span>rootdir + <span style="color: #008000;">file</span><span style="color: black;">&#41;</span>
&nbsp;
keys = datelist.<span style="color: black;">keys</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
keys.<span style="color: black;">sort</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">for</span> key <span style="color: #ff7700;font-weight:bold;">in</span> keys:
	<span style="color: #ff7700;font-weight:bold;">print</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;%s, %s&quot;</span> <span style="color: #66cc66;">%</span> <span style="color: black;">&#40;</span>key,datelist<span style="color: black;">&#91;</span>key<span style="color: black;">&#93;</span><span style="color: black;">&#41;</span><span style="color: black;">&#41;</span>
plot_all<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2009/05/25/denyhosts-stats/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dear Lazyweb</title>
		<link>http://daubers.co.uk/2009/05/23/dear-lazyweb/</link>
		<comments>http://daubers.co.uk/2009/05/23/dear-lazyweb/#comments</comments>
		<pubDate>Sat, 23 May 2009 20:44:30 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webbyness]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=184</guid>
		<description><![CDATA[Where do you find inspiration for designing a new website or redesigning an old one? How did you learn the simple graphic design skills to do this? I&#8217;m redesigning this place and am a bit stumped. Any help is much appreciated! Thanks.]]></description>
			<content:encoded><![CDATA[<p>Where do you find inspiration for designing a new website or redesigning an old one? How did you learn the simple graphic design skills to do this? I&#8217;m redesigning this place and am a bit stumped. Any help is much appreciated!</p>
<p>Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2009/05/23/dear-lazyweb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A pleasant surprise</title>
		<link>http://daubers.co.uk/2009/04/04/a-pleasant-surprise/</link>
		<comments>http://daubers.co.uk/2009/04/04/a-pleasant-surprise/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 08:28:41 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webbyness]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[ipv6]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=155</guid>
		<description><![CDATA[While installing some software with aptitude last night I noticed this &#8220;0% [Connecting to gb.archive.ubuntu.com (2a01:450:10:1::10)]&#8220;, gb.archive.ubuntu.com is on ipv6! Hooray for the future that should be now!]]></description>
			<content:encoded><![CDATA[<p>While installing some software with aptitude last night I noticed this &#8220;0% [Connecting to gb.archive.ubuntu.com (2a01:450:10:1::10)]&#8220;, gb.archive.ubuntu.com is on ipv6! Hooray for the future that should be now!</p>
]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2009/04/04/a-pleasant-surprise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What does&#8230;</title>
		<link>http://daubers.co.uk/2009/03/06/what-does/</link>
		<comments>http://daubers.co.uk/2009/03/06/what-does/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 15:09:14 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webbyness]]></category>
		<category><![CDATA[workspace photography life interesting]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=140</guid>
		<description><![CDATA[your workspace look like? Just because I&#8217;m interested really, heres the mess that is mine. I generally use the laptop to show notes and slides I&#8217;m working from, and do my work on the desktop. So what does yours look like?]]></description>
			<content:encoded><![CDATA[<p>your workspace look like? Just because I&#8217;m interested really, heres the mess that is mine.</p>
<div class="wp-caption aligncenter" style="width: 343px"><a href="http://www.flickr.com/photos/mattdaubney/3333377232/sizes/m/"><img title="My Workspace" src="http://farm4.static.flickr.com/3337/3333377232_fc7ef876dc.jpg" alt="My Workspace" width="333" height="500" /></a><p class="wp-caption-text">My Workspace</p></div>
<p>I generally use the laptop to show notes and slides I&#8217;m working from, and do my work on the desktop.</p>
<p>So what does yours look like?</p>
]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2009/03/06/what-does/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A new domain and a new VPS</title>
		<link>http://daubers.co.uk/2009/01/13/a-new-domain-and-a-new-vps/</link>
		<comments>http://daubers.co.uk/2009/01/13/a-new-domain-and-a-new-vps/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 20:28:58 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webbyness]]></category>
		<category><![CDATA[bitfolk]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=106</guid>
		<description><![CDATA[Well, a new year and a few changes. Having just moved house, my broken laptop-server machine is at the end of it&#8217;s life.  With rent having gone down after the move I&#8217;ve decided to get the wallet out and ordered a shiny new VPS from those lovely people at bitfolk.com. A couple of hours this [...]]]></description>
			<content:encoded><![CDATA[<p>Well, a new year and a few changes. Having just moved house, my broken laptop-server machine is at the end of it&#8217;s life.  With rent having gone down after the move I&#8217;ve decided to get the wallet out and ordered a shiny new VPS from those lovely people at bitfolk.com.</p>
<p>A couple of hours this morning got all the files transferred up, Apache 2, MySQL and PHP 5 installed and set up as well as Postfix, Dovecot, Fetchmail and Procmail. I&#8217;ve got Procmail to call SpamAssassin using bitfolks dedicated spam assassin server and it all seems to be working nicely now <img src='http://daubers.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Shall just have to try and keep this place updated!</p>
]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2009/01/13/a-new-domain-and-a-new-vps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wardriving and Open Street Map</title>
		<link>http://daubers.co.uk/2008/09/13/wardriving-and-open-street-map/</link>
		<comments>http://daubers.co.uk/2008/09/13/wardriving-and-open-street-map/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 20:47:04 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[webbyness]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=70</guid>
		<description><![CDATA[Last weekend myself and the missus took a drive around my village logging all the access points my laptop could see. I did this using Kismet (in the Ubuntu Repos) and a bluetooth GPS module through gpsd. I did this for two reason. Firstly, I was greatly interested in what percentage of people in the [...]]]></description>
			<content:encoded><![CDATA[<p>Last weekend myself and the missus took a drive around my village logging all the access points my laptop could see. I did this using <a title="Kismet" href="http://www.kismetwireless.net/" target="_blank">Kismet</a> (in the Ubuntu Repos) and a bluetooth GPS module through <a title="gpsd" href="http://gpsd.berlios.de/" target="_blank">gpsd</a>. I did this for two reason. Firstly, I was greatly interested in what percentage of people in the village did not have any encryption on their wireless internet. Secondly, <a title="Open Street Map" href="http://openstreetmap.org/" target="_blank">Open Street Map</a> was severley lacking any decent maps of the village.</p>
<p>Driving around took a few hours (largley because the first time I went around I&#8217;d misconfigured Kismet..), and it took me maybe an hour to put that information into Open Street Map, and maybe 2 hours to analyse the data sufficiently. Here are the results from the access point survery;</p>
<p>First, the encryption data:</p>
<div class="wp-caption alignnone" style="width: 358px"><img title="Encryption types used on Access Points in Inkpen" src="http://daubers.co.uk/~daubers/wardriving/graphs/Inkpen-Encryption.png" alt="Encryption types used on Access Points in Inkpen" width="348" height="248" /><p class="wp-caption-text">Encryption types used on Access Points in Inkpen</p></div>
<p>As we can see, a large chunk (22.43%) of access points logged do not have any encryption on their wireless internet. This is very bad as anyone can easily see anything they send to or recieve from the internet. WEP is almost as useless as having no encryption as it can easily be broken.</p>
<div class="wp-caption alignnone" style="width: 352px"><img title="Wifi Channels used in Inkpen" src="http://daubers.co.uk/~daubers/wardriving/graphs/Inkpen-Channel.png" alt="Wifi Channels used in Inkpen" width="342" height="282" /><p class="wp-caption-text">Wifi Channels used in Inkpen (subtract 1 from legend)</p></div>
<p>This second graph shows us the distribution of channels used in wireless networks in Inkpen. The majority of people use channel 1, 6 or 11. This may be to do with manufacturers standard settings.</p>
<div class="wp-caption alignnone" style="width: 336px"><img title="Manufacturers of Chipsets in Access Points logged around Inkpen" src="http://daubers.co.uk/~daubers/wardriving/graphs/Inkpen-Chips.png" alt="Manufacturers of Chipsets in Access Points logged around Inkpen" width="326" height="182" /><p class="wp-caption-text">Manufacturers of Chipsets in Access Points logged around Inkpen</p></div>
<p>This last one was just an aside really. The data for this probably isn&#8217;t that accurate, but it doesn&#8217;t surprise me that most access points have a Cisco chipset.</p>
<p>Either way, I thought it was an interesting way to spend a morning. Especially for the improvements made to Open Street Map, almost as an afterthought!</p>
]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2008/09/13/wardriving-and-open-street-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An annoyance</title>
		<link>http://daubers.co.uk/2008/04/28/an-annoyance/</link>
		<comments>http://daubers.co.uk/2008/04/28/an-annoyance/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 14:07:15 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Uni]]></category>
		<category><![CDATA[webbyness]]></category>

		<guid isPermaLink="false">http://daubers.co.uk/?p=26</guid>
		<description><![CDATA[A little test, http://swan.ac.uk/ doesn&#8217;t work for me but http://www.swan.ac.uk/ does. The same occurs with http://swansea.ac.uk/ and http://www.swansea.ac.uk/ . Me thinks someone&#8217;s not set them up fully&#8230;&#8230;]]></description>
			<content:encoded><![CDATA[<p>A little test, <a href="http://swan.ac.uk">http://swan.ac.uk/</a> doesn&#8217;t work for me but <a href="http://www.swan.ac.uk/">http://www.swan.ac.uk/</a> does. The same occurs with<a href="http://swansea.ac.uk/"> http://swansea.ac.uk/</a> and <a href="http://www.swansea.ac.uk/">http://www.swansea.ac.uk/</a> . Me thinks someone&#8217;s not set them up fully&#8230;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://daubers.co.uk/2008/04/28/an-annoyance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

