<?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>Robert Naylor &#187; Networking</title>
	<atom:link href="http://robert.pobice.co.uk/cats/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://robert.pobice.co.uk</link>
	<description>Random thoughts and tech tips</description>
	<lastBuildDate>Sun, 11 Apr 2010 18:13:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cacti Update</title>
		<link>http://robert.pobice.co.uk/2006/09/cacti-update/</link>
		<comments>http://robert.pobice.co.uk/2006/09/cacti-update/#comments</comments>
		<pubDate>Sun, 17 Sep 2006 14:44:34 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/?p=30</guid>
		<description><![CDATA[Well that was easy.  I&#8217;ve just moved two tables to the type Memory/Heap and cacti runs like it used to (in fact a hell of a lot better than it has been doing recently.)
The two tables moved are: snmp_counter64* and poller_output.  Both these tables can afford to loose the data on restart &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Well that was easy.  I&#8217;ve just moved two tables to the type Memory/Heap and cacti runs like it used to (in fact a hell of a lot better than it has been doing recently.)</p>
<p>The two tables moved are: snmp_counter64* and poller_output.  Both these tables can afford to loose the data on restart &#8211; they hold data before it is moved into the rra and holds at most 5 mins worth of data (IE one cycle).</p>
<p>It also improves the situation if the server restarts as if data is left in the poller_output table it can push the the php poller over its memory limit and stop it working properly, so its a good idea to start with it empty.</p>
<p>Snmp_counter64 also needs emptying every now and again &#8211; as when you remove devices from cacti it does not get removed from here</p>
<p>The SQL code to achieve this is:<br />
<code><br />
alter table cacti.snmp_counter64 engine=heap;<br />
delete from cacti.poller_output;<br />
ALTER TABLE cacti.poller_output MODIFY COLUMN output VARCHAR(255);<br />
alter table cacti.poller_output engine=heap;<br />
</code></p>
<p><strong>Warning</strong><br />
<em>Some graphs may stop updating if the script used to generate data for the output more the 255 characters</em>  If you use MYSQL 5, then you can use something like VARCHAR(1024) instead.<br />
This may cause data to be lost from the current run.</p>
<p>The server now copes pretty well.  I haven&#8217;t tried anything new to it yet, but it generally appears to be working better then it has done for past couple of months.  I would like to re do the disk structure, but for now this will do.</p>
<p>*This table is from a patch &#8211; most people won&#8217;t have this table.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/09/cacti-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cacti</title>
		<link>http://robert.pobice.co.uk/2006/09/cacti-2/</link>
		<comments>http://robert.pobice.co.uk/2006/09/cacti-2/#comments</comments>
		<pubDate>Tue, 12 Sep 2006 20:17:44 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/index/archives/2006/09/29</guid>
		<description><![CDATA[Well our age&#8217;ed Dell server has finally hit a limit with cacti.
Currently it has:
Hosts:354  Data-Sources:16943 RRDs Processed:8744
And has hit a limit with Disk i/o.
What I plan to do is: Move it onto a temp virtual server.  Completely rebuild the old dell with two RAID 1 sets each on 2 disks &#8211; One for [...]]]></description>
			<content:encoded><![CDATA[<p>Well our age&#8217;ed Dell server has finally hit a limit with cacti.</p>
<p>Currently it has:<br />
Hosts:354  Data-Sources:16943 RRDs Processed:8744</p>
<p>And has hit a limit with Disk i/o.</p>
<p>What I plan to do is: Move it onto a temp virtual server.  Completely rebuild the old dell with two RAID 1 sets each on 2 disks &#8211; One for the RRA and one for the DB and see how it put up with that.  The rebuild should help on the disk layout too &#8211; due to all the network changes and low disk space its likely the disk could have a few few frags.</p>
<p>If this doesn&#8217;t work and it still struggles, then I&#8217;ll use one of the various other spare dells (might have to be one without a raid card &#8211; so it&#8217;ll be software raid) and stick the database and possibly front end on it.</p>
<p>Once we have it stable again &#8211; I suppose I better look into a better way of coping with gigabit Ethernet cards in windows &#8211;  currently we use the SnmpProxy2.pl hack &#8211; may just be a case of limiting it to Windows servers some how and not all 64bit Ethernet counters.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/09/cacti-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPA/IPW2200/Linux/Debian 3</title>
		<link>http://robert.pobice.co.uk/2006/07/wpaipw2200linuxdebian-3/</link>
		<comments>http://robert.pobice.co.uk/2006/07/wpaipw2200linuxdebian-3/#comments</comments>
		<pubDate>Thu, 06 Jul 2006 21:16:40 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Thumbs Up]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/index/archives/2006/07/23</guid>
		<description><![CDATA[After hearing about Network Manager on LugRadio at Guadec I decided to give it a go.
A bit of messing around &#8211; including installing the version from Testing I found out I need a new kernel for WPA.
Of I went and got 2.6.17 and compiled it.
Things of Note:
I had to use the ieee80211 module and the [...]]]></description>
			<content:encoded><![CDATA[<p>After hearing about Network Manager on <a href=http://lugradio.org>LugRadio</a> at Guadec I decided to give it a go.</p>
<p>A bit of messing around &#8211; including installing the version from Testing I found out I need a new kernel for WPA.</p>
<p>Of I went and got 2.6.17 and compiled it.</p>
<p>Things of Note:<br />
I had to use the ieee80211 module and the ipw2200 module from the kernel &#8211; but they appear to work so now problems.</p>
<p>After that network manager poped up &#8211; it found my wireless network.  Selected it, a setup box appeared in which I put my WPA pass-phrase in and off it went and connected &#8211; all working a lot more reliable that just wpa supplicant on its own.  Could be down to the new kernel mind.  However it is very easy to use, and well I impressed.  It&#8217;ll make using my laptop as a laptop a lot easier.</p>
<p><strong>Update</strong><br />
Wow &#8211; after all this work and finally wireless is the most stable I&#8217;ve ever had it on Linux.  In fact its not gone wrong once since this.  Even in windows I was having a few problems now and again.  Speed is good, stability and great and it just works.  I enter a password in at the start and it goes off, picks the right network and passpharse and just sets it up for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/07/wpaipw2200linuxdebian-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cacti</title>
		<link>http://robert.pobice.co.uk/2006/07/cacti/</link>
		<comments>http://robert.pobice.co.uk/2006/07/cacti/#comments</comments>
		<pubDate>Sun, 02 Jul 2006 11:16:08 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Thumbs Up]]></category>
		<category><![CDATA[Work / Microsoft]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/index/archives/2006/07/22</guid>
		<description><![CDATA[Just added another plug-in to cacti over the last couple of weeks &#8211; weathermap.
Basically allows you to draw diagrams of you&#8217;re network, and it takes data from the rrd files and displays different coloured arrows show the percentage of the link used.
Basically allowing you to see whats going on, on your network and where all [...]]]></description>
			<content:encoded><![CDATA[<p>Just added another plug-in to cacti over the last couple of weeks &#8211; <a href=http://wotsit.thingy.com/haj/cacti/php-weathermap/?v=0.82>weathermap.</a></p>
<p>Basically allows you to draw diagrams of you&#8217;re network, and it takes data from the rrd files and displays different coloured arrows show the percentage of the link used.</p>
<p>Basically allowing you to see whats going on, on your network and where all the traffic is going/coming from</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/07/cacti/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source &amp; The NHS</title>
		<link>http://robert.pobice.co.uk/2006/05/open-source-the-nhs/</link>
		<comments>http://robert.pobice.co.uk/2006/05/open-source-the-nhs/#comments</comments>
		<pubDate>Tue, 30 May 2006 20:03:44 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Thumbs Up]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/index/archives/2006/05/19</guid>
		<description><![CDATA[The NHS as a whole doesn&#8217;t seem to use any open source, nor does it look like any will be coming (unless the likes of Java get GPL&#8217;ed)
However at work we have started to look into Open Source.
We currently have an every-growing Cati Install.  Cacti is a great bit of software &#8211; at its [...]]]></description>
			<content:encoded><![CDATA[<p>The NHS as a whole doesn&#8217;t seem to use any open source, nor does it look like any will be coming (unless the likes of Java get GPL&#8217;ed)</p>
<p>However at work we have started to look into Open Source.</p>
<p>We currently have an every-growing <a href=http://cacti.net>Cati</a> Install.  Cacti is a great bit of software &#8211; at its most basic it creates graphs from SNMP data.  It makes it very easy to add new hosts and created and managed display them.  This is a good thing in our network &#8211; we are currently monitoring 116 devices with it, and this is growing every week as I get around to adding more devices.</p>
<p>With a number of addons (see <a href=http://cactiusers.org>http://cactiusers.org/</a>) Cacti can also do a lot more.  Currently the system:<br />
1) Graphs various data from servers, switches, UPS&#8217;s and everything else we feel like monitoring with SNMP<br />
2) With a few Perl scripts it even monitors various data from the likes of Exchange, ISS and Citrix (Using <a href=http://nsclient.ready2run.nl>nsclient</a>  which can pull data available in WMI to Linux)<br />
3) Monitor servers for restarts (via checking uptime).  Emails us when every a server restarts<br />
4) Threshold Monitoring &#8211; the system can email use when ever a value has gone bellow or above a value for a certain amount of times (mainly used to warn about UPS usage and disk space)<br />
5) Reporting &#8211; Can build reports from the rrd files to find out top talkers etc</p>
<p>We are adding more and more features to the system all the time.  Its very helpful to have a system which sits there and monitors everything we throw at it so we don&#8217;t have to keep a close eye on things.</p>
<p>The next open source system was are looking at using is good old Squid.   We are getting a number of 100mb net connections at various sites and we need to replace of aging ISA boxes.  Given that we have loads of old hardware available we&#8217;re going down the squid box.  If we find ones is performing slowly just build another one to help out.  Currently in testing and working out what rule and routing needs setting up still.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/05/open-source-the-nhs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good Wireless News</title>
		<link>http://robert.pobice.co.uk/2006/05/good-wireless-news/</link>
		<comments>http://robert.pobice.co.uk/2006/05/good-wireless-news/#comments</comments>
		<pubDate>Thu, 25 May 2006 20:08:58 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/index/archives/2006/05/18</guid>
		<description><![CDATA[After a few weeks of use &#8211; I can confirm my wireless works well by just starting wp-supplicant.   No constant restarting and removing/radding of modules hoping to get a use-able speed.  The speed can sometimes be a bit poor &#8211; but at least its use-able and doesn&#8217;t hinder unless transferring large files.
]]></description>
			<content:encoded><![CDATA[<p>After a few weeks of use &#8211; I can confirm my wireless works well by just starting wp-supplicant.   No constant restarting and removing/radding of modules hoping to get a <strong>use-able</strong> speed.  The speed can sometimes be a bit poor &#8211; but at least its use-able and doesn&#8217;t hinder unless transferring large files.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/05/good-wireless-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPA/IPW2200/Linux/Debian 2</title>
		<link>http://robert.pobice.co.uk/2006/04/wpaipw2200linuxdebian-2/</link>
		<comments>http://robert.pobice.co.uk/2006/04/wpaipw2200linuxdebian-2/#comments</comments>
		<pubDate>Sat, 15 Apr 2006 15:57:23 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/index/archives/2006/04/14</guid>
		<description><![CDATA[Yes once again I have to go through the pain of WPA/IPW2200/Debian/Kernel problems.  Given that I have a laptop I wanted more laptop like features on my system &#8211; so I kernel upgrade was needed.
Currently using:
Kernel 2.6.14
-Wireless Extension v19.
Debian Etch + Extra apt sources
wpa_supplicant v0.4.7
Wireless-Tools version 28
The problem this time is that I needed [...]]]></description>
			<content:encoded><![CDATA[<p>Yes once again I have to go through the pain of WPA/IPW2200/Debian/Kernel problems.  Given that I have a laptop I wanted more laptop like features on my system &#8211; so I kernel upgrade was needed.</p>
<p>Currently using:<br />
Kernel 2.6.14<br />
-Wireless Extension v19.<br />
Debian Etch + Extra apt sources<br />
wpa_supplicant v0.4.7<br />
Wireless-Tools version 28</p>
<p>The problem this time is that I needed to change some of the options for wpa_supplicant.  No longer does it work with the ipw drivers but the wext drivers</p>
<p>/etc/default/wpasupplicant now reads:</p>
<p>ENABLED=1<br />
OPTIONS=&#8221; -D wext -ddd -i eth1 -c /etc/wpa_supplicant.conf&#8221;</p>
<p>It works for now, but a new kernel compile is needed as the laptop doesn&#8217;t powerdown on shutdown at present.  So may be yet another upgrade needed to get wireless working again.</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/04/wpaipw2200linuxdebian-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPA/IPW2200/Linux/Debian</title>
		<link>http://robert.pobice.co.uk/2006/01/wpaipw2200linuxdebian/</link>
		<comments>http://robert.pobice.co.uk/2006/01/wpaipw2200linuxdebian/#comments</comments>
		<pubDate>Mon, 09 Jan 2006 20:34:21 +0000</pubDate>
		<dc:creator>robert</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://blog.pobice.co.uk/index/archives/2006/01/11</guid>
		<description><![CDATA[Wireless on Linux sucks.  It seems everytime one little bit in the chain of programs, firmware and drivers changes I lose WPA capabilities.  In fact currently Debian, IPW2000 and wpa_supplicent don&#8217;t work together, and apparently this happens on a number of other distributions.
I have got it working, but I used a custom 2.6.12 [...]]]></description>
			<content:encoded><![CDATA[<p>Wireless on Linux sucks.  It seems everytime one little bit in the chain of programs, firmware and drivers changes I lose WPA capabilities.  In fact currently Debian, IPW2000 and wpa_supplicent don&#8217;t work together, and apparently this happens on a number of other distributions.</p>
<p>I have got it working, but I used a custom 2.6.12 Kernel (the debian one doesn&#8217;t quite agree with all the stuff on my laptop), and compiled and installed ieee80211-1.0.2 from source, then compiled ipw2200-1.0.6 from source and it works!  Well for now.  Just in case its important the version of WPA_Supplicant I&#8217;m running is 0.4.6.</p>
<p>Time to see how long it lasts this time&#8230;&#8230;..</p>
<p>(Oh and by it works means that most of the time it loads in the right order and works &#8211; sometime it loads in the wrong order so it ends up been eth2 and not eth1, other times I need to remove and re-add the ipw2200 module for things to work)</p>
]]></content:encoded>
			<wfw:commentRss>http://robert.pobice.co.uk/2006/01/wpaipw2200linuxdebian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
