How to assign unique MAC addresses to sub-interfacesNot able to connect to local networkCompletely disappeared Wireless14.04 no internet connection when I up the bridge interface (for LXC container)Connected to ethernet but no internet or outgoing connectionsNo internet access via ethernet, while wifi works (82579lm, ubuntu 14.04)Dual NIC not workingNo pings no package locations on server
Does this Foo machine halt?
As a 16 year old, how can I keep my money safe from my mother?
Short story about a teenager who has his brain replaced with a microchip (Psychological Horror)
Look mom! I made my own (Base 10) numeral system!
Is there a way to create a report for the failed entries while calling REST API
Double blind peer review when paper cites author's GitHub repo for code
How to identify the wires on the dimmer to convert it to Conventional on/off switch
Why did the RAAF procure the F/A-18 despite being purpose-built for carriers?
What is the best way to cause swarm intelligence to be destroyed?
Why should we care about syntactic proofs if we can show semantically that statements are true?
Did WWII Japanese soldiers engage in cannibalism of their enemies?
Is refreshing multiple times a test case for web applications?
How to help new students accept function notation
How to translate this word-play with the word "bargain" into French?
What word can be used to describe a bug in a movie?
Is it possible to script what applications should open certain file extensions?
Dereferencing a pointer in a for loop initializer creates a seg fault
Tikzcd pullback square issue
How do we avoid CI-driven development...?
Circle around all points of a layer
Non-OR journals which regularly publish OR research
Replace data between quotes in a file
Can a College of Swords bard use Blade Flourishes multiple times in a turn?
Team goes to lunch frequently, I do intermittent fasting but still want to socialize
How to assign unique MAC addresses to sub-interfaces
Not able to connect to local networkCompletely disappeared Wireless14.04 no internet connection when I up the bridge interface (for LXC container)Connected to ethernet but no internet or outgoing connectionsNo internet access via ethernet, while wifi works (82579lm, ubuntu 14.04)Dual NIC not workingNo pings no package locations on server
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
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
18.2k11 gold badges45 silver badges90 bronze badges
18.2k11 gold badges45 silver badges90 bronze badges
asked Nov 4 '13 at 18:17
Jason TookeJason Tooke
11 silver badge2 bronze badges
11 silver badge2 bronze badges
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-EWeb-E
18.2k11 gold badges45 silver badges90 bronze badges
18.2k11 gold badges45 silver badges90 bronze badges
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
olivervbkolivervbk
1112 bronze badges
1112 bronze badges
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 '18 at 7:54
Nagesh HSNagesh HS
63 bronze badges
63 bronze badges
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.
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