How to assign unique MAC addresses to sub-interfaces
I'm in a corporate environment with a DHCP server with static assignments for my server. I have one physical nic with several sub-interfaces. I statically assign different MAC addresses for each sub-interface to get another IP address from the DHCP server. For some reason, my server is not taking the static MAC addresses. You'll notice that ifconfig shows each interface with the same MAC.
How do I assign unique MAC addresses to my sub-interfaces?
$ cat interfaces
auto lo
iface lo inet loopback
auto eth0:1
iface eth0:1 inet dhcp
hwaddress ether 00:0c:29:31:24:fa
hostname gwrt-test
client gwrt-test
auto eth0:2
iface eth0:2 inet dhcp
hwaddress ether 00:0c:29:31:25:fa
hostname gwrt-test2
client gwrt-test2
$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:329737 errors:0 dropped:0 overruns:0 frame:0
TX packets:121645 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:69228791 (69.2 MB) TX bytes:63531749 (63.5 MB)
Interrupt:16
eth0:1 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa <- should be 24:fa
inet addr:10.203.102.29 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
eth0:2 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
inet addr:10.203.102.32 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
networking server ethernet dhcp
add a comment |
I'm in a corporate environment with a DHCP server with static assignments for my server. I have one physical nic with several sub-interfaces. I statically assign different MAC addresses for each sub-interface to get another IP address from the DHCP server. For some reason, my server is not taking the static MAC addresses. You'll notice that ifconfig shows each interface with the same MAC.
How do I assign unique MAC addresses to my sub-interfaces?
$ cat interfaces
auto lo
iface lo inet loopback
auto eth0:1
iface eth0:1 inet dhcp
hwaddress ether 00:0c:29:31:24:fa
hostname gwrt-test
client gwrt-test
auto eth0:2
iface eth0:2 inet dhcp
hwaddress ether 00:0c:29:31:25:fa
hostname gwrt-test2
client gwrt-test2
$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:329737 errors:0 dropped:0 overruns:0 frame:0
TX packets:121645 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:69228791 (69.2 MB) TX bytes:63531749 (63.5 MB)
Interrupt:16
eth0:1 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa <- should be 24:fa
inet addr:10.203.102.29 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
eth0:2 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
inet addr:10.203.102.32 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
networking server ethernet dhcp
If you're thinking of going to the trouble of setting the MAC address explicitly for each interface, and as you say the addresses handed out by the dhcp server are static and reserved for use by your server, why not just configure them statically instead of using dhcp?
– roadmr
Nov 4 '13 at 18:29
Company politics. The server is for development and sitting on my desk... but yes, static would be ideal.
– Jason Tooke
Nov 4 '13 at 19:35
add a comment |
I'm in a corporate environment with a DHCP server with static assignments for my server. I have one physical nic with several sub-interfaces. I statically assign different MAC addresses for each sub-interface to get another IP address from the DHCP server. For some reason, my server is not taking the static MAC addresses. You'll notice that ifconfig shows each interface with the same MAC.
How do I assign unique MAC addresses to my sub-interfaces?
$ cat interfaces
auto lo
iface lo inet loopback
auto eth0:1
iface eth0:1 inet dhcp
hwaddress ether 00:0c:29:31:24:fa
hostname gwrt-test
client gwrt-test
auto eth0:2
iface eth0:2 inet dhcp
hwaddress ether 00:0c:29:31:25:fa
hostname gwrt-test2
client gwrt-test2
$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:329737 errors:0 dropped:0 overruns:0 frame:0
TX packets:121645 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:69228791 (69.2 MB) TX bytes:63531749 (63.5 MB)
Interrupt:16
eth0:1 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa <- should be 24:fa
inet addr:10.203.102.29 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
eth0:2 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
inet addr:10.203.102.32 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
networking server ethernet dhcp
I'm in a corporate environment with a DHCP server with static assignments for my server. I have one physical nic with several sub-interfaces. I statically assign different MAC addresses for each sub-interface to get another IP address from the DHCP server. For some reason, my server is not taking the static MAC addresses. You'll notice that ifconfig shows each interface with the same MAC.
How do I assign unique MAC addresses to my sub-interfaces?
$ cat interfaces
auto lo
iface lo inet loopback
auto eth0:1
iface eth0:1 inet dhcp
hwaddress ether 00:0c:29:31:24:fa
hostname gwrt-test
client gwrt-test
auto eth0:2
iface eth0:2 inet dhcp
hwaddress ether 00:0c:29:31:25:fa
hostname gwrt-test2
client gwrt-test2
$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:329737 errors:0 dropped:0 overruns:0 frame:0
TX packets:121645 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:69228791 (69.2 MB) TX bytes:63531749 (63.5 MB)
Interrupt:16
eth0:1 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa <- should be 24:fa
inet addr:10.203.102.29 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
eth0:2 Link encap:Ethernet HWaddr 00:0c:29:31:25:fa
inet addr:10.203.102.32 Bcast:10.203.102.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
Interrupt:16
networking server ethernet dhcp
networking server ethernet dhcp
edited Nov 4 '13 at 18:20
Web-E
17.6k104489
17.6k104489
asked Nov 4 '13 at 18:17
Jason Tooke
112
112
If you're thinking of going to the trouble of setting the MAC address explicitly for each interface, and as you say the addresses handed out by the dhcp server are static and reserved for use by your server, why not just configure them statically instead of using dhcp?
– roadmr
Nov 4 '13 at 18:29
Company politics. The server is for development and sitting on my desk... but yes, static would be ideal.
– Jason Tooke
Nov 4 '13 at 19:35
add a comment |
If you're thinking of going to the trouble of setting the MAC address explicitly for each interface, and as you say the addresses handed out by the dhcp server are static and reserved for use by your server, why not just configure them statically instead of using dhcp?
– roadmr
Nov 4 '13 at 18:29
Company politics. The server is for development and sitting on my desk... but yes, static would be ideal.
– Jason Tooke
Nov 4 '13 at 19:35
If you're thinking of going to the trouble of setting the MAC address explicitly for each interface, and as you say the addresses handed out by the dhcp server are static and reserved for use by your server, why not just configure them statically instead of using dhcp?
– roadmr
Nov 4 '13 at 18:29
If you're thinking of going to the trouble of setting the MAC address explicitly for each interface, and as you say the addresses handed out by the dhcp server are static and reserved for use by your server, why not just configure them statically instead of using dhcp?
– roadmr
Nov 4 '13 at 18:29
Company politics. The server is for development and sitting on my desk... but yes, static would be ideal.
– Jason Tooke
Nov 4 '13 at 19:35
Company politics. The server is for development and sitting on my desk... but yes, static would be ideal.
– Jason Tooke
Nov 4 '13 at 19:35
add a comment |
3 Answers
3
active
oldest
votes
You can install macchanger
Then execute like following,
sudo macchanger --mac 00:11:22:33:44:55 <interface_name>
More details
add a comment |
Multimac can do this. (http://www.primianotucci.com/os/multimac)
Alternatively you can use "ip link" to add veth interfaces.
In both methods you must then bridge veth0 to eth0 using brctl (bridge-utils).
Each interface (tapX for multimac or vethX for veth) can then have custom mac addresses
(ifconfig hw ether xx:xx:xx:xx:xx:xx, interface should be down.)
add a comment |
You can use following commands on linux machines.
ifconfig eth1.2 down
ifconfig eth1.2 hw ether 00:00:00:02:03:04
ifconfig eth1.2 up
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f371085%2fhow-to-assign-unique-mac-addresses-to-sub-interfaces%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can install macchanger
Then execute like following,
sudo macchanger --mac 00:11:22:33:44:55 <interface_name>
More details
add a comment |
You can install macchanger
Then execute like following,
sudo macchanger --mac 00:11:22:33:44:55 <interface_name>
More details
add a comment |
You can install macchanger
Then execute like following,
sudo macchanger --mac 00:11:22:33:44:55 <interface_name>
More details
You can install macchanger
Then execute like following,
sudo macchanger --mac 00:11:22:33:44:55 <interface_name>
More details
answered Nov 4 '13 at 18:23
Web-E
17.6k104489
17.6k104489
add a comment |
add a comment |
Multimac can do this. (http://www.primianotucci.com/os/multimac)
Alternatively you can use "ip link" to add veth interfaces.
In both methods you must then bridge veth0 to eth0 using brctl (bridge-utils).
Each interface (tapX for multimac or vethX for veth) can then have custom mac addresses
(ifconfig hw ether xx:xx:xx:xx:xx:xx, interface should be down.)
add a comment |
Multimac can do this. (http://www.primianotucci.com/os/multimac)
Alternatively you can use "ip link" to add veth interfaces.
In both methods you must then bridge veth0 to eth0 using brctl (bridge-utils).
Each interface (tapX for multimac or vethX for veth) can then have custom mac addresses
(ifconfig hw ether xx:xx:xx:xx:xx:xx, interface should be down.)
add a comment |
Multimac can do this. (http://www.primianotucci.com/os/multimac)
Alternatively you can use "ip link" to add veth interfaces.
In both methods you must then bridge veth0 to eth0 using brctl (bridge-utils).
Each interface (tapX for multimac or vethX for veth) can then have custom mac addresses
(ifconfig hw ether xx:xx:xx:xx:xx:xx, interface should be down.)
Multimac can do this. (http://www.primianotucci.com/os/multimac)
Alternatively you can use "ip link" to add veth interfaces.
In both methods you must then bridge veth0 to eth0 using brctl (bridge-utils).
Each interface (tapX for multimac or vethX for veth) can then have custom mac addresses
(ifconfig hw ether xx:xx:xx:xx:xx:xx, interface should be down.)
answered May 6 '14 at 16:24
olivervbk
1112
1112
add a comment |
add a comment |
You can use following commands on linux machines.
ifconfig eth1.2 down
ifconfig eth1.2 hw ether 00:00:00:02:03:04
ifconfig eth1.2 up
add a comment |
You can use following commands on linux machines.
ifconfig eth1.2 down
ifconfig eth1.2 hw ether 00:00:00:02:03:04
ifconfig eth1.2 up
add a comment |
You can use following commands on linux machines.
ifconfig eth1.2 down
ifconfig eth1.2 hw ether 00:00:00:02:03:04
ifconfig eth1.2 up
You can use following commands on linux machines.
ifconfig eth1.2 down
ifconfig eth1.2 hw ether 00:00:00:02:03:04
ifconfig eth1.2 up
answered Jun 1 at 7:54
Nagesh HS
63
63
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2faskubuntu.com%2fquestions%2f371085%2fhow-to-assign-unique-mac-addresses-to-sub-interfaces%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
If you're thinking of going to the trouble of setting the MAC address explicitly for each interface, and as you say the addresses handed out by the dhcp server are static and reserved for use by your server, why not just configure them statically instead of using dhcp?
– roadmr
Nov 4 '13 at 18:29
Company politics. The server is for development and sitting on my desk... but yes, static would be ideal.
– Jason Tooke
Nov 4 '13 at 19:35