<?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>killianfaughnan.com &#187; interface</title>
	<atom:link href="http://killianfaughnan.com/tag/interface/feed/" rel="self" type="application/rss+xml" />
	<link>http://killianfaughnan.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Wed, 23 Feb 2011 09:05:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Changing Your MAC Address In Linux</title>
		<link>http://killianfaughnan.com/2008/11/20/changing-your-mac-address-in-linux/</link>
		<comments>http://killianfaughnan.com/2008/11/20/changing-your-mac-address-in-linux/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 14:16:23 +0000</pubDate>
		<dc:creator>kfaughnan</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[eth]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://killianfaughnan.com/?p=88</guid>
		<description><![CDATA[In Linux is extremely easy to change your MAC address. All you need is a couple of commands. To start off you will need to take down the interface to make the change. To do so just type the following into your terminal: $ ifconfig eth0 down Now we can get to changing the MAC [...]]]></description>
			<content:encoded><![CDATA[<p>In Linux is extremely easy to change your MAC address. All you need is a couple of commands. To start off you will need to take down the interface to make the change. To do so just type the following into your terminal:</p>
<pre>  $ ifconfig eth0 down</pre>
<p>Now we can get to changing the MAC address. To do this we use the ifconfig command again along with the hw switch, we then specify the interface name (in this case eth0). Finally we will use the hw switch to set the hardware type to ethernet and give the interface the new MAC address. All in all it should look something like this.</p>
<pre>  $ ifconfig eth0 hw eth 0a:1b:2c:3d:4e:5f</pre>
<p>Finally we can bring up the interface and this time we will see the new MAC address.</p>
<pre>  $ ifconfig eth0 up
  $ ifconfig
  eth0      Link encap:Ethernet  <span style="color: #ff0000;">HWaddr 0a:1b:2c:3d:4e:5f </span>
            inet addr:192.168.1.2  Bcast:192.168.1.255  Mask:255.255.255.0
            inet6 addr: fe80::216:36ff:fef0:cf11/64 Scope:Link
            UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
            RX packets:191682 errors:0 dropped:0 overruns:0 frame:0
            TX packets:120012 errors:0 dropped:0 overruns:0 carrier:0
            collisions:0 txqueuelen:1000
            RX bytes:28218459 (26.9 MB)  TX bytes:13230519 (12.6 MB)
            Interrupt:17 Base address:0xa000</pre>
<p><em>Edit (Tue Jun 16 14:41:52 IST 2009):  Please note this does not work with all network cards. In some cases the drivers for a card will not support changing of a MAC address. I myself have an Eeepc 901 which has this problem with a RaLink RT2860 wireless card. I&#8217;m sure in one of the driver updates it will be included but for now I&#8217;m stuck without!</em></p>
]]></content:encoded>
			<wfw:commentRss>http://killianfaughnan.com/2008/11/20/changing-your-mac-address-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

