<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Change your Network Card MAC Address on Ubuntu</title>
	<atom:link href="http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/</link>
	<description>Computer Help from your Friendly How-To Geek</description>
	<lastBuildDate>Sun, 08 Nov 2009 07:56:33 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: unknown</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-77557</link>
		<dc:creator>unknown</dc:creator>
		<pubDate>Wed, 07 Oct 2009 00:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-77557</guid>
		<description>[b]for mac osx users:[/b]

sudo ifconfig en1 ether (mac-address)
*this will spoof your mac-address*
ifconfig en1 &#124;grep ether
*this will show you your current mac-address*</description>
		<content:encoded><![CDATA[<p>[b]for mac osx users:[/b]</p>
<p>sudo ifconfig en1 ether (mac-address)<br />
*this will spoof your mac-address*<br />
ifconfig en1 |grep ether<br />
*this will show you your current mac-address*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miRo</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-68173</link>
		<dc:creator>miRo</dc:creator>
		<pubDate>Thu, 05 Mar 2009 08:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-68173</guid>
		<description>oh, i almost forgot... works under Debian 5.0 Lenny {stable}</description>
		<content:encoded><![CDATA[<p>oh, i almost forgot&#8230; works under Debian 5.0 Lenny {stable}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miRo</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-68172</link>
		<dc:creator>miRo</dc:creator>
		<pubDate>Thu, 05 Mar 2009 08:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-68172</guid>
		<description>All the time I was using the ifconfig method in some /etc/init.d startup scripts (without changemac program), but now i tried the solution from original post and i find it the best. It&#039;s very clean, i just added the line &quot;hwaddress ether 01:02:03:04:05:06&quot; to /etc/network/interfaces and after restart everything works like a charm...</description>
		<content:encoded><![CDATA[<p>All the time I was using the ifconfig method in some /etc/init.d startup scripts (without changemac program), but now i tried the solution from original post and i find it the best. It&#8217;s very clean, i just added the line &#8220;hwaddress ether 01:02:03:04:05:06&#8243; to /etc/network/interfaces and after restart everything works like a charm&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vas</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-65021</link>
		<dc:creator>vas</dc:creator>
		<pubDate>Sat, 17 Jan 2009 02:43:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-65021</guid>
		<description>ill test the other once to, if their are people who know more script or command ideas of changing mac address than post here, ill test those to!</description>
		<content:encoded><![CDATA[<p>ill test the other once to, if their are people who know more script or command ideas of changing mac address than post here, ill test those to!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vas</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-65020</link>
		<dc:creator>vas</dc:creator>
		<pubDate>Sat, 17 Jan 2009 02:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-65020</guid>
		<description>try this:

sudo gedit /etc/init.d/bootmisc.sh

on the bottom of the page, insert:

killall dhclient
killall dhclient3
ifconfig eth0 down
ifconfig eth0 hw ether 112233445566
ifconfig eth0 up
/sbin/dhclient
/sbin/dhclient3

anything in this file will load after the regular boot process is started up. So putting this in the file will change the mac address everytime the machine starts.

this one worked in the newest Ubuntu distro year 2009 jan/feb.</description>
		<content:encoded><![CDATA[<p>try this:</p>
<p>sudo gedit /etc/init.d/bootmisc.sh</p>
<p>on the bottom of the page, insert:</p>
<p>killall dhclient<br />
killall dhclient3<br />
ifconfig eth0 down<br />
ifconfig eth0 hw ether 112233445566<br />
ifconfig eth0 up<br />
/sbin/dhclient<br />
/sbin/dhclient3</p>
<p>anything in this file will load after the regular boot process is started up. So putting this in the file will change the mac address everytime the machine starts.</p>
<p>this one worked in the newest Ubuntu distro year 2009 jan/feb.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vas</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-65017</link>
		<dc:creator>vas</dc:creator>
		<pubDate>Fri, 16 Jan 2009 23:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-65017</guid>
		<description>Open terminal and type as follow:

$ ifconfig 

$ cd /etc/init.d

$ sudo nano ChangeMAC 

Then, fill configuration file with new MAC Address.
sudo ifconfig eth1 down
sudo ifconfig eth1 hw ether xx:xx:xx:xx:xx:xx
sudo ifconfig eth1 up
sudo /etc/init.d/networking stop
sudo /etc/init.d/networking restart 

Save and close the file

Apply configuration file.
$ sudo chmod +x ChangeMAC

$ sudo update-rc.d ChangeMAC defaults 

Restart machine, and check new MAC Address with ifconfig command.
****************************************************************

WORKS JUST FINE!am trying this now, i will let u know if it worked!</description>
		<content:encoded><![CDATA[<p>Open terminal and type as follow:</p>
<p>$ ifconfig </p>
<p>$ cd /etc/init.d</p>
<p>$ sudo nano ChangeMAC </p>
<p>Then, fill configuration file with new MAC Address.<br />
sudo ifconfig eth1 down<br />
sudo ifconfig eth1 hw ether xx:xx:xx:xx:xx:xx<br />
sudo ifconfig eth1 up<br />
sudo /etc/init.d/networking stop<br />
sudo /etc/init.d/networking restart </p>
<p>Save and close the file</p>
<p>Apply configuration file.<br />
$ sudo chmod +x ChangeMAC</p>
<p>$ sudo update-rc.d ChangeMAC defaults </p>
<p>Restart machine, and check new MAC Address with ifconfig command.<br />
****************************************************************</p>
<p>WORKS JUST FINE!am trying this now, i will let u know if it worked!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HIBRA</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-58341</link>
		<dc:creator>HIBRA</dc:creator>
		<pubDate>Fri, 26 Sep 2008 13:04:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-58341</guid>
		<description>hi
I did what in the DX&#039;s script exactly,and when I restart the machine a white screen appeared
after I logged in and I couldn&#039;t get my desktop again 
the computer is now waiting.......
for your solutions

thanks</description>
		<content:encoded><![CDATA[<p>hi<br />
I did what in the DX&#8217;s script exactly,and when I restart the machine a white screen appeared<br />
after I logged in and I couldn&#8217;t get my desktop again<br />
the computer is now waiting&#8230;&#8230;.<br />
for your solutions</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jhom</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-51744</link>
		<dc:creator>Jhom</dc:creator>
		<pubDate>Mon, 09 Jun 2008 08:18:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-51744</guid>
		<description>Hi,
Tried all the options (not together :D), but no one didn&#039;t fix the problem for me.
with ipconfig I still have my eth0 with my old mac adress.
Anyone new ideas?
Thanks,

Jhom</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Tried all the options (not together <img src='http://www.howtogeek.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ), but no one didn&#8217;t fix the problem for me.<br />
with ipconfig I still have my eth0 with my old mac adress.<br />
Anyone new ideas?<br />
Thanks,</p>
<p>Jhom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: typo</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-41741</link>
		<dc:creator>typo</dc:creator>
		<pubDate>Tue, 25 Mar 2008 15:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-41741</guid>
		<description>small typo in last line of DX&#039;s script, should be /etc/iniT.d/networking restart

thanks, btw!</description>
		<content:encoded><![CDATA[<p>small typo in last line of DX&#8217;s script, should be /etc/iniT.d/networking restart</p>
<p>thanks, btw!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Geek</title>
		<link>http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/comment-page-1/#comment-40257</link>
		<dc:creator>The Geek</dc:creator>
		<pubDate>Tue, 11 Mar 2008 13:03:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.howtogeek.com/howto/ubuntu/change-your-network-card-mac-address-on-ubuntu/#comment-40257</guid>
		<description>@DX

Thanks for the update, I&#039;ll test and change the article. I&#039;m guessing when I wrote this it worked for an older version of Ubuntu, but not anymore.</description>
		<content:encoded><![CDATA[<p>@DX</p>
<p>Thanks for the update, I&#8217;ll test and change the article. I&#8217;m guessing when I wrote this it worked for an older version of Ubuntu, but not anymore.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
