Created
January 25, 2017 01:53
-
-
Save flashvoid/d43df51c8551b11c0ac9bdb77123b8ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@kimogi-MacBookAir:/home/kimogi# ifconfig eth0 # original mac | |
eth0 Link encap:Ethernet HWaddr bc:f6:85:d7:1a:1a | |
UP BROADCAST MULTICAST MTU:1500 Metric:1 | |
RX packets:0 errors:0 dropped:0 overruns:0 frame:0 | |
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 | |
collisions:0 txqueuelen:1000 | |
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) | |
root@kimogi-MacBookAir:/home/kimogi# ifconfig eth0 down | |
root@kimogi-MacBookAir:/home/kimogi# ifconfig eth0 hw ether de:ad:be:ef:00:00 | |
root@kimogi-MacBookAir:/home/kimogi# ifconfig eth0 up | |
root@kimogi-MacBookAir:/home/kimogi# ifconfig eth0 # fake mac | |
eth0 Link encap:Ethernet HWaddr de:ad:be:ef:00:00 | |
UP BROADCAST MULTICAST MTU:1500 Metric:1 | |
RX packets:0 errors:0 dropped:0 overruns:0 frame:0 | |
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 | |
collisions:0 txqueuelen:1000 | |
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) | |
root@kimogi-MacBookAir:/home/kimogi# rmmod asix # removed driver | |
root@kimogi-MacBookAir:/home/kimogi# ifconfig eth0 | |
eth0: error fetching interface information: Device not found | |
root@kimogi-MacBookAir:/home/kimogi# modprobe asix # re loaded driver | |
root@kimogi-MacBookAir:/home/kimogi# ifconfig eth0 # still seeing fake mac | |
eth0 Link encap:Ethernet HWaddr de:ad:be:ef:00:00 | |
UP BROADCAST MULTICAST MTU:1500 Metric:1 | |
RX packets:0 errors:0 dropped:0 overruns:0 frame:0 | |
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 | |
collisions:0 txqueuelen:1000 | |
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment