<?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>Frank Contreras</title>
	<atom:link href="http://frankcontreras.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://frankcontreras.com</link>
	<description>Career and Professional Website</description>
	<lastBuildDate>Tue, 24 Apr 2012 20:46:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Increase WordPress Upload and Post Size, Allowed File Types</title>
		<link>http://frankcontreras.com/increase-wordpress-upload-and-post-size-allowed-file-types/</link>
		<comments>http://frankcontreras.com/increase-wordpress-upload-and-post-size-allowed-file-types/#comments</comments>
		<pubDate>Sun, 22 Apr 2012 21:42:14 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=615</guid>
		<description><![CDATA[Navigate to the /etc directory. Make a backup of the php.ini file by typing: cp php.ini php.ini.bak Edit the php.ini file. Change the upload_max_filesize from the 2 MB default to something greater like 64 MB. Change the post_max_size from the 2 MB default to something greater like 64 MB. To add more allowable file types, [...]]]></description>
			<content:encoded><![CDATA[<p>Navigate to the /etc directory.</p>
<p>Make a backup of the php.ini file by typing:</p>
<p>cp php.ini php.ini.bak</p>
<p>Edit the php.ini file.</p>
<p>Change the upload_max_filesize from the 2 MB default to something greater like 64 MB.</p>
<p>Change the post_max_size from the 2 MB default to something greater like 64 MB.</p>
<p>To add more allowable file types, navigate to the wp-includes directory of your WordPress site.  There, edit the functions.php file.</p>
<p>In the get_allowed_mime_types() function, add the desired file type using the existing file types as an example for the format.  A useful link for a list of MIME types: <a href="http://support.microsoft.com/kb/936496">http://support.microsoft.com/kb/936496</a></p>
<p>&nbsp;</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/increase-wordpress-upload-and-post-size-allowed-file-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install haproxy on centos</title>
		<link>http://frankcontreras.com/install-haproxy-on-centos/</link>
		<comments>http://frankcontreras.com/install-haproxy-on-centos/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 14:36:29 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=594</guid>
		<description><![CDATA[Use the following steps to install compilers and compile haproxy source. yum -y install wget gcc gcc-c++ autoconf automake make wget http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.20.tar.gz /download tar -zxf haproxy-1.4.20.tar.gz cd haproxy-1.4.20 make TARGET=linux26 cp haproxy /usr/sbin/haproxy vi /etc/haproxy.cfg Sample /etc/haproxy.cfg file: global maxconn 4096 pidfile /var/run/haproxy.pid daemon defaults mode http retries 3 option redispatch maxconn 2000 contimeout 5000 [...]]]></description>
			<content:encoded><![CDATA[<p>Use the following steps to install compilers and compile haproxy source.</p>
<pre>yum -y install wget gcc gcc-c++ autoconf automake make
wget http://haproxy.1wt.eu/download/1.4/src/haproxy-1.4.20.tar.gz /download
tar -zxf haproxy-1.4.20.tar.gz
cd haproxy-1.4.20
make TARGET=linux26
cp haproxy /usr/sbin/haproxy
vi /etc/haproxy.cfg</pre>
<p>Sample /etc/haproxy.cfg file:</p>
<pre>global
      maxconn 4096
      pidfile /var/run/haproxy.pid
      daemon

defaults
      mode http
      retries 3
      option redispatch
      maxconn 2000
      contimeout 5000
      clitimeout 50000
      srvtimeout 50000

listen aprimo873lb 10.252.33.105:80
      mode http
      cookie APRIMO873LB insert
      balance roundrobin
      option httpclose
      option forwardfor
      stats enable
      stats auth myuser:mypass
      <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a> aprimow1 10.252.33.173:80 cookie arpimo873lb_aprimow1 check
      <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a> aprimow2 10.252.33.174:80 cookie aprimo873lb_aprimow2 check</pre>
<p>Start the load balancer:</p>
<pre>haproxy -f /etc/haproxy.conf</pre>
<p>Add the above line to /etc/rc.local file to have haproxy start at bootup.</p>
<p>When I get around to it, I would like to set up an SSL load balancer using something similar to this:<br />
<a href="http://blog.phpontrax.com/2010/02/how-to-make-an-open-source-load-balancer-stunnel-haproxy/">http://blog.phpontrax.com/2010/02/how-to-make-an-open-source-load-balancer-stunnel-haproxy/</a></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/install-haproxy-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XenServer 6 Auto Start VM</title>
		<link>http://frankcontreras.com/xenserver-6-auto-start-vm/</link>
		<comments>http://frankcontreras.com/xenserver-6-auto-start-vm/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 03:30:09 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=589</guid>
		<description><![CDATA[To do set this as a configuration option is something that requires a premium license. I enjoy the open source stuff because typically there is no cost involved.  It&#8217;s not that I&#8217;m cheap, I just don&#8217;t have a bunch of money to fund my home lab just to get basic features.  If my home lab [...]]]></description>
			<content:encoded><![CDATA[<p>To do set this as a configuration option is something that requires a premium license. I enjoy the <a href="http://frankcontreras.com/tag/opensource/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Open Source">open source</a> stuff because typically there is no cost involved.  It&#8217;s not that I&#8217;m cheap, I just don&#8217;t have a bunch of money to fund my home lab just to get basic features.  If my home lab was generating money, I would have no problem buying licenses to do stuff.  Anyway, I digress on rants when irritated and you probably are more interested in how to work around this limitation.</p>
<p>At the end of your /etc/rc.local file add in lines that will pause for a bit and then power on your next vm like so:</p>
<pre>sleep 20
xe vm-start uuid=[uuid1]

sleep 20
xe vm-start uuid=[uuid2]

sleep 20
xe vm-start uuid=[uuid3]</pre>
<p>etc&#8230;<br />
The uuid is the unique identifier for the vm which can be found in XenCenter when you look at the VM&#8217;s general tab.</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/xenserver-6-auto-start-vm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install XenServer Tools on CentOS guest</title>
		<link>http://frankcontreras.com/install-xenserver-tools-on-centos-guest/</link>
		<comments>http://frankcontreras.com/install-xenserver-tools-on-centos-guest/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 06:38:43 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=584</guid>
		<description><![CDATA[Mount the CD. mount /dev/xvdd /mnt/ cd /mnt/Linux For 32 bit: rpm -Uhv xe*i386.rpm For 64 bit: rpm -Uhv xe*x86_64.rpm Reboot the server. No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>Mount the CD.</p>
<pre>
mount /dev/xvdd /mnt/
cd /mnt/Linux</pre>
<p>For 32 bit:</p>
<pre>rpm -Uhv xe*i386.rpm</pre>
<p>For 64 bit:</p>
<pre>rpm -Uhv xe*x86_64.rpm</pre>
<p>Reboot the <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a>.</br></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/install-xenserver-tools-on-centos-guest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command lines to install Webmin</title>
		<link>http://frankcontreras.com/command-line-to-install-webmin/</link>
		<comments>http://frankcontreras.com/command-line-to-install-webmin/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 13:58:05 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=557</guid>
		<description><![CDATA[Prerequisites: Make sure that wget and perl are installed. yum -y install wget yum -y install perl 1. Download it. wget -c http://prdownloads.sourceforge.net/webadmin/webmin-1.580-1.noarch.rpm /download 2. Install it. rpm -Uvh webmin-1.580-1.noarch.rpm &#160; No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>Prerequisites: Make sure that wget and perl are installed.</p>
<pre>yum -y install wget
yum -y install perl</pre>
<p>1. Download it.</p>
<pre>wget -c http://prdownloads.sourceforge.net/webadmin/webmin-1.580-1.noarch.rpm /download</pre>
<p>2. Install it.</p>
<pre>rpm -Uvh  webmin-1.580-1.noarch.rpm</pre>
<p>&nbsp;</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/command-line-to-install-webmin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS SQL Script to dump all databases to a .bak file</title>
		<link>http://frankcontreras.com/ms-sql-script-to-dump-all-databases-to-a-bak-file/</link>
		<comments>http://frankcontreras.com/ms-sql-script-to-dump-all-databases-to-a-bak-file/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 06:14:24 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Microsoft SQL]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=534</guid>
		<description><![CDATA[Modify the script below as needed. DECLARE @name VARCHAR(50) -- database name DECLARE @path VARCHAR(256) -- path for backup files DECLARE @fileName VARCHAR(256) -- filename for backup DECLARE @fileDate VARCHAR(20) -- used for file name SET @path = 'D:\SQLBackups\' SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) DECLARE db_cursor CURSOR FOR SELECT name FROM master.dbo.sysdatabases WHERE name NOT IN [...]]]></description>
			<content:encoded><![CDATA[<p>Modify the script below as needed.</p>
<pre>DECLARE @name VARCHAR(50) -- database name
DECLARE @path VARCHAR(256) -- path for backup files
DECLARE @fileName VARCHAR(256) -- filename for backup
DECLARE @fileDate VARCHAR(20) -- used for file name 

SET @path = 'D:\SQLBackups\'  

SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) 

DECLARE db_cursor CURSOR FOR
SELECT name
FROM master.dbo.sysdatabases
WHERE name NOT IN ('master','model','msdb','tempdb')  

OPEN db_cursor
FETCH NEXT FROM db_cursor INTO @name   

WHILE @@FETCH_STATUS = 0
BEGIN
       SET @fileName = @path + @name + '_' + @fileDate + '.BAK'
       BACKUP DATABASE @name TO DISK = @fileName  

       FETCH NEXT FROM db_cursor INTO @name
END   

CLOSE db_cursor
DEALLOCATE db_cursor </pre>
<p>Set this up in Task Scheduler to to automatically execute it at a scheduled time.  The command line to call the script is something like this:</p>
<pre>sqlcmd -S localhost -E -i D:\SQL_Scripts\sp_BackupAllDatabases.sql</pre>
<p>&nbsp;</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/ms-sql-script-to-dump-all-databases-to-a-bak-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Backup Exec Remote Agent for Linux</title>
		<link>http://frankcontreras.com/installing-backup-exec-remote-agent-for-linux/</link>
		<comments>http://frankcontreras.com/installing-backup-exec-remote-agent-for-linux/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 04:37:46 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=530</guid>
		<description><![CDATA[First, make sure the Compatibility C++ library is installed: http://www.symantec.com/business/support/index?page=content&#38;id=TECH86251&#38;actp=search&#38;viewlocale=en_US&#38;searchid=1327899255372 Then run through the procedures to install and configure the remote agent: http://www.symantec.com/business/support/index?page=content&#38;id=TECH46461&#38;actp=search&#38;viewlocale=en_US&#38;searchid=1327897044799 No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>First, make sure the Compatibility C++ library is installed:</p>
<p><a href="http://www.symantec.com/business/support/index?page=content&amp;id=TECH86251&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327899255372">http://www.symantec.com/business/support/index?page=content&amp;id=TECH86251&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327899255372</a></p>
<p>Then run through the procedures to install and configure the remote agent:</p>
<p><a href="http://www.symantec.com/business/support/index?page=content&amp;id=TECH46461&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327897044799">http://www.symantec.com/business/support/index?page=content&amp;id=TECH46461&amp;actp=search&amp;viewlocale=en_US&amp;searchid=1327897044799</a></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/installing-backup-exec-remote-agent-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connect to a Windows Share using CIFS on CentOS</title>
		<link>http://frankcontreras.com/connect-to-a-windows-share-using-cifs-on-centos/</link>
		<comments>http://frankcontreras.com/connect-to-a-windows-share-using-cifs-on-centos/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 04:05:25 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[CIFS]]></category>
		<category><![CDATA[Connect]]></category>
		<category><![CDATA[fstab]]></category>
		<category><![CDATA[SAMBA]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=522</guid>
		<description><![CDATA[Install componenets for SAMBA. yum install samba After the installation is complete, check for a file called mount.cifs.  It was not installed with my server build. /etc/mount.cifs If it is not there, install files to support for cifs.  After doing this install, the mount.cifs file magically appeared. yum install cifs Create a mount point where [...]]]></description>
			<content:encoded><![CDATA[<p>Install componenets for <a href="http://frankcontreras.com/tag/samba/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SAMBA">SAMBA</a>.</p>
<pre>yum install samba</pre>
<p>After the installation is complete, check for a file called mount.<a href="http://frankcontreras.com/tag/cifs/" class="st_tag internal_tag" rel="tag" title="Posts tagged with CIFS">cifs</a>.  It was not installed with my <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a> build.</p>
<pre>/etc/mount.cifs</pre>
<p>If it is not there, install files to support for cifs.  After doing this install, the mount.cifs file magically appeared.</p>
<pre>yum install cifs</pre>
<p>Create a mount point where you plan to mount the <a href="http://frankcontreras.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> share.</p>
<pre>mkdir /mnt/win</pre>
<p>Modify the <a href="http://frankcontreras.com/tag/fstab/" class="st_tag internal_tag" rel="tag" title="Posts tagged with fstab">fstab</a> file with information that will be used to <a href="http://frankcontreras.com/tag/connect/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Connect">connect</a> when your CentOS server boots up.</p>
<pre>vi /etc/fstab</pre>
<p>The file may end up looking something like this.</p>
<pre>
#
# /etc/fstab
# Created by anaconda on Sun Jan 29 11:02:02 2012
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=0db4ea35-aae2-4fa5-b3ab-734465f0d4f6 /                       ext4    defaults        1 1
UUID=40652af2-9ac8-47ce-b77b-f3f3ab16ff7b /boot                   ext4    defaults        1 2
UUID=4ab7e510-986b-4de7-bcbd-ed262822b06e swap                    swap    defaults        0 0
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
//server/Share          /mnt/win                cifs    user,uid=500,rw,suid,username=username,password=P@ssw0rd,workgroup=WinDomain 0 0</pre>
<p>Now go ahead and reboot your CentOS server. With any luck, you&#8217;ll be able to see the contents of your Windows share under the mount point created earlier.</p>
<pre>/mnt/win</pre>
<p></br></p>

	Tags: <a href="http://frankcontreras.com/tag/cifs/" title="CIFS" rel="tag">CIFS</a>, <a href="http://frankcontreras.com/tag/connect/" title="Connect" rel="tag">Connect</a>, <a href="http://frankcontreras.com/tag/fstab/" title="fstab" rel="tag">fstab</a>, <a href="http://frankcontreras.com/tag/opensource/" title="Open Source" rel="tag">Open Source</a>, <a href="http://frankcontreras.com/tag/samba/" title="SAMBA" rel="tag">SAMBA</a>, <a href="http://frankcontreras.com/tag/server/" title="server" rel="tag">server</a>, <a href="http://frankcontreras.com/tag/windows/" title="Windows" rel="tag">Windows</a><br />
]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/connect-to-a-windows-share-using-cifs-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Storage Server 2008 RC Default Password</title>
		<link>http://frankcontreras.com/windows-storage-server-2008-rc-default-password/</link>
		<comments>http://frankcontreras.com/windows-storage-server-2008-rc-default-password/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 20:00:48 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=517</guid>
		<description><![CDATA[This version of Windows does not let you set the Administrator password.  I&#8217;m guessing it is because it is normally installed by the vendor on their hardware platforms that are optimized for this purpose.  Anyway, the default password is "wSS2008!" No tags for this post.]]></description>
			<content:encoded><![CDATA[<p>This version of <a href="http://frankcontreras.com/tag/windows/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Windows">Windows</a> does not let you set the Administrator password.  I&#8217;m guessing it is because it is normally installed by the vendor on their hardware platforms that are optimized for this purpose.  Anyway, the default password is
<pre>"wSS2008!"</pre>
<p></br></p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/windows-storage-server-2008-rc-default-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure a static IP Address</title>
		<link>http://frankcontreras.com/how-to-configure-a-static-ip-address/</link>
		<comments>http://frankcontreras.com/how-to-configure-a-static-ip-address/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 19:29:06 +0000</pubDate>
		<dc:creator>Frank Contreras</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://frankcontreras.com/?p=512</guid>
		<description><![CDATA[CentOS has a really nice GUI to configure the IP Address and other NIC settings.  But I wanted to manage a Linux server without the crutch of a GUI.  Here&#8217;s some notes on how to do it. The file to configure settings for the first Ethernet &#8221;eth0&#8243; or for any interface can be found in this location: /etc/sysconfig/network-scripts The file corresponding to eth0 is ifcfg-eth0 Use a [...]]]></description>
			<content:encoded><![CDATA[<p>CentOS has a really nice GUI to configure the IP Address and other NIC settings.  But I wanted to manage a Linux <a href="http://frankcontreras.com/tag/server/" class="st_tag internal_tag" rel="tag" title="Posts tagged with server">server</a> without the crutch of a GUI.  Here&#8217;s some notes on how to do it.<br />
The file to configure settings for the first Ethernet &#8221;eth0&#8243; or for any interface can be found in this location:</p>
<pre>/etc/sysconfig/network-scripts</pre>
<p>The file corresponding to eth0 is</p>
<pre>ifcfg-eth0</pre>
<p>Use a text editor to make it look something like this:</p>
<pre>DEVICE="eth0"
NM_CONTROLLED="yes"
ONBOOT=yes
TYPE=Ethernet
BOOTPROTO=none
IPADDR=192.168.1.100
PREFIX=24
GATEWAY=192.168.1.1
DNS1=192.168.1.2
DNS2=4.2.2.2
DOMAIN=domain.com
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"
UUID=5fb06bd0-0bb1-7ffa-44f1-d6eda65f2e03
HWADDR=00:01:01:12:34:56</pre>
<p>After you save your changes, you&#8217;ll need to restart your network service with this command:</p>
<pre>service network restart</pre>
<p>You should be able to ping the address you just configured, but you might not be able to ping it from another client or even ping out.  This has to do with your firewall settings, but that&#8217;s something that will be covered in another post.</p>
No tags for this post.]]></content:encoded>
			<wfw:commentRss>http://frankcontreras.com/how-to-configure-a-static-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

