Changing the MAC address on a FritzBox WiFi router
The AVM FritzBox WiFi router has a feature to set the required MAC address from the configuration GUI.
When we change the MAC address, is this change done virtually at the firmware level, or does the change happen at the hardware level by changing the MAC stored in modem's EEPROM?
linux router firmware eeprom
migrated from stackoverflow.com Sep 14 '12 at 23:48
This question came from our site for professional and enthusiast programmers.
add a comment |
The AVM FritzBox WiFi router has a feature to set the required MAC address from the configuration GUI.
When we change the MAC address, is this change done virtually at the firmware level, or does the change happen at the hardware level by changing the MAC stored in modem's EEPROM?
linux router firmware eeprom
migrated from stackoverflow.com Sep 14 '12 at 23:48
This question came from our site for professional and enthusiast programmers.
What happens if you disconnect power and restart it?
– stark
Sep 14 '12 at 23:11
Belongs on Super User or (maybe) Server Fault.
– millimoose
Sep 14 '12 at 23:13
Also, a possibly helpful data point: on Tomato firmware the change is persistent. I believe the idea is that this is useful to spoof the MAC of the laptop used to set up the connection, since ISP provisioning systems track users by tying a MAC to your account.
– millimoose
Sep 14 '12 at 23:18
Yes, this option is to spoof MAC of the PC connected to modem when ISP expects a special MAC address. Just wanted to know do this affect EEPROM, how this realized.
– fxgreen
Sep 14 '12 at 23:44
add a comment |
The AVM FritzBox WiFi router has a feature to set the required MAC address from the configuration GUI.
When we change the MAC address, is this change done virtually at the firmware level, or does the change happen at the hardware level by changing the MAC stored in modem's EEPROM?
linux router firmware eeprom
The AVM FritzBox WiFi router has a feature to set the required MAC address from the configuration GUI.
When we change the MAC address, is this change done virtually at the firmware level, or does the change happen at the hardware level by changing the MAC stored in modem's EEPROM?
linux router firmware eeprom
linux router firmware eeprom
asked Sep 14 '12 at 23:01
fxgreenfxgreen
111
111
migrated from stackoverflow.com Sep 14 '12 at 23:48
This question came from our site for professional and enthusiast programmers.
migrated from stackoverflow.com Sep 14 '12 at 23:48
This question came from our site for professional and enthusiast programmers.
What happens if you disconnect power and restart it?
– stark
Sep 14 '12 at 23:11
Belongs on Super User or (maybe) Server Fault.
– millimoose
Sep 14 '12 at 23:13
Also, a possibly helpful data point: on Tomato firmware the change is persistent. I believe the idea is that this is useful to spoof the MAC of the laptop used to set up the connection, since ISP provisioning systems track users by tying a MAC to your account.
– millimoose
Sep 14 '12 at 23:18
Yes, this option is to spoof MAC of the PC connected to modem when ISP expects a special MAC address. Just wanted to know do this affect EEPROM, how this realized.
– fxgreen
Sep 14 '12 at 23:44
add a comment |
What happens if you disconnect power and restart it?
– stark
Sep 14 '12 at 23:11
Belongs on Super User or (maybe) Server Fault.
– millimoose
Sep 14 '12 at 23:13
Also, a possibly helpful data point: on Tomato firmware the change is persistent. I believe the idea is that this is useful to spoof the MAC of the laptop used to set up the connection, since ISP provisioning systems track users by tying a MAC to your account.
– millimoose
Sep 14 '12 at 23:18
Yes, this option is to spoof MAC of the PC connected to modem when ISP expects a special MAC address. Just wanted to know do this affect EEPROM, how this realized.
– fxgreen
Sep 14 '12 at 23:44
What happens if you disconnect power and restart it?
– stark
Sep 14 '12 at 23:11
What happens if you disconnect power and restart it?
– stark
Sep 14 '12 at 23:11
Belongs on Super User or (maybe) Server Fault.
– millimoose
Sep 14 '12 at 23:13
Belongs on Super User or (maybe) Server Fault.
– millimoose
Sep 14 '12 at 23:13
Also, a possibly helpful data point: on Tomato firmware the change is persistent. I believe the idea is that this is useful to spoof the MAC of the laptop used to set up the connection, since ISP provisioning systems track users by tying a MAC to your account.
– millimoose
Sep 14 '12 at 23:18
Also, a possibly helpful data point: on Tomato firmware the change is persistent. I believe the idea is that this is useful to spoof the MAC of the laptop used to set up the connection, since ISP provisioning systems track users by tying a MAC to your account.
– millimoose
Sep 14 '12 at 23:18
Yes, this option is to spoof MAC of the PC connected to modem when ISP expects a special MAC address. Just wanted to know do this affect EEPROM, how this realized.
– fxgreen
Sep 14 '12 at 23:44
Yes, this option is to spoof MAC of the PC connected to modem when ISP expects a special MAC address. Just wanted to know do this affect EEPROM, how this realized.
– fxgreen
Sep 14 '12 at 23:44
add a comment |
1 Answer
1
active
oldest
votes
Any network protocol requesting the MAC address of a host needs to take that host's word for it. No network protocol can really "reach into" remote hardware and verify the claim of a host replying to ARP or similar.
Consequently, there's no real need to provide the capability to modify whatever facility a NIC manufacturer uses to store or contain its MAC address. Many, if not all, NICs have microcontrollers and some element of firmware, and therefore RAM. Some wired NICs, but many wireless LAN cards especially depend on the host side driver to load firmware into the card.
It's sufficient to have this firmware copy the MAC from a micro-ROM or similar on boot to the microcontrollers internal RAM, and provide some type of interface (i.e. PCI registers, etc.) over the host side bus to change the in-RAM copy. There are many legitimate reasons to change a MAC address so manufactuers don't tend to leave it out, except some wireless NICs.
There may be some weird network hardware that has a flash ROM or similar that contains the MAC address. Some very old ISA NICs may have a DIP EEPROM on it - with old (and new, really) PC hardware anything is really possible.
well, so this MAC address changes on WiFi router are done virtually at the firmware level? (not real change MAC in EEPROM)
– fxgreen
Sep 15 '12 at 0:35
Overwhelmingly likely it's at the firmware level, probably stored in a configuration file or other similar structure, accessible by the software running on the units CPU, in the same flash memory that the firmware itself is stored within.
– LawrenceC
Sep 15 '12 at 0:35
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f474379%2fchanging-the-mac-address-on-a-fritzbox-wifi-router%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Any network protocol requesting the MAC address of a host needs to take that host's word for it. No network protocol can really "reach into" remote hardware and verify the claim of a host replying to ARP or similar.
Consequently, there's no real need to provide the capability to modify whatever facility a NIC manufacturer uses to store or contain its MAC address. Many, if not all, NICs have microcontrollers and some element of firmware, and therefore RAM. Some wired NICs, but many wireless LAN cards especially depend on the host side driver to load firmware into the card.
It's sufficient to have this firmware copy the MAC from a micro-ROM or similar on boot to the microcontrollers internal RAM, and provide some type of interface (i.e. PCI registers, etc.) over the host side bus to change the in-RAM copy. There are many legitimate reasons to change a MAC address so manufactuers don't tend to leave it out, except some wireless NICs.
There may be some weird network hardware that has a flash ROM or similar that contains the MAC address. Some very old ISA NICs may have a DIP EEPROM on it - with old (and new, really) PC hardware anything is really possible.
well, so this MAC address changes on WiFi router are done virtually at the firmware level? (not real change MAC in EEPROM)
– fxgreen
Sep 15 '12 at 0:35
Overwhelmingly likely it's at the firmware level, probably stored in a configuration file or other similar structure, accessible by the software running on the units CPU, in the same flash memory that the firmware itself is stored within.
– LawrenceC
Sep 15 '12 at 0:35
add a comment |
Any network protocol requesting the MAC address of a host needs to take that host's word for it. No network protocol can really "reach into" remote hardware and verify the claim of a host replying to ARP or similar.
Consequently, there's no real need to provide the capability to modify whatever facility a NIC manufacturer uses to store or contain its MAC address. Many, if not all, NICs have microcontrollers and some element of firmware, and therefore RAM. Some wired NICs, but many wireless LAN cards especially depend on the host side driver to load firmware into the card.
It's sufficient to have this firmware copy the MAC from a micro-ROM or similar on boot to the microcontrollers internal RAM, and provide some type of interface (i.e. PCI registers, etc.) over the host side bus to change the in-RAM copy. There are many legitimate reasons to change a MAC address so manufactuers don't tend to leave it out, except some wireless NICs.
There may be some weird network hardware that has a flash ROM or similar that contains the MAC address. Some very old ISA NICs may have a DIP EEPROM on it - with old (and new, really) PC hardware anything is really possible.
well, so this MAC address changes on WiFi router are done virtually at the firmware level? (not real change MAC in EEPROM)
– fxgreen
Sep 15 '12 at 0:35
Overwhelmingly likely it's at the firmware level, probably stored in a configuration file or other similar structure, accessible by the software running on the units CPU, in the same flash memory that the firmware itself is stored within.
– LawrenceC
Sep 15 '12 at 0:35
add a comment |
Any network protocol requesting the MAC address of a host needs to take that host's word for it. No network protocol can really "reach into" remote hardware and verify the claim of a host replying to ARP or similar.
Consequently, there's no real need to provide the capability to modify whatever facility a NIC manufacturer uses to store or contain its MAC address. Many, if not all, NICs have microcontrollers and some element of firmware, and therefore RAM. Some wired NICs, but many wireless LAN cards especially depend on the host side driver to load firmware into the card.
It's sufficient to have this firmware copy the MAC from a micro-ROM or similar on boot to the microcontrollers internal RAM, and provide some type of interface (i.e. PCI registers, etc.) over the host side bus to change the in-RAM copy. There are many legitimate reasons to change a MAC address so manufactuers don't tend to leave it out, except some wireless NICs.
There may be some weird network hardware that has a flash ROM or similar that contains the MAC address. Some very old ISA NICs may have a DIP EEPROM on it - with old (and new, really) PC hardware anything is really possible.
Any network protocol requesting the MAC address of a host needs to take that host's word for it. No network protocol can really "reach into" remote hardware and verify the claim of a host replying to ARP or similar.
Consequently, there's no real need to provide the capability to modify whatever facility a NIC manufacturer uses to store or contain its MAC address. Many, if not all, NICs have microcontrollers and some element of firmware, and therefore RAM. Some wired NICs, but many wireless LAN cards especially depend on the host side driver to load firmware into the card.
It's sufficient to have this firmware copy the MAC from a micro-ROM or similar on boot to the microcontrollers internal RAM, and provide some type of interface (i.e. PCI registers, etc.) over the host side bus to change the in-RAM copy. There are many legitimate reasons to change a MAC address so manufactuers don't tend to leave it out, except some wireless NICs.
There may be some weird network hardware that has a flash ROM or similar that contains the MAC address. Some very old ISA NICs may have a DIP EEPROM on it - with old (and new, really) PC hardware anything is really possible.
answered Sep 15 '12 at 0:04
LawrenceCLawrenceC
59.5k11103181
59.5k11103181
well, so this MAC address changes on WiFi router are done virtually at the firmware level? (not real change MAC in EEPROM)
– fxgreen
Sep 15 '12 at 0:35
Overwhelmingly likely it's at the firmware level, probably stored in a configuration file or other similar structure, accessible by the software running on the units CPU, in the same flash memory that the firmware itself is stored within.
– LawrenceC
Sep 15 '12 at 0:35
add a comment |
well, so this MAC address changes on WiFi router are done virtually at the firmware level? (not real change MAC in EEPROM)
– fxgreen
Sep 15 '12 at 0:35
Overwhelmingly likely it's at the firmware level, probably stored in a configuration file or other similar structure, accessible by the software running on the units CPU, in the same flash memory that the firmware itself is stored within.
– LawrenceC
Sep 15 '12 at 0:35
well, so this MAC address changes on WiFi router are done virtually at the firmware level? (not real change MAC in EEPROM)
– fxgreen
Sep 15 '12 at 0:35
well, so this MAC address changes on WiFi router are done virtually at the firmware level? (not real change MAC in EEPROM)
– fxgreen
Sep 15 '12 at 0:35
Overwhelmingly likely it's at the firmware level, probably stored in a configuration file or other similar structure, accessible by the software running on the units CPU, in the same flash memory that the firmware itself is stored within.
– LawrenceC
Sep 15 '12 at 0:35
Overwhelmingly likely it's at the firmware level, probably stored in a configuration file or other similar structure, accessible by the software running on the units CPU, in the same flash memory that the firmware itself is stored within.
– LawrenceC
Sep 15 '12 at 0:35
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f474379%2fchanging-the-mac-address-on-a-fritzbox-wifi-router%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What happens if you disconnect power and restart it?
– stark
Sep 14 '12 at 23:11
Belongs on Super User or (maybe) Server Fault.
– millimoose
Sep 14 '12 at 23:13
Also, a possibly helpful data point: on Tomato firmware the change is persistent. I believe the idea is that this is useful to spoof the MAC of the laptop used to set up the connection, since ISP provisioning systems track users by tying a MAC to your account.
– millimoose
Sep 14 '12 at 23:18
Yes, this option is to spoof MAC of the PC connected to modem when ISP expects a special MAC address. Just wanted to know do this affect EEPROM, how this realized.
– fxgreen
Sep 14 '12 at 23:44