Hi. It's my first graph template. Don't know if it does exist equal solutions on this, But heres mine.
The nmaplist.sh does a ping latency scan on 255 ip's and report back the number of ip's whic have a latency aka "online NIC".
-Captwest
Nmap network scan graph
Moderators: Developers, Moderators
Nmap network scan graph
- Attachments
-
- graph_image_online_nic.png (31.51 KiB) Viewed 2540 times
-
- Cacti_graph_online_nic.zip
- (29.74 KiB) Downloaded 175 times
- gandalf
- Developer
- Posts: 22383
- Joined: Thu Dec 02, 2004 2:46 am
- Location: Muenster, Germany
- Contact:
Re: Nmap network scan graph
I'm not aware of any nmap templates right now. Please consider publishing your work, perhaps along with some words, at the 4th link of my sig which points to the official cacti template repository
R.
R.
Re: Nmap network scan graph
Could you explain what i need to share and how. Ain't it all in the attached .zip file?
Re: Nmap network scan graph
If you're only looking for online pcs, IMHO, you can use a bash script that executes ping and doesn't require nmap. Something like this should work just fine:
Code: Select all
#!/bin/bash
is_alive()
{
ping -W 1 -c 1 $1 > /dev/null
[ $? -eq 0 ] && let COUNT+=1
}
# MAIN
COUNT=0
for i in 192.168.0.{1..254}
do
is_alive $i
done
echo $COUNT
Against stupidity the gods themselves contend in vain.
Who is online
Users browsing this forum: No registered users and 0 guests