<?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 ( Media Access Control) address</title>
	<atom:link href="http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html</link>
	<description>Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips</description>
	<lastBuildDate>Thu, 19 Nov 2009 13:24:32 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kanagasabai</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1314</link>
		<dc:creator>Kanagasabai</dc:creator>
		<pubDate>Fri, 22 Feb 2008 09:00:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1314</guid>
		<description>00-40-F4-CE-92-33
The above MAC number is live number in my PC, now i want to change my MAC number to 00-19-D1-1E-E2-12.

how to change my MAC number. If once changed any problem occur in feature.

sabai</description>
		<content:encoded><![CDATA[<p>00-40-F4-CE-92-33<br />
The above MAC number is live number in my PC, now i want to change my MAC number to 00-19-D1-1E-E2-12.</p>
<p>how to change my MAC number. If once changed any problem occur in feature.</p>
<p>sabai</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KA</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1313</link>
		<dc:creator>KA</dc:creator>
		<pubDate>Wed, 30 Jan 2008 14:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1313</guid>
		<description>People! What are you talking about??? I want to change my Mac address and I know nothing about computers! What shall I do? I don&#039;t trust that softwares you can dawnload from the internet. Can you tell me how to do it step by step? Please???</description>
		<content:encoded><![CDATA[<p>People! What are you talking about??? I want to change my Mac address and I know nothing about computers! What shall I do? I don&#8217;t trust that softwares you can dawnload from the internet. Can you tell me how to do it step by step? Please???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MikkelM</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1312</link>
		<dc:creator>MikkelM</dc:creator>
		<pubDate>Wed, 10 Oct 2007 20:05:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1312</guid>
		<description>I&#039;ve created a script to run at the start at a session that set a new and random MAC address for my network connections on my computer at startup using this macchanger tool. This is tested on my Ubuntu 7.04 installation with Gnome Network Manager removed and Wicd installed instead. eth0 is my wired connection and eth1 my wireless connection.

1. Create a sh script with these commands to E.G. &quot;randomMac.sh&quot;:
    killall /opt/wicd/daemon.py # closes use of eth1 by Wicd
    sleep 1

    ifconfig eth1 down # deactivate eth1

    macchanger -A eth0 # change mac address for eth0

    sleep 1 # wait a little to get different random mac addresses

    macchanger -A eth1 # change mac address for eth1

    ifconfig eth1 up # activates eth1

    sleep 1

    /opt/wicd/daemon.py 2&gt; /dev/null # starts  Wicd daemon again

    sleep 4

    /opt/wicd/tray-dapper.py 2&gt; /dev/null # starts the Wicd tray

2. Read the current mac addresses with the tool ifconfig.
3. Run the script with the command &quot;sudo sh randomMac.sh&quot;.
4. If the mac addresses is changed correct with the script then add the command &quot;sudo sh randomMac.sh&quot; to your session.

This works for me. If gnome network manager is used instead of Wicd then some other way of closing it&#039;s use of the wireless connection so macchanger can change the mac address.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve created a script to run at the start at a session that set a new and random MAC address for my network connections on my computer at startup using this macchanger tool. This is tested on my Ubuntu 7.04 installation with Gnome Network Manager removed and Wicd installed instead. eth0 is my wired connection and eth1 my wireless connection.</p>
<p>1. Create a sh script with these commands to E.G. &#8220;randomMac.sh&#8221;:<br />
    killall /opt/wicd/daemon.py # closes use of eth1 by Wicd<br />
    sleep 1</p>
<p>    ifconfig eth1 down # deactivate eth1</p>
<p>    macchanger -A eth0 # change mac address for eth0</p>
<p>    sleep 1 # wait a little to get different random mac addresses</p>
<p>    macchanger -A eth1 # change mac address for eth1</p>
<p>    ifconfig eth1 up # activates eth1</p>
<p>    sleep 1</p>
<p>    /opt/wicd/daemon.py 2&gt; /dev/null # starts  Wicd daemon again</p>
<p>    sleep 4</p>
<p>    /opt/wicd/tray-dapper.py 2&gt; /dev/null # starts the Wicd tray</p>
<p>2. Read the current mac addresses with the tool ifconfig.<br />
3. Run the script with the command &#8220;sudo sh randomMac.sh&#8221;.<br />
4. If the mac addresses is changed correct with the script then add the command &#8220;sudo sh randomMac.sh&#8221; to your session.</p>
<p>This works for me. If gnome network manager is used instead of Wicd then some other way of closing it&#8217;s use of the wireless connection so macchanger can change the mac address.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JohnR</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1311</link>
		<dc:creator>JohnR</dc:creator>
		<pubDate>Fri, 10 Aug 2007 19:10:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1311</guid>
		<description>You guys are missing the point of this software- it&#039;s to get a DIFFERENT, RANDOM MAC every time you bootup.</description>
		<content:encoded><![CDATA[<p>You guys are missing the point of this software- it&#8217;s to get a DIFFERENT, RANDOM MAC every time you bootup.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mak</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1310</link>
		<dc:creator>Mak</dc:creator>
		<pubDate>Tue, 06 Feb 2007 11:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1310</guid>
		<description>its not working any more</description>
		<content:encoded><![CDATA[<p>its not working any more</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kid</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1309</link>
		<dc:creator>kid</dc:creator>
		<pubDate>Tue, 30 Jan 2007 02:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1309</guid>
		<description>I think that program is great I need a different mac ever boot how do I load macchanger on boot?</description>
		<content:encoded><![CDATA[<p>I think that program is great I need a different mac ever boot how do I load macchanger on boot?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Gates</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1308</link>
		<dc:creator>Bill Gates</dc:creator>
		<pubDate>Mon, 15 Jan 2007 18:00:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1308</guid>
		<description>i also think that programme is useless except the manufacture database</description>
		<content:encoded><![CDATA[<p>i also think that programme is useless except the manufacture database</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jure Kodzoman</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1307</link>
		<dc:creator>Jure Kodzoman</dc:creator>
		<pubDate>Fri, 12 Jan 2007 13:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1307</guid>
		<description>It is also possible to set this in you /etc/network/interfaces, so it stays active even after reboot. I don&#039;t see much point in this software?

/etc/network/interfaces
-----
auto eth0
iface eth0 inet dhcp
hwaddress ether 01:23:45:67:89:AB
-----</description>
		<content:encoded><![CDATA[<p>It is also possible to set this in you /etc/network/interfaces, so it stays active even after reboot. I don&#8217;t see much point in this software?</p>
<p>/etc/network/interfaces<br />
&#8212;&#8211;<br />
auto eth0<br />
iface eth0 inet dhcp<br />
hwaddress ether 01:23:45:67:89:AB<br />
&#8212;&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vonskippy</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1306</link>
		<dc:creator>Vonskippy</dc:creator>
		<pubDate>Mon, 08 Jan 2007 22:45:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1306</guid>
		<description>And this is easier??? then:

   ifconfig eth0 down hw ether 00:00:00:00:00:01
   ifconfig eth0 up</description>
		<content:encoded><![CDATA[<p>And this is easier??? then:</p>
<p>   ifconfig eth0 down hw ether 00:00:00:00:00:01<br />
   ifconfig eth0 up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert Emil Berge</title>
		<link>http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html/comment-page-1#comment-1305</link>
		<dc:creator>Robert Emil Berge</dc:creator>
		<pubDate>Thu, 04 Jan 2007 21:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/change-your-network-card-mac-media-access-control-address.html#comment-1305</guid>
		<description>It is possible to change the mac address with the ifconfig command as well, but without most of the features of MAC changer.
Just write eg.: ifconfig eth1 hw ether 01:23:45:67:89:ab</description>
		<content:encoded><![CDATA[<p>It is possible to change the mac address with the ifconfig command as well, but without most of the features of MAC changer.<br />
Just write eg.: ifconfig eth1 hw ether 01:23:45:67:89:ab</p>
]]></content:encoded>
	</item>
</channel>
</rss>
