<?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>benking.me.uk &#187; Web/Tech</title>
	<atom:link href="http://www.benking.me.uk/tag/webtech/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.benking.me.uk</link>
	<description>The world according to Ben...</description>
	<lastBuildDate>Thu, 12 Aug 2010 23:12:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Vyatta &#8211; Forwarding traffic to Squid</title>
		<link>http://www.benking.me.uk/2007/10/24/vyatta-forwarding-traffic-to-squid/</link>
		<comments>http://www.benking.me.uk/2007/10/24/vyatta-forwarding-traffic-to-squid/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 09:48:21 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Vyatta]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/10/24/vyatta-forwarding-traffic-to-squid/</guid>
		<description><![CDATA[If you are using Vyatta and want to transparently forward traffic at the router level to a separate Squid proxy you will find that the standard firewall configuration in Vyatta just isn&#8217;t up to the job (yet!). The workaround is to use the /etc/rc.local file to make IPTables do the job for you, heres how [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using <a target="_blank" href="http://www.vyatta.com" title="Vyatta">Vyatta</a> and want to transparently forward traffic at the router level to a separate <a target="_blank" href="http://blogs.bit10.net/ben/www.squid-cache.org" title="Squid Cache">Squid</a> proxy you will find that the standard firewall configuration in Vyatta just isn&#8217;t up to the job (yet!).</p>
<p>The workaround is to use the /etc/rc.local file to make IPTables do the job for you, heres how we did it:</p>
<p>#!/bin/sh -e<br />
#<br />
# rc.local<br />
#<br />
# Modified to forward to squid cache<br />
#<br />
# This script is executed at the end of each multiuser runlevel.<br />
# Make sure that the script will &#8220;exit 0&#8243; on success or any other<br />
# value on error.<br />
#<br />
# In order to enable or disable this script just change the execution<br />
# bits.<br />
#</p>
<p>IPTABLES=&#8221;/sbin/iptables&#8221;<br />
IP=&#8221;/sbin/ip&#8221;<br />
SQUID=&#8221;10.1.1.1&#8243;      # Internal address of our squid box</p>
<p># Webcache jump to cache<br />
echo Setting up jump to webcache</p>
<p># clear any existing entries<br />
$IPTABLES -t mangle -F<br />
$IPTABLES -t mangle -X</p>
<p># Don&#8217;t mark webcache traffic<br />
$IPTABLES -t mangle -A PREROUTING -j ACCEPT -p tcp &#8211;dport 80 -s $SQUID<br />
# Internal subnets to exclude<br />
$IPTABLES -t mangle -A PREROUTING -j ACCEPT -p tcp &#8211;dport 80 -d 10.0.0.0/8     #Don&#8217;t cache internal</p>
<p># External sites to exclude<br />
$IPTABLES -t mangle -A PREROUTING -j ACCEPT -p tcp &#8211;dport 80 -d 1.2.3.4 #IP address of site you want to exclude from going to the cache</p>
<p># Now mark our traffic, we have a number of subnets on virtual interfaces we want to grab, if you aren&#8217;t using vifs simply use eth1 or whatever you are using<br />
$IPTABLES -t mangle -A PREROUTING -j MARK &#8211;set-mark 3 -i eth3.102 -p tcp &#8211;dport 80<br />
$IPTABLES -t mangle -A PREROUTING -j MARK &#8211;set-mark 3 -i eth3.103 -p tcp &#8211;dport 80</p>
<p># Send the marked traffic to table 2 (you can actaully use whatever table you want, i used 2 because we are using eth2 for the subnet squid is on.<br />
$IP rule add fwmark 3 table 2</p>
<p># set the default route for table 2, change eth2 for the interface you are on<br />
$IP route add default via $SQUID dev eth2 table 2</p>
<p># Make sure we exit<br />
exit 0</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/10/24/vyatta-forwarding-traffic-to-squid/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Vyatta &#8211; Cisco on a shoestring?</title>
		<link>http://www.benking.me.uk/2007/10/24/vyatta-cisco-on-a-shoestring/</link>
		<comments>http://www.benking.me.uk/2007/10/24/vyatta-cisco-on-a-shoestring/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 09:27:17 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Vyatta]]></category>
		<category><![CDATA[Interweb]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/10/24/vyatta-cisco-on-a-shoestring/</guid>
		<description><![CDATA[We use Linux extensively at bit10, for DNS, front line mail handling, proxying, web hosting, development platforms, you name it we probably do it in Linux or have at least had a good go&#8230; Probably the most important job it does for us though is for our firewalling, core network routing and traffic management for [...]]]></description>
			<content:encoded><![CDATA[<p>We use Linux extensively at <a target="_blank" href="http://www.bit10.net" title="bit10">bit10</a>, for DNS, front line mail handling, proxying, web hosting, development platforms, you name it we probably do it in Linux or have at least had a good go&#8230;</p>
<p>Probably the most important job it does for us though is for our firewalling, core network routing and traffic management for both bit10s internal systems and for the ISP hosting side of the business.</p>
<p>Our implementation is a highly bespoke customisation of Debian using things like iptables, <a target="_blank" href="http://www.linuximq.net/" title="IMQ">IMQ</a>, vconfig, etc. all good stuff and happily handles the routing and traffic management for our entire colocation and ISP services, however we would be the first to admit it isn&#8217;t the easiest to maintain and look after. The options in the commercial club (<a target="_blank" href="http://blogs.bit10.net/ben/www.cisco.com" title="Cisco">Cisco</a>/<a target="_blank" href="http://www.juniper.net" title="Juniper">Juniper</a>) are simply way to expensive and don&#8217;t offer the flexibility we require.</p>
<p>A couple of months a go a client came to me needing some fairly significant network reorganisation. They had multiple offices around the world, at each site they had a very unsegmented &#8216;flat&#8217; network, between the offices they had a mixture of MPLS and VPN tunnel solutions, and a number of single points of failure.</p>
<p>What we needed to do was to segment up each site into sensible subnets and bring additional resilience to the firewalls and routers.</p>
<p>Our initial reaction was to simply do another custom Linux configuration similiar to our own setup, however we were concerned about the time to get this right and the implications of future maintenance, so we look off the shelf and very quickly discovered <a target="_blank" href="http://www.vyatta.com" title="Vyatta">Vyatta</a>.</p>
<p>Vyatta for the uninitiated of you punts itself as &#8216; The dawn of open-source networking&#8217;, personally I think this is a bit of pessimistic afterall we have been doing routing and firewalling with Linux as long as I can remember, its more of a &#8216;The late afternoon after a good siesta of open-source networking&#8217;.</p>
<p>However here at bit10 &#8216;Loving Doing Digital&#8217; headquarters we can&#8217;t really criticise people on their taglines&#8230; <img src='http://www.benking.me.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So why is Vyatta different?</p>
<p>The answer is simply its relatively easy to get to up and running, has a pretty web interface for those who have command line fear, and above all fantastic support.</p>
<p>Vyatta comes in two flavours, the fully open-source free &#8216;community edition&#8217; and the &#8216;supported edition&#8217;. The community edition will suit you down to the ground if you have relatively simple requirements, basic routing/firewalling/etc., however if you have pushing the envelope you are going to the need the supported edition, which comes in two flavours &#8216;$647/£325&#8242; for web only support, and &#8216;$897/£450&#8242; for full telephone support, both supported flavours include free updates with the lastest fixes.</p>
<p>The telephone support is superb.</p>
<p>Vyatta does have limitations, especially if you are used to getting under the hood and having the full flexibility of Linux based routing, however the payback is a solution thats far simpler to manage.</p>
<p>Things we didn&#8217;t like:</p>
<ol>
<li>We couldn&#8217;t configure the built in firewall to transparently push traffic to a <a target="_blank" href="http://www.squid-cache.org" title="Squid Cache">Squid</a> proxy server. We got around this by going under the hood and having a custom rc.local file that tag and forwarded the traffic (I will post our script on followup blog).</li>
<li>VRRP over VIFs. Vyatta supports <a target="_blank" href="http://en.wikipedia.org/wiki/Virtual_Router_Redundancy_Protocol" title="Wikipedia VRRP">VRRP (Virtual Router Redundancy Protocol)</a> and VLANs out of the box, however you can only run VRRP on real ethernet inferfaces, which is troublesome if you are doing a &#8216;router on a stick&#8217; solution. We have spoken to Vyatta about this and they have pencilled the functionality in for an upcoming build &#8211; good stuff!</li>
<li>The CLI, in a nutshell the CLI isn&#8217;t like IOS, its good and fulfill its job, its just that mental switch you have to make from IOS mode to something different.</li>
</ol>
<p>Things we really liked:</p>
<ol>
<li><a target="_blank" href="http://en.wikipedia.org/wiki/Virtual_Router_Redundancy_Protocol" title="Wikipedia VRRP">VRRP (Virtual Router Redundancy Protocol)</a> out of the box&#8230; VRRP was so simple to set up (on real ethernet interfaces), the village idiots really stupid cousin could have done it.</li>
<li>The separation of configuration from installation. Take a clean server, insert Vyatta CD, one line to install it to the local hard drive, copy your configuration onto it. Job done.</li>
<li>Support. The Vyatta team are passionate about their product, both on the telephone and on the web, and they know its limitations and will tell you so, so you don&#8217;t waste any time trying to make it do something it won&#8217;t.</li>
</ol>
<p>Top Tips:</p>
<ol>
<li>Unless you are doing something dead basic, go for the supported package, this ensures you get the latest version, you get the support and frankly you support Vyatta.</li>
<li>Don&#8217;t mess around trying to deploy it on that 5 yr old bodge of a server you have sat in the corner gathering dust, your firewall/routers will be business critical, so splash out on some decent hardware, we deployed on Dell 860s (&lt;£1,000 each), which is all supported hardware and had no hardware related issues.</li>
<li>Think about what you are trying to achieve, plan it first.</li>
<li>Make sure you actually know a little about networking, while making life as simple as possible for the user, its not dumbed down to the level of a £50 ADSL router from PCWorld. If you don&#8217;t know the basics about routing, firewalling, etc. get someone to help you.</li>
</ol>
<p>Performance:</p>
<p>I haven&#8217;t done any formal performance testing on Vyatta, however we have deployed it in bandwidth heavy environments, with upwards of 200 of LAN users across 10 network segments, and a single processor Dell 860 is running well under 10% load&#8230;<br />
So is Vyatta Cisco on Shoestring&#8230; in my opinion if Vyatta can do the job you want, its definitely preferable to the Cisco option, probably the strongest reason beyond just price, is that Vyatta abstracts the software from the hardware, i.e. within reason you can redeploy a Vyatta configuration on any server with enough interfaces.</p>
<p>All in all well worth looking at.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/10/24/vyatta-cisco-on-a-shoestring/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Being pigeonholed&#8230;</title>
		<link>http://www.benking.me.uk/2007/10/22/being-pigeonholed/</link>
		<comments>http://www.benking.me.uk/2007/10/22/being-pigeonholed/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 14:45:09 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[bit10]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[Selling]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/10/22/being-pigeonholed/</guid>
		<description><![CDATA[Talking about: http://www.jobs.ac.uk/blogs/simply-better Andrew has quite rightly identified one of bit10&#8216;s recurring problems, people often fail to understand everything we do. Mostly they pigeonhole us into being experts in the thing they use us for&#8230; Of course this is entirely our fault, we start by hiding behind &#8216;Full service digital agency&#8217; who &#8216;Loves doing digital&#8217;, [...]]]></description>
			<content:encoded><![CDATA[<p>Talking about: <a href="http://www.jobs.ac.uk/blogs/simply-better">http://www.jobs.ac.uk/blogs/simply-better</a></p>
<p>Andrew has quite rightly identified one of <a target="_blank" href="http://www.bit10.net" title="bit10.net">bit10</a>&#8216;s recurring problems, people often fail to understand everything we do. Mostly they pigeonhole us into being experts in the thing they use us for&#8230;</p>
<p>Of course this is entirely our fault, we start by hiding behind &#8216;Full service digital agency&#8217; who &#8216;Loves doing digital&#8217;, but few people realise what this means, then we somehow fail to make the effort to communicate to our customers what we actually do.</p>
<p>This problem is exacerpated by the fact that our customer research has told us that current bit10 customers NEVER look at our <a href="http://www.bit10.net" title="bit10">website</a> (hence our site now is firmly targeted at new customers).</p>
<p>The solution is frankly simply down to plain old conversation, take the time to chat to your customers to identify their current and future business needs and then point our where you can help them! As per usual everyones enemy&#8230; &#8216;Time&#8217; gets in the way.</p>
<p>For the record, bit10 do:</p>
<ul>
<li>Internet, intranet, digital marketing strategy and consultancy</li>
<li>Creative web design</li>
<li>Web application development</li>
<li>Accessibility testing</li>
<li>Usability testing</li>
<li>Web analytics</li>
<li>Online marketing (dm, adword and affiliate marketing management)</li>
<li>Hosting</li>
<li>Internet connectivity (<a target="_blank" href="http://www.uwsp.co.uk" title="UWSP">University of Warwick Science Park</a> only)</li>
</ul>
<p>Basically everything Internet! <img src='http://www.benking.me.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  You can see the full blurb <a target="_blank" href="http://www.bit10.net/our_services/our_services.html" title="bit10 Services">here</a>.</p>
<p>And thanks <a target="_blank" href="http://www.jobs.ac.uk/blogs/simply-better" title="Andrew Gordon">Andrew</a> for giving me an excuse to list bit10s services on my blog! <img src='http://www.benking.me.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/10/22/being-pigeonholed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft &#8211; Renewing partner program from Firefox&#8230;</title>
		<link>http://www.benking.me.uk/2007/07/06/microsoft-renewing-partner-program-from-firefox/</link>
		<comments>http://www.benking.me.uk/2007/07/06/microsoft-renewing-partner-program-from-firefox/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 10:33:11 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[bit10]]></category>
		<category><![CDATA[Interweb]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/07/06/microsoft-renewing-partner-program-from-firefox/</guid>
		<description><![CDATA[For the last 2 months, I have been trying to renew our Microsoft Partner program membership, it is a very painful experience. Today I finally got someone on the phone at the MS Partner program who could help me. Essentially there is a highly painful online process to go through, which i set off onto [...]]]></description>
			<content:encoded><![CDATA[<p>For the last 2 months, I have been trying to renew our Microsoft Partner program membership, it is a very painful experience.</p>
<p>Today I finally got someone on the phone at the MS Partner program who could help me.</p>
<p>Essentially there is a highly painful online process to go through, which i set off onto using Firefox (under Ubuntu)&#8230;</p>
<p><a href="http://blogs.bit10.net/ben/wp-content/uploads/2007/07/MsPartner.jpg" title="MS Partner Program Firefox" class="imagelink"><img src="http://blogs.bit10.net/ben/wp-content/uploads/2007/07/MsPartner.thumbnail.jpg" alt="MS Partner Program Firefox" height="85" id="image73" /></a></p>
<p>Why oh why do this MS? It just looks bad, and reinforces peoples view of you as monopolistic.</p>
<p>When I mentioned it to the guy at the partner program, its response was &#8216;Well we give you the software under the partner program, so you have no excuse not to use it&#8217;&#8230; Completely missing the point that I might prefer to use Linux for other reasons&#8230;</p>
<p>Anyway, towing the line I struck up IE6 (yes using <a target="_blank" href="http://www.codeweavers.com/products/cxoffice/" title="CrossOver Office">CrossOver Linux</a>), and somewhat amusingly most of the navigation wasn&#8217;t visible to me unless I hovered over it.</p>
<p>Sigh&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/07/06/microsoft-renewing-partner-program-from-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu, PPTP, Windows 2003 VPN Server</title>
		<link>http://www.benking.me.uk/2007/06/14/ubuntu-pptp-windows-2003-vpn-server/</link>
		<comments>http://www.benking.me.uk/2007/06/14/ubuntu-pptp-windows-2003-vpn-server/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 15:23:43 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/06/14/ubuntu-pptp-windows-2003-vpn-server/</guid>
		<description><![CDATA[My transition from a Windows to a Linux desktop has raised a few teething problems, almost the most annoying was the fact that I for some reason I could only VPN into certain MS PPTP VPN servers. In the end I figured out that that the difference was I could VPN into Windows 2000 servers [...]]]></description>
			<content:encoded><![CDATA[<p>My transition from a Windows to a Linux desktop has raised a few teething problems, almost the most annoying was the fact that I for some reason I could only VPN into certain MS PPTP VPN servers.</p>
<p>In the end I figured out that that the difference was I could VPN into Windows 2000 servers but not Windows 2003.</p>
<p>In the logs I was getting:</p>
<p><code>LCP terminated by peer (random load of symbols)</code></p>
<p>I tracked it down in the end to one setting under the PPTP config.</p>
<p>Under KNetworkManager this appears under &#8216;Compression &amp; Encryption&#8217;, &#8216;Encryption&#8217;, &#8216;Require 128 bit MPPE encryption&#8217;. Check this and it all works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/06/14/ubuntu-pptp-windows-2003-vpn-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exchange 2003 and Exmerge Woes</title>
		<link>http://www.benking.me.uk/2007/06/14/exchange-2003-and-exmerge-woes/</link>
		<comments>http://www.benking.me.uk/2007/06/14/exchange-2003-and-exmerge-woes/#comments</comments>
		<pubDate>Thu, 14 Jun 2007 15:08:12 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Networks]]></category>
		<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/06/14/exchange-2003-and-exmerge-woes/</guid>
		<description><![CDATA[Today I needed to extract some mailboxes to PSTs from our Exchange 2003 server. I kept getting a permissions error in my Exmerge.log file: 'Verify that the Microsoft Exchange Information Store service is running and that you have the correct permissions to log on. (0x8004011d)' This is one of those annoying &#8216;exchange being oversecure for [...]]]></description>
			<content:encoded><![CDATA[<p>Today I needed to extract some mailboxes to PSTs from our Exchange 2003 server.</p>
<p>I kept getting a permissions error in my Exmerge.log file:</p>
<p><code>'Verify that the Microsoft Exchange Information Store service is running and that you have the correct permissions to log on. (0x8004011d)'</code></p>
<p>This is one of those annoying &#8216;exchange being oversecure for no good reason moments&#8217;, basically the administrator user (under which you are probably logged on for such an exercise) is denied permission to access individual mailboxes.</p>
<p>I found a couple of MS documents on the subject:</p>
<p><a target="_blank" href="http://support.microsoft.com/kb/322312" title="http://support.microsoft.com/kb/322312 ">http://support.microsoft.com/kb/322312</a></p>
<p>and,</p>
<p><a target="_blank" href="http://technet.microsoft.com/en-us/library/aa996410.aspx" title="http://technet.microsoft.com/en-us/library/aa996410.aspx ">http://technet.microsoft.com/en-us/library/aa996410.aspx</a></p>
<p>Neither of them unfortunately resolved the problem in my case. It appears that even adding the administrator user to a temporary windows &#8216;exchange recovery&#8217; group still didn&#8217;t allow access to the mailbox for extraction.</p>
<p>The solution is to:</p>
<ol>
<li>Create a new Active Directory Group called &#8216;Exchange ExMerge&#8217; (or whatever you like).</li>
<li>Give the new group full permissions on the store as per the 2nd MS article above.</li>
<li>Create a new user and add it to the Exchange ExMerge group <strong>and</strong> Domain Admins.</li>
<li>Logon to the Exchange server as the new user, run Exmerge and it should finally work.</li>
</ol>
<p>You could of course just create the user and give it the appropriate permissions but I was just being &#8216;proper&#8217;! <img src='http://www.benking.me.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/06/14/exchange-2003-and-exmerge-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autoglass the next chapter&#8230;</title>
		<link>http://www.benking.me.uk/2007/05/31/autoglass-the-next-chapter/</link>
		<comments>http://www.benking.me.uk/2007/05/31/autoglass-the-next-chapter/#comments</comments>
		<pubDate>Thu, 31 May 2007 00:28:04 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Interweb]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/05/31/autoglass-the-next-chapter/</guid>
		<description><![CDATA[So the Autoglass comments keep coming on my blog entry about my (good) Autoglass experience, you can read it here. Now I have had an interesting email through from a really nice guy called Gavin Jenks, who works for Autoglass and has commented on my blog more than a couple of times. Gavin has asked [...]]]></description>
			<content:encoded><![CDATA[<p>So the <a target="_blank" href="http://www.autoglass.co.uk" title="Autoglass">Autoglass</a> comments keep coming on my blog entry about my (good) <a target="_blank" href="http://www.autoglass.co.uk" title="Autoglass">Autoglass</a> experience, you can read it <a href="http://blogs.bit10.net/ben/2006/12/06/thieving-bads-tomtom-and-autoglass/" title="Autoglass my blog">here</a>.</p>
<p>Now I have had an interesting email through from a really nice guy called Gavin Jenks, who works for <a target="_blank" href="http://www.autoglass.co.uk" title="Autoglass">Autoglass</a> and has commented on my blog more than a couple of times.</p>
<p>Gavin has asked me if I can delete a comment he made, because he doesn&#8217;t want to get in trouble with the powers that be at <a target="_blank" href="http://www.autoglass.co.uk" title="Autoglass">Autoglass</a>. </p>
<p>I am really sorry Gavin mate but I have thought about it a lot and I just don&#8217;t think it would be right, heres my reasoning:</p>
<ol>
<li>The only thing with a longer memory than the Internet is the taxman, so even if I delete it, the comment will still exist on archive sites, etc. and just put into question other content here.</li>
<li>If <a target="_blank" href="http://www.autoglass.co.uk" title="Autoglass">Autoglass</a> don&#8217;t give staff guidelines on this sort of thing then really they can&#8217;t do anything against you.</li>
<li>If the <a target="_blank" href="http://www.autoglass.co.uk" title="Autoglass">Autoglass</a> marketing people are any good, they will long ago have discovered these blog entries and read them and if they were concerned about your comments they would have already taken action.</li>
<li>I just don&#8217;t think its in the spirit of blogging.</li>
</ol>
<p>Gavin, if you want to retract the comment, please feel free to post a retraction and I will ensure it gets published.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/05/31/autoglass-the-next-chapter/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Espionage Scandal&#8230;</title>
		<link>http://www.benking.me.uk/2007/05/31/espionage-scandal/</link>
		<comments>http://www.benking.me.uk/2007/05/31/espionage-scandal/#comments</comments>
		<pubDate>Wed, 30 May 2007 23:56:22 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[bit10]]></category>
		<category><![CDATA[Systems]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/05/31/espionage-scandal/</guid>
		<description><![CDATA[Commenting on: http://www.theregister.co.uk/2007/04/20/vbi_triscan_blag_espionage_fears/ Wow, you know you have hit the bigtime when one of your clients gets in The Register with a full on bit of espionage. To cut a long story short a client of ours, VBi Limited, got broken into a load of kit stolen under extremely suspicious circumstances. The &#8216;baddies&#8217; broke in, gained [...]]]></description>
			<content:encoded><![CDATA[<p>Commenting on: <a href="http://www.theregister.co.uk/2007/04/20/vbi_triscan_blag_espionage_fears/comments/">http://www.theregister.co.uk/2007/04/20/vbi_triscan_blag_espionage_fears/</a></p>
<p>Wow, you know you have hit the bigtime when one of your clients gets in <a target="_blank" href="http://www.theregister.co.uk" title="The Register">The Register</a> with a full on bit of espionage.</p>
<p>To cut a long story short a client of ours, <a target="_blank" href="http://www.vbilimited.com" title="VBi Limited">VBi Limited</a>, got broken into a load of kit stolen under extremely suspicious circumstances.</p>
<p>The &#8216;baddies&#8217; broke in, gained access to the server room within minutes (the server room, located in a highly unobvious location), and whipped in excess of 30 drives out of the servers.</p>
<p>Sunday 1st April, the phone rang, I will never forget the moment I had a particularly aggressive hangover, &#8216;Hi Ben, its Chris here, we&#8217;ve been robbed!&#8217; (well he used something a little more aggressive than &#8216;robbed&#8217;, but I am trying to keep my blog relatively expletive free&#8217;).</p>
<p>We broke out the disaster plan, the first hour was assessment i.e. sent the client, Chris, in to find out how bad it was &#8211; meanwhile i engaged on a major recovery program of my own, consisting of <a target="_blank" href="http://www.berocca.co.uk/" title="Berocca">Berocca</a>, bacon of eggs and enough water to drown an otter.</p>
<p>A couple of hours later the verdict came back, we had lost pretty much every removable drive &#8211; so that&#8217;ll be a full on recovery then.</p>
<p>Monday 2nd April, Les and I were in the car at 6am on the road to rainy Blackburn, enroute trying to acquire 30 odd replacement hard drives, <a target="_blank" href="http://www.dell.co.uk" title="Dell">Dell</a> frankly were as much use as a server without hard drives, in fact we couldn&#8217;t even find the right phone number to get someone who could vaguely begin to think about the merest possibility of helping us within the next week let alone the next few hours.</p>
<p>Fortunately our good friends at <a target="_blank" href="http://www1.serversource.co.uk/" title="Serversource">Serversource</a>, in Northampton, came to the rescue and had all the drives complete with caddies, with us in Blackburn, by lunchtime. Good work fellas!</p>
<p>Thanks to Les and I working our magic, by the end of play Monday we had restored the AD, all servers base restored, by the end of play Tuesday we had completed a full recovery of all services&#8230;. CRM, Intranet, Exchange, the whole works. </p>
<p>Thanks for coming!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/05/31/espionage-scandal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Back on the shop floor&#8230;</title>
		<link>http://www.benking.me.uk/2007/05/04/back-on-the-shop-floor/</link>
		<comments>http://www.benking.me.uk/2007/05/04/back-on-the-shop-floor/#comments</comments>
		<pubDate>Fri, 04 May 2007 10:21:19 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[bit10]]></category>
		<category><![CDATA[Interweb]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/05/04/back-on-the-shop-floor/</guid>
		<description><![CDATA[Our worthy MD, Alexander Craig, has gone back to the shop floor to do a bit of web design again, for his sister! Check it out&#8230; www.tonicraig.co.uk]]></description>
			<content:encoded><![CDATA[<p>Our worthy MD, Alexander Craig, has gone back to the shop floor to do a bit of web design again, for his sister! Check it out&#8230; <a target="_blank" href="http://www.tonicraig.co.uk" title="Toni Craig">www.tonicraig.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/05/04/back-on-the-shop-floor/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Google Autoglass charges on&#8230;</title>
		<link>http://www.benking.me.uk/2007/03/20/the-google-autoglass-charges-on/</link>
		<comments>http://www.benking.me.uk/2007/03/20/the-google-autoglass-charges-on/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 17:58:04 +0000</pubDate>
		<dc:creator>Ben King</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web/Tech]]></category>

		<guid isPermaLink="false">http://blogs.bit10.net/ben/2007/03/20/the-google-autoglass-charges-on/</guid>
		<description><![CDATA[Google really love my Autoglass coverage, my blog is now 3rd and 4th&#8230; I of course appreciate the irony that the more I blog about it the higher I will be Google for it&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.co.uk" title="Google">Google</a> really love my <a target="_blank" href="http://www.autoglass.co.uk" title="Autoglass">Autoglass</a> coverage, my blog is now 3rd and 4th&#8230; I of course appreciate the irony that the more I blog about it the higher I will be Google for it&#8230;</p>
<p><a href="http://blogs.bit10.net/ben/wp-content/uploads/2007/03/google-autoglass.bmp" title="Google Autoglass" class="imagelink"><img src="http://blogs.bit10.net/ben/wp-content/uploads/2007/03/google-autoglass.bmp" alt="Google Autoglass" height="96" id="image62" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.benking.me.uk/2007/03/20/the-google-autoglass-charges-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
