<?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>Computer Support &#187; configure</title>
	<atom:link href="http://www.xiitec.com/blog/tag/configure/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xiitec.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 30 Dec 2009 08:40:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Configuring Scope Options</title>
		<link>http://www.xiitec.com/blog/2008/02/21/configuring-scope-options/</link>
		<comments>http://www.xiitec.com/blog/2008/02/21/configuring-scope-options/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 22:21:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DHCP]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[scope]]></category>

		<guid isPermaLink="false">http://www.xiitec.com/blog/?p=164</guid>
		<description><![CDATA[When a DHCP Server responds to a client request for a lease, the server also responds with any configured options for the scope. Options are nothing more than bits of configuration information, such as the servers to use for name resolution, the default domain name, default router, etc. Some options may be specific to a [...]]]></description>
			<content:encoded><![CDATA[<p>When a DHCP Server responds to a client request for a lease, the server also responds with any configured options for the scope. Options are nothing more than bits of configuration information, such as the servers to use for name resolution, the default domain name, default router, etc. Some options may be specific to a particular scope (for example, the default router for a subnet) or may be more global (such as the default domain name). The former are called scope options and the latter are called server options.</p>
<p><span id="more-164"></span></p>
<p><strong>Using a graphical user interface</strong></p>
<ol>
<li>Open the DHCP snap-in.</li>
<li>In the left pane, right-click on DHCP and select Add Server.</li>
<li>Type in the name of the DHCP Server you want to target and click OK.</li>
<li>Expand the server entry in the left pane.</li>
<li>Expand the scope you want to set options for.</li>
<li>Click on the Scope Options icon. In the right pane, you will see the list of options currently configured for the scope. This will include any server options that have been configured.</li>
<li>To modify an option, double-click it in the right pane. To configure a new scope option, right-click on the Scope Options icon and select Configure Options.</li>
<li>Check the box beside the option you want to configure. This will make the Data entry section of the dialog box active.</li>
<li>Enter the value(s) for the option and click OK.</li>
</ol>
<p><strong>Using a command-line interface</strong></p>
<p>The following command configures a scope option:</p>
<pre>&gt; netsh dhcp server \\<servername> scope <subnetid> set optionvalue <optcode> <datatype> <optvalue></optvalue></datatype></optcode></subnetid></servername></pre>
<p>In this example, the &#8220;default router&#8221; option (code 3) is configured with a value of 192.168.10.1:</p>
<pre>&gt; netsh dhcp server \\dhcp01 scope 192.168.10.0 set optionvalue 3 IPADDRESS 192.168.10.1</pre>
<p>You can view all of the scope options for a scope with this command:</p>
<pre>&gt; netsh dhcp server \\<servername> scope <subnetid> show optionvalue</subnetid></servername></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.xiitec.com/blog/2008/02/21/configuring-scope-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Server Options</title>
		<link>http://www.xiitec.com/blog/2008/02/20/configuring-server-options/</link>
		<comments>http://www.xiitec.com/blog/2008/02/20/configuring-server-options/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 00:41:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[DHCP]]></category>
		<category><![CDATA[configure]]></category>

		<guid isPermaLink="false">http://www.xiitec.com/blog/?p=159</guid>
		<description><![CDATA[When a DHCP Server responds to a client request for a lease, the server also responds with any configured options for the scope. Options are nothing more than bits of configuration information, such as the servers to use for name resolution, the default domain name, default router, etc. Some options may be specific to a [...]]]></description>
			<content:encoded><![CDATA[<p>When a DHCP Server responds to a client request for a lease, the server also responds with any configured options for the scope. Options are nothing more than bits of configuration information, such as the servers to use for name resolution, the default domain name, default router, etc. Some options may be specific to a particular scope, for example, the default router for a subnet; these options are called scope options. Other options may be more global, such as the default domain name; these options are called server options. If you have more than a handful of scopes to configure global settings on, it can be tedious to change them later if you&#8217;ve configured them individually as scope options. This is where server options come in. Instead of configuring the default domain name option on each individual scope, you can configure it at the server level. All scopes will then use this server option. You can override any server options by configuring the same option on a scope.</p>
<p><span id="more-159"></span></p>
<p><strong>Using a graphical user interface</strong></p>
<ol>
<li>Open the DHCP snap-in.</li>
<li>In the left pane, right-click on DHCP and select Add Server.</li>
<li>Type in the name of the DHCP Server you want to target and click OK.</li>
<li>Expand the server entry in the left pane.</li>
<li>Click on Server Options, then right-click it and select Configure Options.</li>
<li>Check the box beside the option you want to configure.</li>
<li>This will make the Data entry section of the dialog box active.</li>
<li>Enter the value(s) for the option and click OK.</li>
</ol>
<p><strong>Using a command-line interface</strong></p>
<p>The following command configures a server option:</p>
<pre>&gt; netsh dhcp server \\<servername> set optionvalue <optcode> <datatype> <optvalue></optvalue></datatype></optcode></servername></pre>
<p>In the following example, the &#8220;domain name&#8221; option (code 015) is configured with a value of &#8220;rallencorp.com&#8221; on the DHCP server named dhcp01:</p>
<pre>&gt; netsh dhcp server \\dhcp01 set optionvalue 015 STRING rallencorp.com</pre>
<p>You can view all of the server options that have been configured with this command:</p>
<pre>&gt; netsh dhcp server \\<servername> show optionvalue</servername></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.xiitec.com/blog/2008/02/20/configuring-server-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring TCP/IP Filtering</title>
		<link>http://www.xiitec.com/blog/2008/02/15/configuring-tcpip-filtering/</link>
		<comments>http://www.xiitec.com/blog/2008/02/15/configuring-tcpip-filtering/#comments</comments>
		<pubDate>Fri, 15 Feb 2008 23:38:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[filter]]></category>
		<category><![CDATA[TCP/IP]]></category>

		<guid isPermaLink="false">http://www.xiitec.com/blog/?p=136</guid>
		<description><![CDATA[This filtering is applied to inbound traffic and does not affect outbound  traffic.

Using a graphical user interface

 Open the Control Panel.
From the Network Connections applet, open the connection you want to configure.
Click the Properties button.
Select Internet Protocol (TCP/IP).
Click the Properties button.
Click the Advanced button.
Click the Options tab.
Select TCP/IP filtering.
Click the Properties button.
Check the box [...]]]></description>
			<content:encoded><![CDATA[<p>This filtering is applied to inbound traffic and does not affect outbound  traffic.</p>
<p><span id="more-136"></span></p>
<p><strong>Using a graphical user interface</strong></p>
<ol>
<li> Open the Control Panel.</li>
<li>From the Network Connections applet, open the connection you want to configure.</li>
<li>Click the Properties button.</li>
<li>Select Internet Protocol (TCP/IP).</li>
<li>Click the Properties button.</li>
<li>Click the Advanced button.</li>
<li>Click the Options tab.</li>
<li>Select TCP/IP filtering.</li>
<li>Click the Properties button.</li>
<li>Check the box beside Enable TCP/IP Filtering.</li>
<li>Select Permit Only for TCP Ports, UDP Ports, and/or IP Protocols.</li>
<li>Click the Add button.</li>
<li>Enter the port or protocol number and click OK.</li>
<li>Repeat the last couple of steps until you&#8217;ve entered all desired ports and protocols.</li>
<li>After you are done, close all the dialog screens by clicking either OK or Close.</li>
<li>You will be prompted to reboot for the changes to take effect.</li>
</ol>
<p><strong>Using a command-line interface</strong></p>
<p>The following command enables TCP/IP filtering:</p>
<pre>&gt; reg add HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters /vEnableSecurityFilters /t REG_DWORD /d 1</pre>
<p>You must reboot for the changes to take effect. To disable  filtering, change <tt>/d</tt> <tt>1</tt> to <tt>/d</tt> <tt>0</tt>.</p>
<p>Next, configure the protocols and ports you want to filter.  This must be done on a per-interface basis. To configure this using the  registry, you need to know the GUID assigned to the interface you want to  modify. This is a sample interface entry:</p>
<pre>HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{07383FC4-FF4D-4E16-9DD6-C27061719D76}</pre>
<p>To find out what adapter that corresponds with, you can use  this command (on Windows Server 2003):</p>
<pre>&gt; wmic nicconfig get caption,settingid</pre>
<p>Once you know the GUID of the interface, you can use the  <tt>reg</tt> <tt>add</tt> command to modify the <tt>RawIPAllowedProtocols</tt>,  <tt>TCPAllowedPorts</tt>, or <tt>UDPAllowedPorts</tt> values to filter what you  want. Each of those values is of type REG_MULTI_SZ. Here is an example of  setting protocols 25 and 80:</p>
<pre>reg add HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\{07383FC4-FF4D-4E16-9DD6-C27061719D76} /v RawIPAllowedProtocols /t REG_MULTI_SZ /d 25\080</pre>
<p>You can also use the WMIC utility to configure TCP/IP  filtering. These two commands show you how:</p>
<pre>&gt; wmic /node:"<tt><em>&lt;ServerName&gt;</em></tt>" nicconfig call EnableIPFilterSec(1)&gt; wmic /node:"<tt><em>&lt;ServerName&gt;</em></tt>" nicconfig where ipenabled=True call EnableIPSec

(<tt><em>&lt;TCPPortList&gt;</em></tt>),(<tt><em>&lt;UDPPortList&gt;</em></tt>),(<tt><em>&lt;ProtoList&gt;</em></tt>)</pre>
<p>This command allows all TCP and UDP ports, but allows only  protocols 80 (http) and 25 (smtp):</p>
<pre>&gt; wmic nicconfig where ipenabled=True call EnableIPSec (80,25),(0),(0)</pre>
<p><strong>Using VBScript</strong></p>
<pre>' This code enables IP Filtering for all adapters and configures' filtering for all IP-enabled adapters.

' ------ SCRIPT CONFIGURATION ------

strComputer = "."

arrTCPPorts = Array ( 0 )       ' Allow all TCP ports

arrUDPPorts = Array ( 0 )       ' Allow all UDP ports

arrProtos   = Array ( 80, 25 )  ' Allow only HTTP and SMTP

' ------ END CONFIGURATION ---------

set objWMI = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2")

set objAdapterConfig = objWMI.Get("Win32_NetworkAdapterConfiguration")

intRC = objAdapterConfig.EnableIPFilterSec( True )

if intRC = 0 then

WScript.Echo "IP Filtering for all adapters enabled"

elseif intRC = 1 then

WScript.Echo "IP Filtering enabled for all adapters, " &amp; _

"but you must reboot for the changes to take effect"

else

WScript.Echo "There was an error enabling IP Filtering for all " &amp; _

"adapters: " &amp; intRC

end ifset colNAConfigs = objWMI.ExecQuery( _

"select * " &amp; _

" from Win32_NetworkAdapterConfiguration " &amp; _

" where IPEnabled = True" )

for each objNAConfig in colNAConfigs

intRC = objNAConfig.EnableIPSec( arrTCPPorts, arrUDPPorts, arrProtos )

if intRC = 0 then

WScript.Echo "IP Filtering configured for '" &amp; _

objNAConfig.Description &amp; "'"

elseif intRC = 1 then

WScript.Echo "IP Filtering configured for '" &amp; objNAConfig.Description &amp; _

"', but you must reboot for the changes to take effect"

else

WScript.Echo "There was an error configuring IP Filtering for '" &amp; _

objNAConfig.Description &amp; "': " &amp; intRC

end if

next</pre>
<p>Filtering by port or protocol can be useful in certain  situations, but be aware of the limitations. A good example of when you might  want to configure filtering is for external web servers. If your web server is  running on the default HTTP port (80) and it is running no other networked  application, then you only need port 80 open. But allowing only port 80 traffic  also prevents the server from acting as a member in an Active Directory domain  (which requires several ports to be open) and makes remote administration  difficult because you can&#8217;t connect using the Terminal Services client.  Obviously you can add these ports to the list you allow, but remember that if  you do port/protocol filtering, you must have the ports/protocols open that are  needed to support the machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiitec.com/blog/2008/02/15/configuring-tcpip-filtering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring an IP Address</title>
		<link>http://www.xiitec.com/blog/2008/02/14/configuring-an-ip-address/</link>
		<comments>http://www.xiitec.com/blog/2008/02/14/configuring-an-ip-address/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 22:54:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[IP]]></category>

		<guid isPermaLink="false">http://www.xiitec.com/blog/?p=127</guid>
		<description><![CDATA[Using a graphical user interface
&#160;

From the Control Panel, open the Network Connections applet.
Double-click the connection you want to configure.
Click the Properties  button.
Double-click Internet Protocol  (TCP/IP).
To enable DHCP, select Obtain an IP  address automatically. To use a static address, select Use the following IP address. Then configure the IP  address, subnet mask, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Using a graphical user interface</strong></p>
<p style="font-weight: bold">&nbsp;</p>
<ol>
<li>From the Control Panel, open the <span class="docEmphBold">Network Connections</span> applet.</li>
<li>Double-click the connection you want to configure.</li>
<li>Click the <span class="docEmphBold">Properties</span>  button.</li>
<li>Double-click <span class="docEmphBold">Internet Protocol  (TCP/IP)</span>.</li>
<li>To enable DHCP, select <span class="docEmphBold">Obtain an IP  address automatically</span>. To use a static address, select <span class="docEmphBold">Use the following IP address</span>. Then configure the IP  address, subnet mask, and default gateway.</li>
<li>Click <span class="docEmphBold">OK</span> until all windows are  closed.</li>
</ol>
<p><span id="more-127"></span><br />
<strong>Using a command-line interface</strong></p>
<p>The following command configures DHCP for a connection:</p>
<pre>&gt; netsh int ip set address name="<tt><em>&lt;ConnectionName&gt;</em></tt>" source=dhcp</pre>
<p>Here is an example for configuring the connection named &#8220;Local  Area Connection&#8221; to use DHCP:</p>
<pre>&gt; netsh int ip set address name="Local Area Connection" source=dhcp</pre>
<p>This configures a connection with a static IP and default  gateway:</p>
<pre>&gt; netsh int ip set address name="<tt><em>&lt;ConnectionName&gt;</em></tt>" source=static <tt><em>&lt;IP&gt;</em></tt> <tt><em>&lt;Mask&gt;</em></tt> <tt><em>&lt;GateWayIP&gt;</em></tt> <tt><em>&lt;Metric&gt;</em></tt></pre>
<p>This example configures a static IP address for &#8220;Local Area  Connection&#8221;:</p>
<pre>&gt; netsh int ip set address name="Local Area Connection" source=static 10.3.53.3
255.255.255.0 10.3.53.1 1</pre>
<p><strong>Using VBScript</strong></p>
<pre>' This code enables DHCP for the specified connection.
' ------ SCRIPT CONFIGURATION ------
strComputer = "."
strConnection = "Local Area Connection"
' ------ END CONFIGURATION ---------
set objWMI = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2")
set colNA = objWMI.ExecQuery("select * " &amp; _
                             " from Win32_NetworkAdapter " &amp; _
                             " where NetConnectionID = '" &amp; strConnection &amp; "'" )
for each objNA in colNA
   set colNAConfig = objWMI.ExecQuery _
      ("ASSOCIATORS OF {Win32_NetworkAdapter.DeviceID='" &amp; _
        objNA.DeviceID &amp; "'} " &amp; _
      " WHERE resultClass = win32_NetworkAdapterConfiguration ")
   for each objNAConfig in colNAConfig
      if objNAConfig.DHCPEnabled = True then
         WScript.Echo "DHCP already enabled for " &amp; strConnection
      else
         intRC = objNAConfig.EnableDHCP( )
         if intRC = 0 then
            WScript.Echo "DHCP Enabled for " &amp; strConnection
         elseif intRC = 1 then
            WScript.Echo "You must reboot to start using DHCP for " &amp; _
                         strConnection
         else
            WScript.Echo "There was an error enabling DHCP for " &amp; _
                         strconnection &amp; ": " &amp; intRC
         end if
      end if
   next
next

' This code configures an IP address, subnet mask, and default gateway
' for the specified connection.
' ------ SCRIPT CONFIGURATION ------
strComputer = "."
strConnection = "Local Area Connection"
strIP = Array("1.22.2.2")
strMask = Array("255.255.255.0")
strGatewayIP = Array("1.2.3.3")
' ------ END CONFIGURATION ---------
set objWMI = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2")
set colNA = objWMI.ExecQuery("select * " &amp; _
                            " from Win32_NetworkAdapter " &amp; _
                            " where NetConnectionID = '" &amp; strConnection &amp; "'" )
for each objNA in colNA
   set colNAConfig = objWMI.ExecQuery _
      ("ASSOCIATORS OF {Win32_NetworkAdapter.DeviceID='" &amp; _
        objNA.DeviceID &amp; "'} " &amp; _
      " WHERE resultClass = win32_NetworkAdapterConfiguration ")
   for each objNAConfig in colNAConfig
      intRC = objNAConfig.EnableStatic(strIP,strMask)
      intRC2 = objNAConfig.SetGateways(strGatewayIP)
      if intRC = 0 and intRC2 = 0 then
         WScript.Echo "IP address configured for " &amp; strConnection
      elseif intRC = 1 or intRC2 = 1 then
         WScript.Echo "You must reboot for the changes to take effect for " &amp; _
                      strConnection
      else
         WScript.Echo "There was an error configuring IP for " &amp; _
                      strconnection &amp; ": " &amp; intRC &amp; " and " &amp; intRC2
      end if
   next
next</pre>
<p>If you use static IP addresses, any time you build a new  server, you have to configure an IP address on that server. However, there is no  reason why you can&#8217;t automate the process using either the <em>netsh</em> command shown in the command-line  solution or WMI. You still have to find an available IP address, which may not  be easy to automate depending on your environment, but at least you can  provision the IP address in an automated fashion.</p>
<p>This leads to a discussion of using DHCP on servers. You&#8217;ll  find some people dead set against it and others who wouldn&#8217;t do it any other  way. Since network adapters are by default configured to use DHCP, you can  remove the step of configuring network settings, such as IP address, DNS  servers, etc., on your servers by using DHCP. After the server completes the  build process and reboots, it will automatically request an IP address. But as  you probably know, DHCP addresses aren&#8217;t set in stone. The next time the server  reboots, it might obtain a different address. And since you more than likely  want to add an A record (and possibly a PTR record) in DNS for this server, if  it got a new address, those records would no longer be valid.</p>
<p>There are two ways to work around this. First, you can  configure a reservation on the DHCP server for a specific IP address. You only  need to retrieve the MAC address of the server&#8217;s network adapter order to  configure a reservation (you can get this via the <tt>ipconfig</tt>  <tt>/all</tt> command). With this  configuration, the server will always receive the same IP address even though it  is getting it from DHCP. The benefit of this is that you don&#8217;t have to manually  configure the other settings such as DNS and WINS servers directly on the  server. The potential drawback is that if you have to change network adapters  for any reason, the reservation would also have to be updated.</p>
<p>The second option is to use dynamic DNS to have the server  automatically update DNS based on its current IP address. In fact, you could  have the sever itself send the dynamic updates or use DHCP to do that. That way, even if the server gets a new IP address after every  reboot, DNS will be updated automatically. The benefit to this is that it is the  most automated solution. There is very little configuration you have to do on a  per-server basis (and it is therefore attractive for large environments). The  downside is that DNS could have outdated information for a period of time until  the server dynamically updates its new information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiitec.com/blog/2008/02/14/configuring-an-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring dhcp Clients</title>
		<link>http://www.xiitec.com/blog/2008/02/12/configuring-dhcp-clients/</link>
		<comments>http://www.xiitec.com/blog/2008/02/12/configuring-dhcp-clients/#comments</comments>
		<pubDate>Wed, 13 Feb 2008 04:04:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.xiitec.com/blog/?p=110</guid>
		<description><![CDATA[In Windows,  open Control Panel -&#62; Networking, then open the Properties box for  TCP/IP. Check &#8220;Obtain an IP address automatically.&#8221;
It&#8217;s just as easy in Linux; the only hard part is  that every distribution puts the configuration file in a different  place. In Red Hat and Fedora, edit /etc/sysconfig/network-scripts/ifcfg-eth0 as follows:
TYPE=EthernetDEVICE=eth0

BOOTPROTO=dhcp

ONBOOT=yes

DHCP_HOSTNAME=stinkpad
On Debian, [...]]]></description>
			<content:encoded><![CDATA[<p>In Windows,  open Control Panel -&gt; Networking, then open the Properties box for  TCP/IP. Check &#8220;Obtain an IP address automatically.&#8221;</p>
<p>It&#8217;s just as easy in Linux; the only hard part is  that every distribution puts the configuration file in a different  place. In Red Hat and Fedora, edit <em>/etc/sysconfig/network-scripts/ifcfg-eth0</em> as follows:</p>
<pre>TYPE=EthernetDEVICE=eth0

BOOTPROTO=dhcp

ONBOOT=yes

DHCP_HOSTNAME=stinkpad</pre>
<p>On Debian, edit <em>/etc/network/interfaces</em> as follows:</p>
<pre>auto loiface lo inet loopback

auto eth0

iface eth0 inet dhcp</pre>
<p>You may wish to use a graphical configuration tool. On Red Hat  and Fedora, use system-config-network.  KDE and Gnome have their own GUI configuration tools (as does  practically every Linux distribution), so you won&#8217;t be short of  choices. Another option is netGo, a system-independent network  configuration utility that lets you create profiles for easily connecting to  different networks</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xiitec.com/blog/2008/02/12/configuring-dhcp-clients/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

