<?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>Daz's bits and bobs &#187; fedora</title>
	<atom:link href="http://sigtar.com/tag/fedora/feed/" rel="self" type="application/rss+xml" />
	<link>http://sigtar.com</link>
	<description>…bytes bits</description>
	<lastBuildDate>Mon, 26 Jul 2010 07:25:57 +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>Linux &#8211; Add DHCP and DNS</title>
		<link>http://sigtar.com/2009/02/11/linux-add-dhcp-and-dns/</link>
		<comments>http://sigtar.com/2009/02/11/linux-add-dhcp-and-dns/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 19:25:46 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[fedora]]></category>

		<guid isPermaLink="false">http://sigtar.com/?p=243</guid>
		<description><![CDATA[How to install DHCP and DNS on Fedora / Centos / Redhat box;
yum -y install dhcp.i386 bind.i386
Set services to auto start using ntsysv &#8212; services are called &#8220;dhcpd&#8221; and &#8220;named&#8221;.
How to configure dhcp;
nano /etc/dhcpd.conf &#8212; configure as per sample provided. The sample is usually located in the same directory.
service dhcpd restart &#8211; should start without [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>How to install DHCP and DNS on Fedora / Centos / Redhat box;</p>
<p><strong>yum -y install dhcp.i386 bind.i386</strong></p>
<p>Set services to auto start using <strong>ntsysv</strong> &#8212; services are called &#8220;dhcpd&#8221; and &#8220;named&#8221;.</p>
<p>How to configure dhcp;</p>
<p><strong>nano /etc/dhcpd.conf</strong> &#8212; configure as per sample provided. The sample is usually located in the same directory.<br />
<strong>service dhcpd restart</strong> &#8211; should start without problem if done correctly</p>
<p>Note: dhcp range has to be on the same network as your adapter. You can run dhcpd from the command line to diagnose any issues.</p>
<p>How to configure bind (DNS);</p>
<p>I usually just forward DNS requests to my internal router. To do this just edit <strong>/etc/resolve.conf </strong>and place the following line in the file;</p>
<p><strong>nameserver <em>192.168.9.1</em></strong></p>
<p>Use your ip above then all should be good. Test by pinging a domain like www.yahoo.com etc&#8230; You should get an ip back even if you don&#8217;t get successful pings (due to firewall etc). <strong>nslookup </strong>is also another quick and easy way to check DNS requests.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sigtar.com/2009/02/11/linux-add-dhcp-and-dns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux &#8211; Wireless networking</title>
		<link>http://sigtar.com/2009/02/10/linux-wireless-networking/</link>
		<comments>http://sigtar.com/2009/02/10/linux-wireless-networking/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 19:00:42 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[ndis wrapper]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[wpa2 psk]]></category>
		<category><![CDATA[wpa_supplicant]]></category>

		<guid isPermaLink="false">http://sigtar.com/?p=239</guid>
		<description><![CDATA[if your card is natively supported type ;
iwconfig
iwlist scanning &#8212; should also show you the wireless networks that are in range (will work if driver is loaded)
you should see wlan0 if all is good; (grab your wireless details)
iwconfig wlan0 mode managed (should already be in this mode)
there are some cool options here like &#8220;secondary&#8221; mode [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>if your card is natively supported type ;</p>
<p><strong>iwconfig</strong></p>
<p><strong>iwlist scanning</strong> &#8212; should also show you the wireless networks that are in range (will work if driver is loaded)</p>
<p>you should see <em>wlan0 </em>if all is good; (grab your wireless details)</p>
<p><strong>iwconfig wlan0 mode managed</strong> (should already be in this mode)</p>
<p>there are some cool options here like &#8220;secondary&#8221; mode which the node acts as a backup master/repeater. &#8220;Repeater&#8221; &#8211; the node forwards packets between other wire-less nodes</p>
<p><strong>iwconfig wlan0 channel 6</strong> &#8211; sets wireless to channel to 6<br />
<strong>iwconfig wlan0 essid dwireless</strong> &#8211; sets ssid to &#8220;dwireless&#8221;</p>
<p>K &#8211; now it gets interesting&#8230; iwconfig doesn&#8217;t support wpa2 psk out of the bag.<br />
<!-- m --><a class="postlink" href="http://hostap.epitest.fi/wpa_supplicant/">http://hostap.epitest.fi/wpa_supplicant/</a><!-- m --> &#8211; you want to get your hands on wpa_supplicant or similar depending on your distro. This is a good tutorial on getting it all up and running (for ubuntu, but works on other distros)<!-- m --> <a class="postlink" href="http://ph.ubuntuforums.com/showthread.php?t=571188">http://ph.ubuntuforums.com/showthread.php?t=571188</a><!-- m --> similar one here <!-- m --><a class="postlink" href="http://www.varesano.net/blog/fabio/wpapsk+linux+intel+centrino+ipw2100">http://www.varesano.net/blog/fabio/wpap &#8230; no+ipw2100</a><!-- m --></p>
<p>If you have the Asus wireless card like i did it is <span style="font-weight: bold;">best to use the ndis wrapper.</span> The native drivers do NOT work, this is even though the native driver will seem to work &#8211; detects card, and can browse the current local wireless networks. Unfortunately it cannot actually join any network (even the unencrypted ones)</p>
<p><span style="font-weight: bold;">do NOT just type dhclient unless you want all adapters to renew their IP&#8217;s&#8230;. ensure that you also specify the adapter. </span></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://sigtar.com/2009/02/10/linux-wireless-networking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
