<?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>Configure static IP raspberrypi &#8211; Arun&#8217;s blog</title>
	<atom:link href="https://arunns.net/tag/configure-static-ip-raspberrypi/feed/" rel="self" type="application/rss+xml" />
	<link>https://arunns.net</link>
	<description>Arun&#039;s blog</description>
	<lastBuildDate>Mon, 18 Feb 2013 12:32:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>
	<item>
		<title>Configure static IP on Raspberry Pi</title>
		<link>https://arunns.net/configure-static-ip-on-raspberry-pi/</link>
					<comments>https://arunns.net/configure-static-ip-on-raspberry-pi/#respond</comments>
		
		<dc:creator><![CDATA[Arun N.]]></dc:creator>
		<pubDate>Mon, 18 Feb 2013 12:32:21 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[RaspberryPi]]></category>
		<category><![CDATA[Configure static IP raspberrypi]]></category>
		<category><![CDATA[configure static ip wlan0]]></category>
		<guid isPermaLink="false">http://arunnsblog.com/?p=693</guid>

					<description><![CDATA[Some access points does not deliver DHCP to the raspberrypi. You could assign the IP statically as follows: Edit the /etc/network/interfaces file Comment out the following lines. &#62; #allow-hotplug wlan0 &#62; #wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf &#62; #iface eth0 inet manual Add following configs. auto lo iface eth0 inet dhcp auto wlan0 iface wlan0 inet static address x.x.x.x [&#8230;]]]></description>
										<content:encoded><![CDATA[<figure id="attachment_694" aria-describedby="caption-attachment-694" style="width: 300px" class="wp-caption aligncenter"><a href="http://arunnsblog.com/2013/02/18/configure-static-ip-on-raspberry-pi/20130218_103243/" rel="attachment wp-att-694"><img fetchpriority="high" decoding="async" class="size-medium wp-image-694" alt="RaspberryPi" src="http://arunnsblog.com/wp-content/uploads/2013/02/20130218_103243-300x225.jpg" width="300" height="225" /></a><figcaption id="caption-attachment-694" class="wp-caption-text">RaspberryPi</figcaption></figure>
<p>Some access points does not deliver DHCP to the raspberrypi. You could assign the IP statically as follows:</p>
<pre>Edit the /etc/network/interfaces file</pre>
<p>Comment out the following lines.</p>
<blockquote>
<pre>&gt; #allow-hotplug wlan0
&gt; #wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
&gt; #iface eth0 inet manual</pre>
</blockquote>
<p>Add following configs.</p>
<blockquote>
<pre>auto lo 
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet static
address x.x.x.x
netmask x.x.x.x
gateway x.x.x.x
pre-up wpa_supplicant -Dwext -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf -B</pre>
</blockquote>
<p>Re-enable the interface.</p>
<blockquote>
<pre>ifdown wlan0
ifup wlan0</pre>
</blockquote>
<p>Configure the name server if required.</p>
<blockquote>
<pre>/etc/resolv.conf
nameserver x.x.x.x</pre>
</blockquote>
]]></content:encoded>
					
					<wfw:commentRss>https://arunns.net/configure-static-ip-on-raspberry-pi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
