<?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>Pario TechnoBlob &#187; RedHat</title>
	<atom:link href="http://pario.no/tag/redhat/feed/" rel="self" type="application/rss+xml" />
	<link>http://pario.no</link>
	<description>A cronological documentation test project, nothing serious, really!</description>
	<lastBuildDate>Thu, 02 Feb 2012 13:17:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Change ethernet settings using ethtool</title>
		<link>http://pario.no/2010/01/19/change-ethernet-settings-using-ethtool/</link>
		<comments>http://pario.no/2010/01/19/change-ethernet-settings-using-ethtool/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 12:14:47 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[ethtool]]></category>
		<category><![CDATA[RedHat]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1283</guid>
		<description><![CDATA[Force network speed on a network card to 100 MBit Full Duplex and in the same time disable auto negotiation # ethtool -s eth0 speed 100 duplex full autoneg off These settings are active until you reboot the machine or restart the network. In order to keep this change on each system reboot, append the [...]]]></description>
			<content:encoded><![CDATA[<p>Force network speed on a network card to 100 MBit Full Duplex and in the same time disable auto negotiation</p>
<pre># ethtool -s eth0 speed 100 duplex full autoneg off</pre>
<p>These settings are active until you reboot the machine or restart the network.</p>
<p>In order to keep this change on each system reboot, append the following line in the following Redhat file <strong>/etc/sysconfig/network-scripts/ifcfg-eth0</strong></p>
<pre>ETHTOOL_OPTS="speed 100 duplex full autoneg off"</pre>
<p>An alternative tool to use to change the settings is <strong>mii-tool</strong>.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMTAvMDEvMTkvY2hhbmdlLWV0aGVybmV0LXNldHRpbmdzLXVzaW5nLWV0aHRvb2wvPHdwdGI%2BQ2hhbmdlIGV0aGVybmV0IHNldHRpbmdzIHVzaW5nIGV0aHRvb2w8d3B0Yj5odHRwOi8vcGFyaW8ubm88d3B0Yj5QYXJpbyBUZWNobm9CbG9i";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2010/01/19/change-ethernet-settings-using-ethtool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace RPMforge packages with Redhats own on a RHEL5 system</title>
		<link>http://pario.no/2009/05/25/replace-rpmforge-packages-with-redhats-own-on-a-rhel5-system/</link>
		<comments>http://pario.no/2009/05/25/replace-rpmforge-packages-with-redhats-own-on-a-rhel5-system/#comments</comments>
		<pubDate>Mon, 25 May 2009 09:19:30 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[RHEL4]]></category>
		<category><![CDATA[rhel5]]></category>
		<category><![CDATA[rpmforge]]></category>

		<guid isPermaLink="false">http://pario.no/?p=1096</guid>
		<description><![CDATA[This post came to life after experiencing some upgrade problems with missing dependencies and RPM packages from RPMforge and Redhat Enterprise Linux Client release 5. The prosess to remove or replace the packages was to remove RPMforge as a package repository and replace the blocking packages with Redhats own packages. The process of replacing RPMforge [...]]]></description>
			<content:encoded><![CDATA[<p>This post came to life after experiencing some upgrade problems with missing dependencies and RPM packages from RPMforge and Redhat Enterprise Linux Client release 5. The prosess to remove or replace the packages was to remove RPMforge as a package repository and replace the blocking packages with Redhats own packages.</p>
<p><strong>The process of replacing RPMforge packages with Redhats own packages</strong><br />
First we remove rpmforge as package repository</p>
<pre>
rpm -e rpmforge</pre>
<p>This command removes the <strong>/etc/yum.repos.d/rpmforge.repo</strong> file.</p>
<p>Then we list all packages installed from the RPMforge repository to get an overview of the packages causing problems on the system.</p>
<pre>
rpm -qa --queryformat %{NAME}-%{VERSION}-%{ARCH}-%{RELEASE}\\n|sort|grep el5.rf</pre>
<p>The result</p>
<pre>
dnsmasq-2.47-x86_64-1.el5.rf
libsndfile-1.0.17-x86_64-1.el5.rf
lftp-3.7.12-x86_64-1.el5.rf
...</pre>
<p>The <strong>rf</strong> ending tells you that these packages are RPMforge packages. This command also tells you if it is 32bit (i386) or 64bit  (x86_64) packages. I&#8217;ve described the prosess of removing 32- and 64bits packages in a earlier post named <a href"=http://pario.no/2007/11/23/remove-duplicate-packages-when-querying-the-rpm-database/">Remove duplicate packages when querying the rpm database</a>.</p>
<p>Howto remove 64bit packages</p>
<pre>
yum remove libsndfile.x86_64</pre>
<p>Next we will download the packages we want to replace, in my case dnsmasq</p>
<p><strong>On a RHEL5 system</strong></p>
<pre>
yumdownloader dnsmasq</pre>
<p>If you don&#8217;t have yumdownloader in your system you have to install the <strong>yum-utils</strong> package.</p>
<p><strong>On a RHEL4 system</strong></p>
<pre>
up2date -d dnsmasq</pre>
<p>Then we replace the RPMforge RPM package with Redhats own package</p>
<pre>
# rpm -Uvh --replacepkgs --oldpackage dnsmasq-2.45-1.el5_2.1.x86_64.rpm
Preparing...                ########################################### [100%]
   1:dnsmasq                ########################################### [100%]</pre>
<p>If you don&#8217;t use the <strong>&#8211;oldpackage</strong> option you might get an error message like this</p>
<pre>
package dnsmasq-2.47-1.el5.rf.x86_64 (which is newer than dnsmasq-2.45-1.el5_2.1.x86_64) is already installed</pre>
<p>I continued removing RPMForge packages until yum managed to resolve any unresolved dependencies.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDkvMDUvMjUvcmVwbGFjZS1ycG1mb3JnZS1wYWNrYWdlcy13aXRoLXJlZGhhdHMtb3duLW9uLWEtcmhlbDUtc3lzdGVtLzx3cHRiPlJlcGxhY2UgUlBNZm9yZ2UgcGFja2FnZXMgd2l0aCBSZWRoYXRzIG93biBvbiBhIFJIRUw1IHN5c3RlbTx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2009/05/25/replace-rpmforge-packages-with-redhats-own-on-a-rhel5-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force a user to change password upon first login</title>
		<link>http://pario.no/2008/12/23/force-a-user-to-change-password-upon-first-login/</link>
		<comments>http://pario.no/2008/12/23/force-a-user-to-change-password-upon-first-login/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 08:31:16 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[rhel5]]></category>

		<guid isPermaLink="false">http://pario.no/?p=845</guid>
		<description><![CDATA[This is how you can force a Redhat user to change his password upon first login on a Redhat 5 installation. This might work on other versions and distributions&#8230; First lock the account to prevent the user from logging in until the change has been made # usermod -L &#60;username&#62; Change the password expiration date [...]]]></description>
			<content:encoded><![CDATA[<p>This is how you can force a Redhat user to change his password upon first login on a Redhat 5 installation. This might work on other versions and distributions&#8230;</p>
<ol>
<li>First lock the account to prevent the user from logging in until the change has been made
</li>
<pre>
# usermod -L &lt;username&gt;</pre>
<li>Change the password expiration date to 0 to ensure the user changes the password during the next login attempt
</li>
<pre>
# chage -d 0 &lt;username&gt;</pre>
<li>To unlock the account after the change do the following:</li>
<pre>
# usermod -U &lt;username&gt;</pre>
</ol>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMTIvMjMvZm9yY2UtYS11c2VyLXRvLWNoYW5nZS1wYXNzd29yZC11cG9uLWZpcnN0LWxvZ2luLzx3cHRiPkZvcmNlIGEgdXNlciB0byBjaGFuZ2UgcGFzc3dvcmQgdXBvbiBmaXJzdCBsb2dpbjx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/12/23/force-a-user-to-change-password-upon-first-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redhat documentation in one place</title>
		<link>http://pario.no/2008/09/18/redhat-documentation-in-one-place/</link>
		<comments>http://pario.no/2008/09/18/redhat-documentation-in-one-place/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 11:57:16 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[rhel5]]></category>

		<guid isPermaLink="false">http://pario.no/?p=654</guid>
		<description><![CDATA[http://www.redhat.com/docs/manuals/enterprise/ is a documentation page I always return to when I manage Redhat Enterprise Linux systems. Redhat has put a lot of effort in their documentation and even allow you to download them as PDF documents. The documentation below is for RHEL5.2 Deployment Guide May 21, 2008 PDF Installation Guide May 21, 2008 PDF Virtualization [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.redhat.com/docs/manuals/enterprise/">http://www.redhat.com/docs/manuals/enterprise/</a> is a documentation page I always return to when I manage Redhat Enterprise Linux systems. </p>
<p>Redhat has put a lot of effort in their documentation and even allow you to download them as PDF documents.</p>
<p>The documentation below is for RHEL5.2</p>
<table>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Deployment_Guide/index.html">Deployment Guide</a></td>
<td >May 21, 2008</td>
<td ><a class="pdf" title="Download PDF" href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Deployment_Guide/Deployment_Guide.pdf"><acronym title="portable document format">PDF</acronym></a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Installation_Guide/index.html">Installation Guide</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Installation_Guide/Installation_Guide.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Virtualization/index.html">Virtualization Guide</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Virtualization/Virtualization.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Cluster_Suite_Overview/index.html">Cluster Suite Overview</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Cluster_Suite_Overview/Cluster_Suite_Overview.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Cluster_Administration/index.html">Cluster Administration</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Cluster_Administration/Cluster_Administration.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Cluster_Logical_Volume_Manager/index.html">LVM Administrator&#8217;s Guide</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Cluster_Logical_Volume_Manager/Cluster_Logical_Volume_Manager.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Global_File_System/index.html">Global File System</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Global_File_System/Global_File_System.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Global_Network_Block_Device/index.html">Using GNBD with GFS</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Global_Network_Block_Device/Global_Network_Block_Device.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Virtual_Server_Administration/index.html">Linux Virtual Server Administration</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Virtual_Server_Administration/Virtual_Server_Administration.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/DM_Multipath/index.html">Using Device-Mapper Multipath</a></td>
<td >May 21, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/DM_Multipath/DM_Multipath.pdf">PDF</a></td>
</tr>
<tr>
<td ><!--a href="RHEL-5-manual/en-US/RHEL510/DM_Multipath/index.html"-->Tuning and Optimizing Red Hat Enterprise Linux for Oracle 9i and 10g Databases<!--/a--></td>
<td class="date">Nov 2007</td>
<td class="download"><a href="http://www.redhat.com/docs/manuals/enterprise/RHELTuningandOptimizationforOracleV11.pdf">PDF</a></td>
</tr>
<tr>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/html/Online_Storage_Reconfiguration_Guide/index.html">Online  Storage Reconfiguration Guide (Beta)</a></td>
<td >July 2, 2008</td>
<td ><a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/5.2/pdf/Online_Storage_Reconfiguration_Guide/Online_Storage_Reconfiguration_Guide.pdf">PDF</a></td>
</tr>
</table>
<p>These documents is a great resource if you plan to become a RHCT or RHCE.</p>
<script type="text/javascript">var wordpress_toolbar_urls = ["http:\/\/www.redhat.com\/docs\/manuals\/enterprise\/","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Deployment_Guide\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Deployment_Guide\/Deployment_Guide.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Installation_Guide\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Installation_Guide\/Installation_Guide.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Virtualization\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Virtualization\/Virtualization.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Cluster_Suite_Overview\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Cluster_Suite_Overview\/Cluster_Suite_Overview.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Cluster_Administration\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Cluster_Administration\/Cluster_Administration.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Cluster_Logical_Volume_Manager\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Cluster_Logical_Volume_Manager\/Cluster_Logical_Volume_Manager.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Global_File_System\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Global_File_System\/Global_File_System.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Global_Network_Block_Device\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Global_Network_Block_Device\/Global_Network_Block_Device.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Virtual_Server_Administration\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Virtual_Server_Administration\/Virtual_Server_Administration.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/DM_Multipath\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/DM_Multipath\/DM_Multipath.pdf","http:\/\/www.redhat.com\/docs\/manuals\/enterprise\/RHELTuningandOptimizationforOracleV11.pdf","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/html\/Online_Storage_Reconfiguration_Guide\/index.html","http:\/\/www.redhat.com\/docs\/en-US\/Red_Hat_Enterprise_Linux\/5.2\/pdf\/Online_Storage_Reconfiguration_Guide\/Online_Storage_Reconfiguration_Guide.pdf"];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDkvMTgvcmVkaGF0LWRvY3VtZW50YXRpb24taW4tb25lLXBsYWNlLzx3cHRiPlJlZGhhdCBkb2N1bWVudGF0aW9uIGluIG9uZSBwbGFjZTx3cHRiPmh0dHA6Ly9wYXJpby5ubzx3cHRiPlBhcmlvIFRlY2hub0Jsb2I%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/09/18/redhat-documentation-in-one-place/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable IPv6 on Redhat RHEL4</title>
		<link>http://pario.no/2008/09/17/disable-ipv6-on-redhat-rhel4/</link>
		<comments>http://pario.no/2008/09/17/disable-ipv6-on-redhat-rhel4/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 19:25:27 +0000</pubDate>
		<dc:creator>Hans-Henry Jakobsen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[RedHat]]></category>
		<category><![CDATA[RHEL4]]></category>

		<guid isPermaLink="false">http://pario.no/?p=640</guid>
		<description><![CDATA[First you remove this line from /etc/modprobe.conf if this line exists. alias net-pf-10 ipv6 Add the following line to /etc/modprobe.conf alias net-pf-10 off Reboot the system. IPv6 is now disabled. To re-enable IPv6, remove the alias net-pf-10 off line from /etc/modprobe.conf and reboot the machine. I&#8217;ve also made a post about how to disable IPv6 [...]]]></description>
			<content:encoded><![CDATA[<p>First you remove this line from <strong>/etc/modprobe.conf</strong> if this line exists. </p>
<pre>
alias net-pf-10 ipv6</pre>
<p>Add the following line to <strong>/etc/modprobe.conf</strong></p>
<pre>
alias net-pf-10 off</pre>
<p>Reboot the system. IPv6 is now disabled.</p>
<p>To re-enable IPv6, remove the alias net-pf-10 off line from <strong>/etc/modprobe.conf</strong> and reboot the machine.</p>
<p>I&#8217;ve also made a post about <a href="http://pario.no/2008/09/09/disable-ipv6-on-redhat-rhel5/">how to disable IPv6 on RHEL5</a>.</p>
<script type="text/javascript">var wordpress_toolbar_urls = [];var wordpress_toolbar_url = "http://pario.no/wp-content/plugins/wordpress-toolbar/toolbar.php";var wordpress_toolbar_oinw = "n";var wordpress_toolbar_hash = "aHR0cDovL3BhcmlvLm5vLzIwMDgvMDkvMTcvZGlzYWJsZS1pcHY2LW9uLXJlZGhhdC1yaGVsNC88d3B0Yj5EaXNhYmxlIElQdjYgb24gUmVkaGF0IFJIRUw0PHdwdGI%2BaHR0cDovL3BhcmlvLm5vPHdwdGI%2BUGFyaW8gVGVjaG5vQmxvYg%3D%3D";</script>]]></content:encoded>
			<wfw:commentRss>http://pario.no/2008/09/17/disable-ipv6-on-redhat-rhel4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

