<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="http://abduzeedo.com/taxonomy/term/536/all" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>vps</title>
    <link>http://abduzeedo.com/taxonomy/term/536/all</link>
    <description></description>
    <language>en</language>
          <item>
    <title>WebTech#3 - Server Security and Hardening</title>
    <link>http://abduzeedo.com/webtech3-server-security-and-hardening</link>
    <description>&lt;h3&gt;Hello everyone, thanks for tuning in to my 3rd article in this series. Well, at this point we have MySQL and a Web server installed - but before we start serving anything on this server, we MUST secure it, let me repeat, this tuff is not optional if you&#039;re serious about your server, so lets take care of it!&lt;/h3&gt;
&lt;p&gt;This article will cover basic security in CentOS, from securing SSH to installing and configuring a basic firewall. Since your server/VPS is pretty bare when we activate it, it is important to implement security as soon as you can to avoid being compromised. You will learn how to restrict access to your VPS to a small number of selected individuals (or PCs) and design a very simple but effective firewall solution.&lt;/p&gt;
&lt;!--more--&gt;&lt;!--more--&gt;&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u2901/mac_terminal_front.jpg&quot; width=&quot;600&quot; height=&quot;293&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;
Once of the fundamentals of linux security is to never work with a root account to avoid having your password sniffed or keylogged while working from a remote location. For that reason, we will create a new user account that will be used to administrate your VPS. Lets start by creating such an account and calling it vpsadmin.&lt;/p&gt;
&lt;p style=&quot;padding-left: 30px;&quot;&gt;&lt;span&gt;# adduser vpsadmin&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;After creating the user we have to give it a password and add some basic permissions to the account. By adding the user to the wheel group we are giving it some administrative rights.&lt;/p&gt;
&lt;p style=&quot;padding-left: 30px;&quot;&gt;# passwd vpsadmin&lt;/p&gt;
&lt;p style=&quot;padding-left: 30px;&quot;&gt;# usermod -a -G wheel vpsadmin&lt;/p&gt;
&lt;p&gt;You can now log in to your new account, but lets stay in root throughout the length of the article. Note that if you cant get a command to run for some reason (most likely because environmental variables haven&#039;t been set up for new user), you can always switch to root by giving the command&lt;/p&gt;
&lt;p style=&quot;padding-left: 30px;&quot;&gt;# su -&lt;/p&gt;
&lt;p&gt;We will not disable the root account, even though you should if you are really concerned about your security. Disabling the root account will require installing sudo and setting up some environmental variables, which will not be covered in this article. Now that we created the new account lets take a look at SSH and firewall security.&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;strong&gt;&lt;em&gt;&lt;span style=&quot;font-size: 12pt; line-height: 115%;&quot;&gt;SSH&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Let’s take a look at the default SSH configuration:&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;# nano /etc/ssh/sshd_config&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;We want to change the port SSH uses to an ambiguous, indistinct number. Look for the line that says ‘#Port 22’ and change it. Don&#039;t forget to take out the # symbol in front of the line. For example,&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Port 12345&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;The next level of security to apply to SSH is to disallowing login by the root user. This way you will only be able to log in with your new user we just created. You’ll want to search for the “#PermitRootLogin yes” line and change it to deny root login attempts, as such:&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;PermitRootLogin no&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Save the configuration file and restart the SSH service. Don&#039;t forget to change the port in your SSH client when you reconnect&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# service ssh restart&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;You should now have a pretty tightened down machine when it comes to SSH, stopping most brute force crack attempts in their tracks. Let’s move on to the next topic.&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;strong&gt;&lt;em&gt;&lt;span style=&quot;font-size: 12pt; line-height: 115%;&quot;&gt;Firewall (APF)&lt;br /&gt;
&lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;If you run a website, blog, or any other type of service that opens your VPS to the internet it&#039;s a good idea to close off any services that may leave your VPS vulnerable. We&#039;ll be installing a free, lightweight firewall solution to address these issues. Download the latest version of APF:&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# wget &lt;a href=&quot;http://www.r-fx.ca/downloads/apf-current.tar.gz&quot; title=&quot;http://www.r-fx.ca/downloads/apf-current.tar.gz&quot;&gt;http://www.r-fx.ca/downloads/apf-current.tar.gz&lt;/a&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Next, unzip and install it:&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# tar -xvf apf-current.tar.gz&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# cd apf-current.tar.gz&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# ./install.sh&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;APF will now be installed to &lt;em&gt;/etc/apf&lt;/em&gt; on CentOS. You can find the configuration file the firewall in &lt;em&gt;/etc/apf/conf.apf&lt;/em&gt;. Now lets open and make some changes to match our SSH config.&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# nano /etc/apf/conf.apf&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;First look for the line that says&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;DEVEL_MODE=&quot;1&quot;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Leaving this option as &quot;1&quot; will disable your firewall after 5 minutes, so make sure to change it to &quot;0&quot;. Next, take a look at the allowed inbound ports. You should see something like&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;IG_TCP_CPORTS=&quot;22,80,443&quot;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Notice that port 22, the default SSH port is open. We want to change this to the port we gave SSH earlier. You can leave port 80 (HTTP) and 443 (HTTPS) open if you plan on running a website. Next, take a look out outbound filtering. By default, APF will not filter outbound traffic but if would like to change that look for the following line&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;EGF=&quot;0&quot;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;And change this value to &quot;1&quot;. On the line directly below it you should see the allowed outbound ports&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;EG_TCP_CPORTS=&quot;21,25,80,443&quot;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Change these if you have enabled outbound filtering and save the firewall config. Now we should add the firewall to start when we reboot our VPS and enable it&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# chkconfig --add apf&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# chkconfig --level 345 apf on&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot; style=&quot;padding-left: 30px;&quot;&gt;# service apf start&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;You might get kicked out of your VPS if you haven&#039;t relogged after changing the SSH config. Just log back in if you need to do any post-install stuff. Remember to use &#039;su -&#039; if some of these commands aren&#039;t registering with the server. You should not have a pretty secure box ready face the dangers of the internet.&lt;/p&gt;
&lt;p&gt;We&#039;ll look at installing some Authoring software on the next post! &lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Carlos Taborda, is Founder and CEO of &lt;b&gt;&lt;a href=&quot;http://webbynode.com&quot;&gt;Webbynode&lt;/a&gt;&lt;/b&gt; a Hosting Provider for Developers, and &lt;b&gt;&lt;a href=&quot;http://stackfu.com&quot;&gt;StackFu&lt;/a&gt;&lt;/b&gt; a Social Hub for Server Stacks.&lt;/p&gt;
&lt;p&gt;You can follow me on &lt;a href=&quot;http://twitter.com/cartab&quot; title=&quot;Twitter&quot;&gt;Twitter @cartab&lt;/a&gt;. &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/webtech3-server-security-and-hardening#comments</comments>
 <category domain="http://abduzeedo.com/tags/carlos">carlos</category>
 <category domain="http://abduzeedo.com/tags/linux">linux</category>
 <category domain="http://abduzeedo.com/tags/server">server</category>
 <category domain="http://abduzeedo.com/tags/vps">vps</category>
 <pubDate>Fri, 05 Dec 2008 22:52:18 +0000</pubDate>
 <dc:creator>cartab</dc:creator>
 <guid isPermaLink="false">1606 at http://abduzeedo.com</guid>
  </item>
  <item>
    <title>WebTech #1 Introduction to servers</title>
    <link>http://abduzeedo.com/webtech-1-introduction-servers</link>
    <description>&lt;h3&gt;Hello everyone, this post will be a very basic introduction, as a lot of designers are new to the world of servers. In my tutorials, I will use a VPS as my platform, however you can use the same commands for a dedicated server. Also, we assume you know what Linux, Apache, PHP, MySQL, and such names are.&lt;/h3&gt;
&lt;!--break--&gt;&lt;!--break--&gt;&lt;h2&gt;Whats a VPS anyways?&lt;/h2&gt;
&lt;p&gt;
def: A VPS a method of partitioning a physical server computer into multiple servers such that each has the appearance and capabilities of running on its own dedicated machine. (wikipedia)&lt;/p&gt;
&lt;p&gt;So basically, a VPS is a ‘division’ of a bigger server, and it fits as a great solution for designers and developers because of the cost involved in such a service. However, a VPS is the next step from entry level-’shared’ hosting and expensive dedicated servers. &lt;/p&gt;
&lt;h3&gt;Accessing your VPS&lt;/h3&gt;
&lt;h4&gt;From Windows:&lt;/h4&gt;
&lt;p&gt;Once you have ordered a VPS and your OS is installed, you need to connect to your server. You will have at least 1 IP address for your server, and SSH is enabled by default. SSH is a secure connection system that basically gives you a command line on your server.&lt;/p&gt;
&lt;p&gt;Firstly, we need to download PuTTY from &lt;a href=&quot;http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html&quot; title=&quot;http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html&quot;&gt;&lt;strong&gt;their website&lt;/strong&gt;&lt;/a&gt; - Once done, double click on the downloaded putty.exe:&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u2901/putty_screenshot.jpg&quot; width=&quot;456&quot; height=&quot;442&quot; alt=&quot;putty_screenshot.jpg&quot; /&gt;&lt;/p&gt;
&lt;p&gt;In the Host Name enter the IP address of your VPS, port 22 is the default port, unless you change it for security - we’ll talk about security later.&lt;/p&gt;
&lt;h3&gt;From Mac or Linux&lt;/h3&gt;
&lt;p&gt;From Mac you need to open your terminal (also in linux). In mac you can find it under Finder -&gt; Application -&gt; Utilities -&gt; Terminal. Once you’re running it is should look like this:&lt;/p&gt;
&lt;p class=&quot;imgC&quot;&gt;&lt;img src=&quot;/files/u2901/mac_terminal.jpg&quot; width=&quot;600&quot; height=&quot;293&quot; alt=&quot;mac_terminal.jpg&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Then type at the prompt&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;ssh root@10.10.x.x (replace the 10.10.x.x with you IP &amp;amp; use your password on the prompt)&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3&gt;Account Management&lt;/h3&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Ok, you&#039;re now connected to your VPS. Let’s begin by setting up a few basics.  Once you’re logged in, immediately change your root password.&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# passwd&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;As you may know, for security reasons it’s not recommended to log in to your VPS using the root account. We only logged in with root this one time to do the initial setup. With that in mind, let’s create a user we will be using instead of root from now on. Choose your own name instead of poweruser.&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# adduser poweruser&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Now we must give the &lt;span style=&quot;font-family: &quot;&gt;poweruser&lt;/span&gt; account some administrative rights. Before we can do that though, it may be necessary to install sudo onto your VPS.&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# apt-get install sudo&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Sudo stands for &lt;em&gt;super user do&lt;/em&gt; and it enables a regular user such as &lt;span style=&quot;font-family: &quot;&gt;poweruser&lt;/span&gt; to run administrative tasks that would typically be available only to root. To enable sudo for the new user, let’s look at the /etc/sudoers file and give our new user super user privileges.&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# nano /etc/sudoers&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Add to the end of file:&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;poweruser&lt;/span&gt;&lt;span style=&quot;font-family: &quot;&gt; ALL=(ALL) ALL&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;You should now be able to log in with your new account and use sudo to perform administrative tasks. When you run a command using sudo, you will be asked for the root password.&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;/p&gt;
&lt;h3&gt;Updating the base system&lt;/h3&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;We are now ready to update our VPS. Let’s start by updating the list of packages available to us.&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# sudo apt-get update&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;Updating works by looking at a list of repositories located in /etc/apt/sources.list. If you plan to install 3&lt;sup&gt;rd&lt;/sup&gt;-party or non-standard software, you may wish to edit your sources.list with your favorite editor (I use nano).&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# sudo nano /etc/apt/sources.list&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;To install the latest security updates and bug fixes, type the full upgrade commands:&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# sudo apt-get upgrade&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# sudo apt-get dist-upgrade&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;After the first command you may be asked to set your timezone. If you are not you may now set it manually for your home location.&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# sudo ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;This creates a symbolic link from /etc/localtime to a file in /usr/share/zoneinfo corresponding with what zone you are in.&lt;/span&gt; Have a look in the directories under /usr/share/zoneinfo to see what timezones are available.&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt; &lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;Resource Checks&lt;/h3&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Before we finish, we’ll run several system utilities to verify the resources on your VPS. Start by looking at the memory usage.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# free –m&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;You should see a table reporting your memory usage. Focus your attention on the second line, starting with -/+ buffers/cache. Under the used column, you will see how much memory applications on your VPS use. Above that you might see a higher number, but this is because it reports memory already used for buffers and cached. &lt;span&gt; &lt;/span&gt;A more powerful command, top, shows how much processing power and memory is being used and for which running processes.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# top –bn 1&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;This will run top in batch mode with one iteration, so that you get a nice and clean output of everything running. Keep in mind that running top with the -bn switches is like taking a snapshot, while running it without them would provide you an ongoing look at processor activity in real-time.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Next, let’s take a look at disk usage:&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span style=&quot;font-family: &quot;&gt;# df&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Df simply shows the amount of total and available disk space on a file system.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Well, now your system is up to date, you have a new user account that can perform administrative tasks, and you are aware of the resources in your working environment. Whatever your choose to use it for, you should now be aware of how to take your VPS from a barebones system to something with a little more meat on it.&lt;/span&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;At this point, we have covered alot of ground for your first server exploration day! Make sure to keep an eye on Abduzeedo, as we will be releasing the next Article on How to Setup Apache (webserver), PHP and MySQL! so you can start serving your websites.&lt;/p&gt;
&lt;div class=&quot;nodeauthor-info&quot;&gt;&lt;h2 class=&quot;title&quot;&gt;About the author&lt;/h2&gt;&lt;div class=&quot;content&quot;&gt;&lt;div class=&quot;desc&quot;&gt;&lt;p&gt;Carlos Taborda, is Founder and CEO of &lt;b&gt;&lt;a href=&quot;http://webbynode.com&quot;&gt;Webbynode&lt;/a&gt;&lt;/b&gt; a Hosting Provider for Developers, and &lt;b&gt;&lt;a href=&quot;http://stackfu.com&quot;&gt;StackFu&lt;/a&gt;&lt;/b&gt; a Social Hub for Server Stacks.&lt;/p&gt;
&lt;p&gt;You can follow me on &lt;a href=&quot;http://twitter.com/cartab&quot; title=&quot;Twitter&quot;&gt;Twitter @cartab&lt;/a&gt;. &lt;/p&gt;
&lt;/div&gt;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4&gt;Sponsored Links:&lt;/h4&gt;&lt;div class=&#039;author_banner&#039;&gt;&lt;/div&gt;&lt;/div&gt;&lt;!--b1229df49e254d558b48cf6a7d7b099a--&gt;
&lt;a href=&quot;http://book.abduzeedo.com/&quot;&gt;&lt;img src=&quot;http://imgs.abduzeedo.com/files/misc/abdz-book-banner.jpg&quot; alt=&quot;Abduzeedo Inspiration Guide for Designers at Amazon&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br/&gt;</description>
     <comments>http://abduzeedo.com/webtech-1-introduction-servers#comments</comments>
 <category domain="http://abduzeedo.com/tags/putty">putty</category>
 <category domain="http://abduzeedo.com/tags/servers">servers</category>
 <category domain="http://abduzeedo.com/tags/ssh">ssh</category>
 <category domain="http://abduzeedo.com/tags/vps">vps</category>
 <pubDate>Thu, 20 Nov 2008 17:37:14 +0000</pubDate>
 <dc:creator>cartab</dc:creator>
 <guid isPermaLink="false">1400 at http://abduzeedo.com</guid>
  </item>
  </channel>
</rss>

