<?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"
	>

<channel>
	<title>Atlas-Tuesday</title>
	<atom:link href="http://www.atlas-tuesday.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.atlas-tuesday.com</link>
	<description>My adventures in the IT world. Documented.</description>
	<pubDate>Wed, 02 May 2007 19:45:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Routing public IP addresses across via virtual tunnel</title>
		<link>http://www.atlas-tuesday.com/routing-public-ip-addresses-across-via-virtual-tunnel</link>
		<comments>http://www.atlas-tuesday.com/routing-public-ip-addresses-across-via-virtual-tunnel#comments</comments>
		<pubDate>Wed, 02 May 2007 19:45:53 +0000</pubDate>
		<dc:creator>dwright</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/routing-public-ip-addresses-across-via-virtual-tunnel</guid>
		<description><![CDATA[A recent situation came up which required that I move a group of servers off-site without changing their public IP address. The off-site location is behind my cable modem at my house. To solve the problem I enlisted the help of an open source application called vtun or Virtual Tunnel and IP tables on a [...]]]></description>
			<content:encoded><![CDATA[<p>A recent situation came up which required that I move a group of servers off-site without changing their public IP address. The off-site location is behind my cable modem at my house. To solve the problem I enlisted the help of an open source application called vtun or Virtual Tunnel and IP tables on a standard CentOS 4.4 installation. Below is a outline of the steps I took to solve the problem.</p>
<p>-&gt; Build two CentOS 4.4 Linux routers. Minimal installation plus development tools. In my situation I used a dual 350Mhz PII and tunnel router #2 was an old Pentium Pro 200Mhz. The dual 350Mhz is located at the main data center and the older Linux box is located at my house.</p>
<p>-&gt; Download and configure vtund from www.vtund.info. There are a number of example configurations available on their website. Below is what I have used.</p>
<p><code><br />
# IP Tunnel Server Configuration<br />
cobra {<br />
passwd  XXXXXXX;    # Password<br />
type  tun;        # IP tunnel<br />
proto udp;            # UDP protocol<br />
compress  lzo:9;    # LZO compression level 9<br />
encrypt  no;        # Encryption<br />
keepalive yes;    # Keep connection alive</code></p>
<p>up {<br />
# Connection is Up<br />
# XXX.XXX.XXX.XXX - local, XXX.XXX.XXX.XXX - remote<br />
ifconfig &#8220;%% XXX.XXX.XXX.XXX pointopoint XXX.XXX.XXX.XXX mtu 1450&#8243;;<br />
};<br />
down {<br />
# Connection is Down<br />
# Shutdown interface<br />
ifconfig &#8220;%% down&#8221;;<br />
};<br />
}<br />
<code><br />
# IP Tunnel Client Configuration<br />
cobra {<br />
passwd  XXXXXXX;      # Password<br />
device tun0;          # Device tun0<br />
persist yes;          # Persist mode<br />
up {<br />
# Connection is Up</code></p>
<p># Assign IP addresses.<br />
ifconfig &#8220;%% XXX.XXX.XXX.XXX pointopoint XXX.XXX.XXX.XXX mtu 1450&#8243;;<br />
};<br />
}<br />
The configuration above is very simlar to the example configurations provided by vtund. There is more you can do here to make this connection more robust but for the purpose of this blog entry I&#8217;ll show it works in more detail. To make the connection between to the two servers you run the following command on the client machine.</p>
<p><code>vtund  cobra</code></p>
<p>This should create a new network interface called tun0 on both servers. This will allow you to connect across the tunnel. To test this i recommend using the following commands.</p>
<p><code><br />
On the client<br />
tcpdump -i tun0<br />
On the server<br />
ping<br />
</code></p>
<p>You should see packets come across the interface and reply back. Once you have established the tunnel connection there is a bit more required to route public IP address both in and out of the tunnel interface. For the sake of this example we&#8217;ll use 10.10.10.0/24 as the network block your routing. You&#8217;ll want to be using a public IP block for this to work correctly not the interal block from the example!</p>
<p>-&gt; Assuming 10.10.10.0/24 is already routed to the tunnel server you&#8217;ll now need to route to packets from the tunnel server to the client. To do this you simply type:<br />
<code><br />
ip route add 10.10.10.0/24 dev tun0<br />
</code></p>
<p>This will push packets from the server -&gt; client. Once the packets are on the client end of the tunnel however they do not have a correct route back to the sender. In my situation the tunnel client is located on a cable modem with a default gateway on a different network. My block of 10.10.10.0/24 cannot be routed across someone elses network. The solution is to flag packets as they enter into the tunnel client router. Once the packets get flagged we can apply an alternate route table to them. The alternate route cable is identical to the standard table except the default gateway is tun0 rather then the cable modem interface. Below is a simple script to generate a duplicate route table and add the make the default gateway the tunnel server:</p>
<p><code><br />
ip route show table main | grep -Ev ^default | while read ROUTE ; do<br />
ip route add table 200 $ROUTE<br />
done<br />
ip route add default via XXX.XXX.XXX.XXX table 200<br />
</code></p>
<p>Now that the alternate table has been created you can verify it works by typing:<br />
<code><br />
ip route list table 200<br />
</code></p>
<p>This should be a simlar table to your main route table except the default gateway should be the IP address of the server-side of the tunnel interface. Now that this table is in place we need to start flagging packets. In order to do this we need to make some special rules in ip tables. Below are the commands to create the flagging rules:<br />
<code><br />
iptables -t mangle -A PREROUTING -i eth2 -j MARK --set-mark=200<br />
iptables -t mangle -A PREROUTING -s 10.10.10.0/24 -j MARK --set-mark=200<br />
iptables -t mangle -A OUTPUT -s 10.10.10.0/24 -j  MARK --set-mark=200<br />
</code><br />
Once the iptable rules are in place you can check them by issuing the &#8216;iptables -nvL -t mangle&#8217; command. In the output you should see packets hitting your new iptable rules. Once you have active hits you&#8217;ll need to add a rule that all packets with a flag need to use the alternate table. To create this rule you need the following<br />
<code><br />
ip rule add fwmark 200 table 200<br />
</code><br />
To verify the rule was added you can issue the &#8216;ip rule list&#8217; command.<br />
Once you have does this your ready to route packets in and out of the tunnel. In my situation I added a third network interface card running NAT for my home computers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/routing-public-ip-addresses-across-via-virtual-tunnel/feed</wfw:commentRss>
		</item>
		<item>
		<title>Dell PowerEdge 2850 RAID Failure</title>
		<link>http://www.atlas-tuesday.com/dell-poweredge-2850-raid-failure</link>
		<comments>http://www.atlas-tuesday.com/dell-poweredge-2850-raid-failure#comments</comments>
		<pubDate>Mon, 22 May 2006 17:41:07 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Red]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/dell-poweredge-2850-raid-failure</guid>
		<description><![CDATA[About three weeks ago one of my newest servers had a major failure. The server runs a very critical business web application so uptime is very important. For this reason we configured a very reliable server.
Dell PowerEdge 2850
Dual Xeon 2.8GHz CPU
2GB ECC DDR-SDRAM
RAID 5 LSI RAID Controller
6 x 73GB Maxtor SCSI Disks

Below is the complete [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">About three weeks ago one of my newest servers had a major failure. The server runs a very critical business web application so uptime is very important. For this reason we configured a very reliable server.</p>
<p class="MsoNormal">Dell PowerEdge 2850<br />
Dual Xeon 2.8GHz CPU<br />
2GB ECC DDR-SDRAM<br />
RAID 5 LSI RAID Controller<br />
6 x 73GB Maxtor SCSI Disks
</p>
<p class="MsoNormal">Below is the complete saga with Dell broken down.</p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial">On 4/27/2006 around 10AM we attempted to log into our clients production web server which hosts their critical business application. Our logins were successful, but we were immediately being bumped back to the login screen. We checked the servers drive state and noticed it had rejected a hard drive from the array. To resolve the problem we attempted to restart the server, however it was unable to fully boot into Windows. <strong>FAIL </strong>at this point the server is completely unresponsive and will not bring up a login screen.</span></p>
<p class="MsoNormal" style="margin-left: 0.5in"><em><span style="font-size: 10pt; font-family: Arial">After some research we found the RAID control was corrupting the data which was being written to the disk. This had been going on for some time, and appears to have corrupted the winlogon.exe.</span></em></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial">Within a short amount of time we were able to bring their corporate website back online on the backup server. However their business application took significantly longer to bring back up because of the frequently changing data. To retrieve the live data off the server we booted using a restore tool, and copies the files / database onto a spare hard drive. This was to ensure we had the 100% most recent version of data from any morning transaction. We were able to bring everything back online by 3:30PM on the backup server.</span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial">We immediately called Dell who recommended we upgrade the firmware server RAID controller. Dell pointed out that this specific machine had shipped with a firmware which had known problems. First thing in the morning on 4/28/2006 we upgraded the firmware to the recommend version. We also upgraded the motherboard BIOS firmware as recommended by Dell. After letting the server run we scheduled a turn-up for Tuesday May 2nd. This was intended to give the server time to burn-in and ensure the firmware fixed the problem. We also had to completely reinstall Windows 2003 Server + MS SQL server 2000 to bring the server back online. </span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial">On 05/02/2006 at 8PM we attempted to bring all the data back over to the production machine. Immediately we checked the servers drive state and noticed it had rejected another hard drive from the array. This is a sign that the problem was not fixed from our firmware update.</span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial">The next morning I called Dell back and they shipped overnight a new RAID &#8220;Key&#8221; chip, controller card memory, and a new backplane for the drives to mount into. We replaced all of this equipment and let the server &#8220;burn-in&#8221; to ensure this fix would work. We scheduled another launch date for 05/09/2006 after letting the server run over the weekend. At 7PM we meet at the office and moved the site files and database back over. At approximately 9PM, after a final reboot we noticed the server rejected another hard drive. To be safe we immediately moved the site back to the backup server.</span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial">On 05/16/2006 after heavy lobbying Dell shipped a new server which seems to have resolved the problem. After further inspection I noticed they changed SCSI hard disk vendors. It’s my theory there is something wrong between MAXTOR + LSI RAID, but at this point I cannot prove anything. The replacement Seagate’s seem to resolve the problem.</span></p>
<p class="MsoNormal"><span style="font-size: 10pt; font-family: Arial">This is intended to be a heads up for anyone dealing with the same issue. Level 1 Dell server support seemed to have failed us here, however once the problem was escalated they took action quickly to ship a new server.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/dell-poweredge-2850-raid-failure/feed</wfw:commentRss>
		</item>
		<item>
		<title>OpenTTD – My Addiction</title>
		<link>http://www.atlas-tuesday.com/openttd-%e2%80%93-my-addiction</link>
		<comments>http://www.atlas-tuesday.com/openttd-%e2%80%93-my-addiction#comments</comments>
		<pubDate>Thu, 23 Mar 2006 19:48:43 +0000</pubDate>
		<dc:creator>dwright</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/openttd-%e2%80%93-my-addiction</guid>
		<description><![CDATA[You may be wondering why I haven’t posted anything to this blog recently. Although I am busy getting married and taking care of a puppy; I must admit something. I am completely addicted to OpenTTD. OpenTTD is based on the original computer game Transportation Tycoon Deluxe. It’s a complete rewrite and has major improvements over [...]]]></description>
			<content:encoded><![CDATA[<p>You may be wondering why I haven’t posted anything to this blog recently. Although I am busy <a title="The Offical Wright Family Website" href="http://www.wrightfamily.info">getting married</a> and taking care of a puppy; I must admit something. I am completely addicted to <a title="Open Transportation Tycoon Deluxe" href="http://www.openttd.org">OpenTTD</a>. <a title="Open Transportation Tycoon Deluxe" href="http://www.openttd.org">OpenTTD</a> is based on the original computer game Transportation Tycoon Deluxe. It’s a complete rewrite and has major improvements over the original. Although not widely played in the United States, there is a large following in Europe. There are always servers available to play on. For anyone who played the original, this is something you should definitely check out. I’ve wasted a massive amount of my time on this game, so I thought it’s high time I pass this addition on to others.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/openttd-%e2%80%93-my-addiction/feed</wfw:commentRss>
		</item>
		<item>
		<title>Palm Treo 700w Review</title>
		<link>http://www.atlas-tuesday.com/palm-treo-700w-review</link>
		<comments>http://www.atlas-tuesday.com/palm-treo-700w-review#comments</comments>
		<pubDate>Fri, 24 Feb 2006 14:19:28 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/palm-treo-700w-review</guid>
		<description><![CDATA[I must admit, I have been a bit reluctant to jump on the smart phone bandwagon. The idea of checking my e-mail anytime and place just didn’t seem like the best idea. At work I was offered a Treo 700w so I could learn how they work before they were issued to all our sales [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">I must admit, I have been a bit reluctant to jump on the smart phone bandwagon. The idea of checking my e-mail anytime and place just didn’t seem like the best idea. At work I was offered a Treo 700w so I could learn how they work before they were issued to all our sales staff. It didn’t take me long to fall in love. The Treo 700w is only available from Verizon Wireless however I’m sure it will eventually be a very common device. The biggest improvement over older smart phones is the ability to connect to an exchange server. The functionality however is only available if you’re running Microsoft Exchange SP2.</p>
<p class="MsoNormal">My first handheld computer was the Compaq iPaq 3850. I was happy with the device, but it didn’t offer much connectivity options back to home base. Also the device was a tad bulky to carry around in a pocket. It always seemed silly to carry around a cell phone and iPaq. The Treo 700w solves that problem by combined an amazing cell phone with all the Windows Mobile features you need. Although there is less screen real estate, the device seems much faster then my iPaq. They have definitely made major improvements in mobile computing. This palm device uses Microsoft Windows Mobile (scary). I’d prefer the traditional palm interface, but the ability to synchronize with Exchange without any special configuration too nice to pass up. I am willing to deal with some interface short-comings for this extra functionality.</p>
<p class="MsoNormal">Some of the most important features are:</p>
<ul>
<li>ActiveSync with Exchange server<span /></li>
<li><span />Slimmer profile then Treo 650. More like a 90’s cell phone then a handheld computer</li>
<li><span />Clear bright screen<span /></li>
<li><span />Improved layout on desktop page</li>
</ul>
<p class="MsoNormal">After using the Treo 700w for just a few days I would highly recommend it to anyone who wants to access all of their change contact, calander, and e-mail on the road. This is not only the best solution, but also one of the only solutions which works directly with Exchange. I am sure more smart phones will be released using this new technology, but for now this is by far the best handheld and phone I’ve ever owned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/palm-treo-700w-review/feed</wfw:commentRss>
		</item>
		<item>
		<title>Dell Expands In India</title>
		<link>http://www.atlas-tuesday.com/dell-expands-in-india</link>
		<comments>http://www.atlas-tuesday.com/dell-expands-in-india#comments</comments>
		<pubDate>Mon, 30 Jan 2006 16:02:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Slashdot]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[&#8220;NEW DELHI - Computer maker Dell Inc. said Monday it planned to add 5,000 jobs in India over the next two years, bringing its work force in the country to 15,000. Dell is also looking to set up a manufacturing center in India, a move that could help boost the sale of Dell computers here, [...]]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;NEW DELHI - Computer maker Dell Inc. said Monday it planned to add 5,000 jobs in India over the next two years, bringing its work force in the country to 15,000. Dell is also looking to set up a manufacturing center in India, a move that could help boost the sale of Dell computers here, President and CEO Kevin Rollins told reporters after a meeting with Indian Prime Minister Manmohan Singh. &#8220;</em></p>
<p>As if it wasn&#8217;t hard enough to understand their support staff. Although this article points out this is just a manufacturing center. It will take Dell one step closer to finally outsourcing all of their technical / support staff. There is no doubt this will have an impact on their quality of service. I believe a company as big as Dell should have support safe in all different regions of the country. This would help do a number of things:</p>
<li>Give employees a normal shift, and stretch support centers across the country to allow for more hours. How excited can a support rep. be at 2am fixing grandma’s printer? Even worse at the end of a 10 hour shift!</li>
<li>Support for different dialects. If you’ve ever had to sit on the phone with someone from the deep south you’ll understand it can be just as bad as trying to understand someone in a foreign country. This subject matter is hard enough, don’t make language the barrier.</li>
<li>Local support helps everyone. Many communities desperately need technical jobs. Just because something is cheaper doesn’t make it better. If you played a role in building something you’ll be significantly more likely to buy it and recommend it to other people.</li>
<p>For more information about Dell checkout my article - <a href="http://www.atlas-tuesday.com/dell-laptops">Dell Laptops Suck</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/dell-expands-in-india/feed</wfw:commentRss>
		</item>
		<item>
		<title>Getting Married</title>
		<link>http://www.atlas-tuesday.com/getting-married</link>
		<comments>http://www.atlas-tuesday.com/getting-married#comments</comments>
		<pubDate>Fri, 27 Jan 2006 18:36:08 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Red]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/getting-married</guid>
		<description><![CDATA[I have started a new website called Wright Family to document the upcoming wedding. Sorry for not posting as much information lately. If you&#8217;d like to follow up on the progress visit out photo journal website.
]]></description>
			<content:encoded><![CDATA[<p>I have started a new website called <a href="http://www.wrightfamily.info">Wright Family</a> to document the upcoming wedding. Sorry for not posting as much information lately. If you&#8217;d like to follow up on the progress visit out photo journal website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/getting-married/feed</wfw:commentRss>
		</item>
		<item>
		<title>NTLDR Missing - Fix</title>
		<link>http://www.atlas-tuesday.com/ntldr-missing-fix</link>
		<comments>http://www.atlas-tuesday.com/ntldr-missing-fix#comments</comments>
		<pubDate>Thu, 12 Jan 2006 20:03:40 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Operating Systems]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/ntldr-missing-fix</guid>
		<description><![CDATA[Last night I had a Windows 2003 web server become compromised. It appears the attacker deleted the boot.ini / NTLDR files to prevent the system from starting up. The problem was a little tricky to troubleshoot, but with the right tools I was able to resolve the issue relatively quickly. Incase anyone runs into the [...]]]></description>
			<content:encoded><![CDATA[<p>Last night I had a Windows 2003 web server become compromised. It appears the attacker deleted the boot.ini / NTLDR files to prevent the system from starting up. The problem was a little tricky to troubleshoot, but with the right tools I was able to resolve the issue relatively quickly. Incase anyone runs into the same problems below are a good set of steps to troubleshoot.</p>
<li>Test the hard drive. Often the source of a NTLDR error is simply that the files have been corrupted by a dead / dying hard drive. If this is the cause <strong>*pound head on desk*</strong></li>
<li>To test the drive I recommend using <a href="http://ultimatebootcd.com/">Hiren’s BootCD</a>. This is like the “killer app” for any PC tech. It has a tool which will allow you to test any type of hard disk, and will also allow you to browse the NTFS partitions.</li>
<li>This would be a good time to copy any mission critical data off the server. Incase we’re unsuccessfully completely restoring the system you should be able to get your files off.</li>
<li>In this situation have a backup server is ideal. On backup server running Windows 2003, search for ntldr / ntdetect.com. Copy these to a floppy disk and move them to the root partition of your server using the <a href="http://ultimatebootcd.com/">Hiren’s BootCD</a></li>
<li>Now create a file called boot.ini with the following information in it, and move it to the root partition of the down server.</li>
<p><code><br />
[boot loader]<br />
timeout=30<br />
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS</p>
<p>[operating systems]<br />
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS=&#8221;Microsoft Windows Server 2003,  Standard&#8221; /fastdetect<br />
</code></p>
<li>You should be able to reboot and the system will come back online as if nothing happened. At least that is how things went more me. Feel free to add comments about your experiences. </li>
<p>I believe I dodged a bullet here. The web server was still had all the site files, and all the data. The individual beyond this could have easy do more damage then they did.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/ntldr-missing-fix/feed</wfw:commentRss>
		</item>
		<item>
		<title>Webtrends Small Business Reviewed (cont.)</title>
		<link>http://www.atlas-tuesday.com/webtrends-small-business-reviewed-cont</link>
		<comments>http://www.atlas-tuesday.com/webtrends-small-business-reviewed-cont#comments</comments>
		<pubDate>Mon, 09 Jan 2006 16:33:32 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/webtrends-small-business-reviewed-cont</guid>
		<description><![CDATA[Sometimes you just can’t get enough of a bad thing. Here is another rant about page view licenses, specifically those implemented in Web Trends 7.5b. After continually fighting with their support staff I came to the realization framed pages are counted as individual pages. The site we’re attempting to process contains 9 pages inside of [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you just can’t get enough of a bad thing. Here is another rant about <a href="http://www.atlas-tuesday.com/webtrends-reviewed">page view licenses</a>, specifically those implemented in Web Trends 7.5b. After continually fighting with their support staff I came to the realization framed pages are counted as individual pages. The site we’re attempting to process contains 9 pages inside of a framed page. This means for every single page view, we’re getting 9 page views against our licensing. The site should be well under our 2,400,000 million yearly licenses, but with this calculation we’re using over a million per month!</p>
<p>Once I found the source of my frustration I contacted Webtrends for a solution to this problem. They referred me to their professional development department to pay to have an application written to remove the pages from my log files. It sounds like this has been a problem with web trends in the past. This custom programming from webtrends was going to be very expensive. Why not development this small “frame stripper” application and integrate it into Webtrends! </p>
<p>Why should I spend thousands more dollars, and tons more man hours when webtrends has already written this application before. Why not simply include their completed code with the final product? I seriously doubt it would be hard to add-on to webtrends. My opinion is they are attempting to create another revenue stream. Customers either need to upgrade to WAY more page view licenses then they need to, OR pay for custom programming to fix the application. It’s a lose – lose situation.</p>
<p>I completely understand their desire to make money. I also believe if you have a giant website you should pay more for analytics. I feel as a customer I’ve fallen through the cracks and been overlooked. The situation which I am in is not that out of the ordinary. The same way a website needs to be accessible using different browsers, analytics programs need to be functional on different style websites, including frames.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/webtrends-small-business-reviewed-cont/feed</wfw:commentRss>
		</item>
		<item>
		<title>Webtrends Small Business Reviewed</title>
		<link>http://www.atlas-tuesday.com/webtrends-reviewed</link>
		<comments>http://www.atlas-tuesday.com/webtrends-reviewed#comments</comments>
		<pubDate>Mon, 19 Dec 2005 16:35:09 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.atlas-tuesday.com/35</guid>
		<description><![CDATA[Project Overview
For one of our larger clients we’ve decided to move their website / database / analytics to a dedicated group of servers. While this project was fairly straight forward on the surface it became a real pain when it came time to setup their analytics software. For this project the poison of choice was [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Project Overview</strong><br />
For one of our larger clients we’ve decided to move their website / database / analytics to a dedicated group of servers. While this project was fairly straight forward on the surface it became a real pain when it came time to setup their analytics software. For this project the poison of choice was Webtrends 7.5b. Working for a marketing driven company I’ve had the chance to use nearly all analytics at one point or another, however this was my first experiencing using the newest version of <a href="http://www.webtrends.com/">Webtrends</a>. It didn’t take long before I learned to hate this application, just like its parent programs. There is one word which all computer people have learned to hate. Licensing. Nothing can drive a person insane more then having all the tools to fix something, but not having the “permissions” to use them. The worst part is we’ve spent over $1000 to be back to square one. The problem is how Webtrends handles licensing.</p>
<p><strong>Annual Page Views (and why they suck)</strong><br />
For our client we’ve ordered WebTrends 7 Small Business with an add-on of 1,000,000 annual page views to get them started. This should be plenty of page views per year right? WRONG. According to WebTrends you need to have licenses for all the page views you’re going to generate in a given year, which means, if I process logs from 2003 in 2005 those work against my 2,000,000 cap. Their solution is to call their sales staff and have them give me unlimited licenses while we import all the old data. Sure this might resolve the problem, but imagine how many people are out there ripping their hair out trying to import old data? This is the old application I know of which handles licensing is such an odd way. I believe WebTrends is more concerned about making money on their larger clients, then making their software user-friendly. </p>
<p><strong>Interface Reviewed</strong><br />
Once I got the software working correctly, things started to look better. They have definitely created a very user friendly analytics solution. The user management seems to be top notice. I can tell they’ve pulled some ideas from their competition however. I see some similarities to both <a href="http://www.sane.com/">NetTracker</a> &#038; <a href="http://www.google.com/analytics/">Urchin</a>. The reporting layout is easy to follow, and makes better sense then many of the applications on the market. You can definitely tell WebTrends has been doing this for awhile. I can give them no fault on the application itself. They have definitely got their act together since WebTrends 6.0 log analyzer (which I still use for some websites).</p>
<p><strong>Conclusion</strong><br />
Although the Interface is nice, the licensing is very poorly done. With that said, I cannot recommend this software solution. There are a number of other applications on the market which are more capable for significantly less investment. If you’re looking to buying WebTrends 7 Small Business I recommend you try <a href="http://www.sane.com/">NetTracker</a>. If you still want to buy WebTrends be ready for a fight over licensing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/webtrends-reviewed/feed</wfw:commentRss>
		</item>
		<item>
		<title>Top 10 System Administrator Truths</title>
		<link>http://www.atlas-tuesday.com/top-10-system-administrator-truths</link>
		<comments>http://www.atlas-tuesday.com/top-10-system-administrator-truths#comments</comments>
		<pubDate>Tue, 13 Dec 2005 15:59:00 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
		<category><![CDATA[Slashdot]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[    Vo0k writes "What are your top ten system administrator truths? We all know them already, but it's still fun re-telling them. Stuff like "90% of all hardware-related problems come from loose connectors", even though you already know it's true, may save you from replacing the "faulty" motherboard if you recall it at the right time."<img src="http://rss.slashdot.org/Slashdot/slashdotIt?g=542"/>
        ]]></description>
			<content:encoded><![CDATA[<p><em>Vo0k writes &#8220;What are your top ten system administrator truths? We all know them already, but it&#8217;s still fun re-telling them. Stuff like &#8220;90% of all hardware-related problems come from loose connectors&#8221;, even though you already know it&#8217;s true, may save you from replacing the &#8220;faulty&#8221; motherboard if you recall it at the right time.&#8221;</em></p>
<p>A few others my from experience:<br />
1.) Computers don&#8217;t delete files, people do.<br />
2.) It&#8217;s always your fault.<br />
3.) Money can fix problems.<br />
4.) Working on computers is only fun while they are working.<br />
5.) Marketing people will install spyware.<br />
6.) Sales people will install viruses.<br />
7.) Production people will delete important files.<br />
8.) E-Mail is the most important thing in the world, to everyone except you.<br />
9.) No matter how hard you work it will be there waiting for you in the morning.<br />
10.) Hard drives will die.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlas-tuesday.com/top-10-system-administrator-truths/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
