nmap + how to detected all machines IP's with range for example 10.64.*.*
How to verify the range of all machines with nmap
within IP class
10.64.*.*
For example we tried
nmap -sn 10.64.*.0/24 | grep redhat
in order to capture all machines with redhat name that have IPs from 10.64.1.0 to 10.64.255.255 but this doesn't work.
linux networking nmap
add a comment |
How to verify the range of all machines with nmap
within IP class
10.64.*.*
For example we tried
nmap -sn 10.64.*.0/24 | grep redhat
in order to capture all machines with redhat name that have IPs from 10.64.1.0 to 10.64.255.255 but this doesn't work.
linux networking nmap
Is 10.64.*.* a connected network (i.e. the machine from which you're executingnmap
has an IP in the same network)? Is the network subnetmask255.255.0.0
(/16
)?
– Mr Shunz
Dec 12 '18 at 15:34
add a comment |
How to verify the range of all machines with nmap
within IP class
10.64.*.*
For example we tried
nmap -sn 10.64.*.0/24 | grep redhat
in order to capture all machines with redhat name that have IPs from 10.64.1.0 to 10.64.255.255 but this doesn't work.
linux networking nmap
How to verify the range of all machines with nmap
within IP class
10.64.*.*
For example we tried
nmap -sn 10.64.*.0/24 | grep redhat
in order to capture all machines with redhat name that have IPs from 10.64.1.0 to 10.64.255.255 but this doesn't work.
linux networking nmap
linux networking nmap
edited Dec 12 '18 at 15:48
Mr Shunz
1,6681616
1,6681616
asked Dec 12 '18 at 15:23
King David
186119
186119
Is 10.64.*.* a connected network (i.e. the machine from which you're executingnmap
has an IP in the same network)? Is the network subnetmask255.255.0.0
(/16
)?
– Mr Shunz
Dec 12 '18 at 15:34
add a comment |
Is 10.64.*.* a connected network (i.e. the machine from which you're executingnmap
has an IP in the same network)? Is the network subnetmask255.255.0.0
(/16
)?
– Mr Shunz
Dec 12 '18 at 15:34
Is 10.64.*.* a connected network (i.e. the machine from which you're executing
nmap
has an IP in the same network)? Is the network subnetmask 255.255.0.0
(/16
)?– Mr Shunz
Dec 12 '18 at 15:34
Is 10.64.*.* a connected network (i.e. the machine from which you're executing
nmap
has an IP in the same network)? Is the network subnetmask 255.255.0.0
(/16
)?– Mr Shunz
Dec 12 '18 at 15:34
add a comment |
2 Answers
2
active
oldest
votes
Using nmap to scan 10.64.*.*will take a lot of time as there are 4096 addresses to scan.
Also, for OS detection use -O option with nmap.
-sn only shows available host.
You can use -v to see the verbose output.
I hope this helps!!
is it possible to find first the first three octat with nmap ? ( for example in some cluster we have 10.64.30.xxx and 19.64.31.xxx ( is it possible to find it by nmap or other tool ?
– King David
Dec 12 '18 at 16:02
If your ip is in the cluster you can check it by ifconfig utility.
– CHETAN ARORA
Dec 12 '18 at 16:07
but other machines could be with other octata
– King David
Dec 12 '18 at 16:12
Ifconfig utility gives subnet mask. E.g. if my mask is 255.255.254.0 , as it has 23 1’s from beginning. So my ip range would be 10.64.0.0/23 . Try using the verbose output it will solve any doubts itself.
– CHETAN ARORA
Dec 12 '18 at 16:26
If you're forgoing the port scan, OS detection is likely to be significantly less reliable. Also, you can speed things up further by adding-PR
to use ARP to find hosts that are online and-T4
to generally speed things up.
– Austin Hemmelgarn
Dec 12 '18 at 19:42
add a comment |
Try for the target the syntax of 10.64.0.0/16
or 10.64.0-255.1-254
.
when I didi it then nmap stuck , ( we cant to cntrl C also )
– King David
Dec 12 '18 at 15:34
I did it without the | grep , but I see nmap take a lot of time , and I must to get results ate least in one min
– King David
Dec 12 '18 at 15:47
Try to add the-T5
parameter to use the full available bandwidth, but may slow down the rest of the network.
– harrymc
Dec 12 '18 at 16:12
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%2f1382997%2fnmap-how-to-detected-all-machines-ips-with-range-for-example-10-64%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Using nmap to scan 10.64.*.*will take a lot of time as there are 4096 addresses to scan.
Also, for OS detection use -O option with nmap.
-sn only shows available host.
You can use -v to see the verbose output.
I hope this helps!!
is it possible to find first the first three octat with nmap ? ( for example in some cluster we have 10.64.30.xxx and 19.64.31.xxx ( is it possible to find it by nmap or other tool ?
– King David
Dec 12 '18 at 16:02
If your ip is in the cluster you can check it by ifconfig utility.
– CHETAN ARORA
Dec 12 '18 at 16:07
but other machines could be with other octata
– King David
Dec 12 '18 at 16:12
Ifconfig utility gives subnet mask. E.g. if my mask is 255.255.254.0 , as it has 23 1’s from beginning. So my ip range would be 10.64.0.0/23 . Try using the verbose output it will solve any doubts itself.
– CHETAN ARORA
Dec 12 '18 at 16:26
If you're forgoing the port scan, OS detection is likely to be significantly less reliable. Also, you can speed things up further by adding-PR
to use ARP to find hosts that are online and-T4
to generally speed things up.
– Austin Hemmelgarn
Dec 12 '18 at 19:42
add a comment |
Using nmap to scan 10.64.*.*will take a lot of time as there are 4096 addresses to scan.
Also, for OS detection use -O option with nmap.
-sn only shows available host.
You can use -v to see the verbose output.
I hope this helps!!
is it possible to find first the first three octat with nmap ? ( for example in some cluster we have 10.64.30.xxx and 19.64.31.xxx ( is it possible to find it by nmap or other tool ?
– King David
Dec 12 '18 at 16:02
If your ip is in the cluster you can check it by ifconfig utility.
– CHETAN ARORA
Dec 12 '18 at 16:07
but other machines could be with other octata
– King David
Dec 12 '18 at 16:12
Ifconfig utility gives subnet mask. E.g. if my mask is 255.255.254.0 , as it has 23 1’s from beginning. So my ip range would be 10.64.0.0/23 . Try using the verbose output it will solve any doubts itself.
– CHETAN ARORA
Dec 12 '18 at 16:26
If you're forgoing the port scan, OS detection is likely to be significantly less reliable. Also, you can speed things up further by adding-PR
to use ARP to find hosts that are online and-T4
to generally speed things up.
– Austin Hemmelgarn
Dec 12 '18 at 19:42
add a comment |
Using nmap to scan 10.64.*.*will take a lot of time as there are 4096 addresses to scan.
Also, for OS detection use -O option with nmap.
-sn only shows available host.
You can use -v to see the verbose output.
I hope this helps!!
Using nmap to scan 10.64.*.*will take a lot of time as there are 4096 addresses to scan.
Also, for OS detection use -O option with nmap.
-sn only shows available host.
You can use -v to see the verbose output.
I hope this helps!!
answered Dec 12 '18 at 15:58
CHETAN ARORA
261
261
is it possible to find first the first three octat with nmap ? ( for example in some cluster we have 10.64.30.xxx and 19.64.31.xxx ( is it possible to find it by nmap or other tool ?
– King David
Dec 12 '18 at 16:02
If your ip is in the cluster you can check it by ifconfig utility.
– CHETAN ARORA
Dec 12 '18 at 16:07
but other machines could be with other octata
– King David
Dec 12 '18 at 16:12
Ifconfig utility gives subnet mask. E.g. if my mask is 255.255.254.0 , as it has 23 1’s from beginning. So my ip range would be 10.64.0.0/23 . Try using the verbose output it will solve any doubts itself.
– CHETAN ARORA
Dec 12 '18 at 16:26
If you're forgoing the port scan, OS detection is likely to be significantly less reliable. Also, you can speed things up further by adding-PR
to use ARP to find hosts that are online and-T4
to generally speed things up.
– Austin Hemmelgarn
Dec 12 '18 at 19:42
add a comment |
is it possible to find first the first three octat with nmap ? ( for example in some cluster we have 10.64.30.xxx and 19.64.31.xxx ( is it possible to find it by nmap or other tool ?
– King David
Dec 12 '18 at 16:02
If your ip is in the cluster you can check it by ifconfig utility.
– CHETAN ARORA
Dec 12 '18 at 16:07
but other machines could be with other octata
– King David
Dec 12 '18 at 16:12
Ifconfig utility gives subnet mask. E.g. if my mask is 255.255.254.0 , as it has 23 1’s from beginning. So my ip range would be 10.64.0.0/23 . Try using the verbose output it will solve any doubts itself.
– CHETAN ARORA
Dec 12 '18 at 16:26
If you're forgoing the port scan, OS detection is likely to be significantly less reliable. Also, you can speed things up further by adding-PR
to use ARP to find hosts that are online and-T4
to generally speed things up.
– Austin Hemmelgarn
Dec 12 '18 at 19:42
is it possible to find first the first three octat with nmap ? ( for example in some cluster we have 10.64.30.xxx and 19.64.31.xxx ( is it possible to find it by nmap or other tool ?
– King David
Dec 12 '18 at 16:02
is it possible to find first the first three octat with nmap ? ( for example in some cluster we have 10.64.30.xxx and 19.64.31.xxx ( is it possible to find it by nmap or other tool ?
– King David
Dec 12 '18 at 16:02
If your ip is in the cluster you can check it by ifconfig utility.
– CHETAN ARORA
Dec 12 '18 at 16:07
If your ip is in the cluster you can check it by ifconfig utility.
– CHETAN ARORA
Dec 12 '18 at 16:07
but other machines could be with other octata
– King David
Dec 12 '18 at 16:12
but other machines could be with other octata
– King David
Dec 12 '18 at 16:12
Ifconfig utility gives subnet mask. E.g. if my mask is 255.255.254.0 , as it has 23 1’s from beginning. So my ip range would be 10.64.0.0/23 . Try using the verbose output it will solve any doubts itself.
– CHETAN ARORA
Dec 12 '18 at 16:26
Ifconfig utility gives subnet mask. E.g. if my mask is 255.255.254.0 , as it has 23 1’s from beginning. So my ip range would be 10.64.0.0/23 . Try using the verbose output it will solve any doubts itself.
– CHETAN ARORA
Dec 12 '18 at 16:26
If you're forgoing the port scan, OS detection is likely to be significantly less reliable. Also, you can speed things up further by adding
-PR
to use ARP to find hosts that are online and -T4
to generally speed things up.– Austin Hemmelgarn
Dec 12 '18 at 19:42
If you're forgoing the port scan, OS detection is likely to be significantly less reliable. Also, you can speed things up further by adding
-PR
to use ARP to find hosts that are online and -T4
to generally speed things up.– Austin Hemmelgarn
Dec 12 '18 at 19:42
add a comment |
Try for the target the syntax of 10.64.0.0/16
or 10.64.0-255.1-254
.
when I didi it then nmap stuck , ( we cant to cntrl C also )
– King David
Dec 12 '18 at 15:34
I did it without the | grep , but I see nmap take a lot of time , and I must to get results ate least in one min
– King David
Dec 12 '18 at 15:47
Try to add the-T5
parameter to use the full available bandwidth, but may slow down the rest of the network.
– harrymc
Dec 12 '18 at 16:12
add a comment |
Try for the target the syntax of 10.64.0.0/16
or 10.64.0-255.1-254
.
when I didi it then nmap stuck , ( we cant to cntrl C also )
– King David
Dec 12 '18 at 15:34
I did it without the | grep , but I see nmap take a lot of time , and I must to get results ate least in one min
– King David
Dec 12 '18 at 15:47
Try to add the-T5
parameter to use the full available bandwidth, but may slow down the rest of the network.
– harrymc
Dec 12 '18 at 16:12
add a comment |
Try for the target the syntax of 10.64.0.0/16
or 10.64.0-255.1-254
.
Try for the target the syntax of 10.64.0.0/16
or 10.64.0-255.1-254
.
answered Dec 12 '18 at 15:30
harrymc
253k12262564
253k12262564
when I didi it then nmap stuck , ( we cant to cntrl C also )
– King David
Dec 12 '18 at 15:34
I did it without the | grep , but I see nmap take a lot of time , and I must to get results ate least in one min
– King David
Dec 12 '18 at 15:47
Try to add the-T5
parameter to use the full available bandwidth, but may slow down the rest of the network.
– harrymc
Dec 12 '18 at 16:12
add a comment |
when I didi it then nmap stuck , ( we cant to cntrl C also )
– King David
Dec 12 '18 at 15:34
I did it without the | grep , but I see nmap take a lot of time , and I must to get results ate least in one min
– King David
Dec 12 '18 at 15:47
Try to add the-T5
parameter to use the full available bandwidth, but may slow down the rest of the network.
– harrymc
Dec 12 '18 at 16:12
when I didi it then nmap stuck , ( we cant to cntrl C also )
– King David
Dec 12 '18 at 15:34
when I didi it then nmap stuck , ( we cant to cntrl C also )
– King David
Dec 12 '18 at 15:34
I did it without the | grep , but I see nmap take a lot of time , and I must to get results ate least in one min
– King David
Dec 12 '18 at 15:47
I did it without the | grep , but I see nmap take a lot of time , and I must to get results ate least in one min
– King David
Dec 12 '18 at 15:47
Try to add the
-T5
parameter to use the full available bandwidth, but may slow down the rest of the network.– harrymc
Dec 12 '18 at 16:12
Try to add the
-T5
parameter to use the full available bandwidth, but may slow down the rest of the network.– harrymc
Dec 12 '18 at 16:12
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.
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%2fsuperuser.com%2fquestions%2f1382997%2fnmap-how-to-detected-all-machines-ips-with-range-for-example-10-64%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
Is 10.64.*.* a connected network (i.e. the machine from which you're executing
nmap
has an IP in the same network)? Is the network subnetmask255.255.0.0
(/16
)?– Mr Shunz
Dec 12 '18 at 15:34