ネットワーク上の未使用のIPアドレスを見つけたいだけです。nmapで可能だと思います。誰かが私に方法を言うことができますか?
注意:
無料のIPリストだけが必要です。
ネットワーク上の未使用のIPアドレスを見つけたいだけです。nmapで可能だと思います。誰かが私に方法を言うことができますか?
注意:
無料のIPリストだけが必要です。
回答:
速いスキャナがあるARPスキャン使用するARPをネットワーク上の他のマシンを「見る」こと。また、MACアドレスを返し、ネットワークアダプターの製造元を特定しようとします。
使用例(必要に応じて置き換えwlan0
てくださいeth0
):
$ sudo arp-scan -I wlan0 192.168.1.0/24
Interface: wlan0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.6 with 256 hosts (http://www.nta-monitor.com/tools/arp-scan/)
192.168.1.10 00:90:f5:33:e2:f2 CLEVO CO.
192.168.1.254 00:14:7f:72:cd:05 Thomson Telecom Belgium
2 packets received by filter, 0 packets dropped by kernel
Ending arp-scan 1.6: 256 hosts scanned in 1.406 seconds (182.08 hosts/sec). 2 responded
このユーティリティは、電源がオンになっているマシンのみを報告することに注意してください。ping
ブロックすることはできますがarp-scan
、マシンがネットワーク上の他のマシンと対話する必要があるため、ブロックすることはできません。IPが使用されていないことを確認するには、ルーター(静的/動的アドレス用)およびDHCPサーバー(動的アドレス用)を確認することをお勧めします。
-i
パラメータを使用して、たとえば-i 5
5ミリ秒の間、パケットを送信する間の遅延を増やしてみてください。
sudo nmap -sP -PR 192.168.0.*
(またはネットワークが何であれ)トリックを行います。
それをインストールするには、を使用しますsudo apt-get install nmap
。
出典:serverfault.com。
これをテストしただけで、隠されたホストを含む魅力のように機能し-PR
ます。オプションを使用するには、sudoを追加する必要があります。
sudo
)テストしただけです。さらに、ホストのポートもスキャンするため、ファイアウォールによってブロックされている可能性があり、これも検索速度を低下させます。
fpingは便利です。とりわけ、「生きている」アドレスと「到達できない」アドレスの範囲をpingします。fpingはデフォルトではインストールされません。
sudo apt-get install fping
簡単なアプローチは、アドレスの範囲で実行することです。
fping -g 192.168.0.2 192.168.0.254 2>/dev/null
少し精巧に、未使用のIPのリストを作成します。
fping -g 192.168.0.2 192.168.0.254 2>/dev/null | grep 'is unreachable' | cut -d ' ' -f 1 | sort -t '.' -k 4 -n
私はそれが最善の解決策ではないと信じていますが、あなたが望むことをします。このスクリプトはネットワーク上で実行さping
れ192.168.0.0/24
、ARPキャッシュにない場合は非アクティブなIPのリストを返します。
以前のソリューションに対する利点:
root
ユーザーとして実行する必要はありませんネットワークをスキャンするには、<first IP> <last IP>
パラメーターを指定して実行します。
#!/usr/bin/env python
from threading import Thread
import subprocess
from Queue import Queue
verbose = False
num_threads = 8
queue = Queue()
inactive_ips = [0 for i in range(256)]
lines = open("/proc/net/arp", "r").readlines()
arp_cache = [l.split()[0] for l in lines[1:] if l.split()[2] == "0x2"]
def ip_str_to_int(ip):
ip = ip.rstrip().split('.')
ipn = 0
while ip:
ipn = (ipn << 8) + int(ip.pop(0))
return ipn
def ip_int_to_str(ip):
ips = ''
for i in range(4):
ip, n = divmod(ip, 256)
ips = str(n) + '.' + ips
return ips[:-1] ## take out extra point
#wraps system ping command
def pinger(i, q):
while True:
ip_num = q.get()
ip = ip_int_to_str(ip_num)
if ip not in arp_cache:
ret = subprocess.call("ping -c 1 %s" % ip,
shell=True,
stdout=open('/dev/null', 'w'),
stderr=subprocess.STDOUT)
if ret != 0:
inactive_ips[ip_num % 256] = ip
q.task_done()
if __name__ == '__main__':
from optparse import OptionParser
usage = "usage: %prog [options] [first IP] [last IP]"
parser = OptionParser(usage=usage)
parser.add_option("-v", "--verbose", action="store_true", dest="verbose", help="make lots of noise")
parser.add_option("-q", action="store_false", dest="verbose", help="print only IP adresses")
(options, args) = parser.parse_args()
verbose = options.verbose
first = ip_str_to_int(args[0] if len(args) > 0 else "192.168.0.1")
last = ip_str_to_int(args[1] if len(args) > 1 else "192.168.0.254")
if verbose:
print "Scanning inactive network addresses from %s to %s" % (
ip_int_to_str(first),
ip_int_to_str(last))
for i in range(num_threads):
worker = Thread(target=pinger, args=(i, queue))
worker.setDaemon(True)
worker.start()
for ip in range(first, last + 1):
queue.put(ip)
queue.join()
for ip in inactive_ips:
if ip:
print ip
ダウン投票後の更新
私のためにnmap -PR 192.168.0.*
働いていなかったので、私はそれを書いた:
Starting Nmap 5.21 ( http://nmap.org ) at 2011-10-06 15:34 EEST
Nmap done: 256 IP addresses (0 hosts up) scanned in 0.03 seconds
更新2
ARPキャッシュに関するすべての問題を修正しました。
これはbashで正しく実行する必要があります。
#!/bin/bash
#setting language variables for subshell making sure we grep for the right word
LC_ALL=C
LANG=C
# retrieve IP from user input
read -p "Input your network (example: 192.168.0): " my_net
for i in $(seq 1 254);
do
ip="$my_net.$i"
check="$(ping -c1 "$ip")"
if [ "$(grep "Unreachable" <<<"$check")" != "" ]
then
echo "$ip is unreachable"
fi
done
もっと簡単だと思う
# my_net define my Net_ID
my_net=192.168.1.
for i in `seq 1 254`;
do
ip="$my_net$i"
ping -c2 $ip | grep "is unreachable" | cut -d" " -f1 &
done
"is unreachable"
か、あなたのためにそれを変更することがgrep -v time
できます