Rename device ID as returned by nmap
I would like to rename a device on my network as I have several devices from the same mfg. For example, an Asus wireless router shows the same mfg name as an Asus motherboard (connected by Ethernet), as such:
Nmap scan report for 192.168.1.110
Host is up (0.0013s latency).
MAC Address: (mac) (Asustek Computer)
Nmap scan report for 192.168.1.105
Host is up (-0.100s latency).
MAC Address: (different mac) (Asustek Computer)
The computer is running Ubuntu MATE, so while I am not sure that the router can be renamed (since it's a limited embedded device after all), the computer might have tools to do so. However, I am not sure how it is to be done. Thanks for your help!
nmap
add a comment |
I would like to rename a device on my network as I have several devices from the same mfg. For example, an Asus wireless router shows the same mfg name as an Asus motherboard (connected by Ethernet), as such:
Nmap scan report for 192.168.1.110
Host is up (0.0013s latency).
MAC Address: (mac) (Asustek Computer)
Nmap scan report for 192.168.1.105
Host is up (-0.100s latency).
MAC Address: (different mac) (Asustek Computer)
The computer is running Ubuntu MATE, so while I am not sure that the router can be renamed (since it's a limited embedded device after all), the computer might have tools to do so. However, I am not sure how it is to be done. Thanks for your help!
nmap
I don't think that it is the devices that answers back with ID, but nmap that has a database over which MAC address ranges that belongs to which manufactures.
– Soren A
Feb 8 at 11:38
add a comment |
I would like to rename a device on my network as I have several devices from the same mfg. For example, an Asus wireless router shows the same mfg name as an Asus motherboard (connected by Ethernet), as such:
Nmap scan report for 192.168.1.110
Host is up (0.0013s latency).
MAC Address: (mac) (Asustek Computer)
Nmap scan report for 192.168.1.105
Host is up (-0.100s latency).
MAC Address: (different mac) (Asustek Computer)
The computer is running Ubuntu MATE, so while I am not sure that the router can be renamed (since it's a limited embedded device after all), the computer might have tools to do so. However, I am not sure how it is to be done. Thanks for your help!
nmap
I would like to rename a device on my network as I have several devices from the same mfg. For example, an Asus wireless router shows the same mfg name as an Asus motherboard (connected by Ethernet), as such:
Nmap scan report for 192.168.1.110
Host is up (0.0013s latency).
MAC Address: (mac) (Asustek Computer)
Nmap scan report for 192.168.1.105
Host is up (-0.100s latency).
MAC Address: (different mac) (Asustek Computer)
The computer is running Ubuntu MATE, so while I am not sure that the router can be renamed (since it's a limited embedded device after all), the computer might have tools to do so. However, I am not sure how it is to be done. Thanks for your help!
nmap
nmap
edited Feb 8 at 16:07
xen20
asked Feb 8 at 11:15
xen20xen20
113
113
I don't think that it is the devices that answers back with ID, but nmap that has a database over which MAC address ranges that belongs to which manufactures.
– Soren A
Feb 8 at 11:38
add a comment |
I don't think that it is the devices that answers back with ID, but nmap that has a database over which MAC address ranges that belongs to which manufactures.
– Soren A
Feb 8 at 11:38
I don't think that it is the devices that answers back with ID, but nmap that has a database over which MAC address ranges that belongs to which manufactures.
– Soren A
Feb 8 at 11:38
I don't think that it is the devices that answers back with ID, but nmap that has a database over which MAC address ranges that belongs to which manufactures.
– Soren A
Feb 8 at 11:38
add a comment |
1 Answer
1
active
oldest
votes
Those are not "names" on a network that you can find with a name resolution (DNS).
nmap
is just reporting the the manufacturer for the mac addresses it found.
Specifially, nmap
looks up the prefix - first 3 hex values - of the address in this database.
If, for some reason, you still need to have different manufacturers show up after an nmap
scan, you can change/spoof your mac address in Ubuntu. Your Asus router might also have an option for this.
If you want "names" (i.e. myhost.example.com) on your network, then we are talking about DNS records.
I'd suggest looking into
- running a DNS server - flavour bind9
- running a DNS server - flavour dnsmasq
- static DNS names in /etc/hosts files
Thank you for your detailed reply. I might go the DNS route - the last option sounds most applicable. As to the MAC address being the source for the "names". the more you know :)
– xen20
Feb 8 at 22:28
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%2f1116643%2frename-device-id-as-returned-by-nmap%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
Those are not "names" on a network that you can find with a name resolution (DNS).
nmap
is just reporting the the manufacturer for the mac addresses it found.
Specifially, nmap
looks up the prefix - first 3 hex values - of the address in this database.
If, for some reason, you still need to have different manufacturers show up after an nmap
scan, you can change/spoof your mac address in Ubuntu. Your Asus router might also have an option for this.
If you want "names" (i.e. myhost.example.com) on your network, then we are talking about DNS records.
I'd suggest looking into
- running a DNS server - flavour bind9
- running a DNS server - flavour dnsmasq
- static DNS names in /etc/hosts files
Thank you for your detailed reply. I might go the DNS route - the last option sounds most applicable. As to the MAC address being the source for the "names". the more you know :)
– xen20
Feb 8 at 22:28
add a comment |
Those are not "names" on a network that you can find with a name resolution (DNS).
nmap
is just reporting the the manufacturer for the mac addresses it found.
Specifially, nmap
looks up the prefix - first 3 hex values - of the address in this database.
If, for some reason, you still need to have different manufacturers show up after an nmap
scan, you can change/spoof your mac address in Ubuntu. Your Asus router might also have an option for this.
If you want "names" (i.e. myhost.example.com) on your network, then we are talking about DNS records.
I'd suggest looking into
- running a DNS server - flavour bind9
- running a DNS server - flavour dnsmasq
- static DNS names in /etc/hosts files
Thank you for your detailed reply. I might go the DNS route - the last option sounds most applicable. As to the MAC address being the source for the "names". the more you know :)
– xen20
Feb 8 at 22:28
add a comment |
Those are not "names" on a network that you can find with a name resolution (DNS).
nmap
is just reporting the the manufacturer for the mac addresses it found.
Specifially, nmap
looks up the prefix - first 3 hex values - of the address in this database.
If, for some reason, you still need to have different manufacturers show up after an nmap
scan, you can change/spoof your mac address in Ubuntu. Your Asus router might also have an option for this.
If you want "names" (i.e. myhost.example.com) on your network, then we are talking about DNS records.
I'd suggest looking into
- running a DNS server - flavour bind9
- running a DNS server - flavour dnsmasq
- static DNS names in /etc/hosts files
Those are not "names" on a network that you can find with a name resolution (DNS).
nmap
is just reporting the the manufacturer for the mac addresses it found.
Specifially, nmap
looks up the prefix - first 3 hex values - of the address in this database.
If, for some reason, you still need to have different manufacturers show up after an nmap
scan, you can change/spoof your mac address in Ubuntu. Your Asus router might also have an option for this.
If you want "names" (i.e. myhost.example.com) on your network, then we are talking about DNS records.
I'd suggest looking into
- running a DNS server - flavour bind9
- running a DNS server - flavour dnsmasq
- static DNS names in /etc/hosts files
edited Feb 14 at 15:18
answered Feb 8 at 18:04
Robert RiedlRobert Riedl
3,165927
3,165927
Thank you for your detailed reply. I might go the DNS route - the last option sounds most applicable. As to the MAC address being the source for the "names". the more you know :)
– xen20
Feb 8 at 22:28
add a comment |
Thank you for your detailed reply. I might go the DNS route - the last option sounds most applicable. As to the MAC address being the source for the "names". the more you know :)
– xen20
Feb 8 at 22:28
Thank you for your detailed reply. I might go the DNS route - the last option sounds most applicable. As to the MAC address being the source for the "names". the more you know :)
– xen20
Feb 8 at 22:28
Thank you for your detailed reply. I might go the DNS route - the last option sounds most applicable. As to the MAC address being the source for the "names". the more you know :)
– xen20
Feb 8 at 22:28
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%2f1116643%2frename-device-id-as-returned-by-nmap%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
I don't think that it is the devices that answers back with ID, but nmap that has a database over which MAC address ranges that belongs to which manufactures.
– Soren A
Feb 8 at 11:38