扫描IP段内的使用的IP

扫描IP段内的使用的IP

方法一:命令行

命令行进入

bash 复制代码
for /L %i IN (1,1,254) DO ping -w 1 -n 1 192.168.3.%i
bash 复制代码
arp -a

方法二:python

python 复制代码
from scapy.all import ARP, Ether, srp
import keyboard


def scan_network(ip_range):
    # 创建一个ARP请求包
    arp = ARP(pdst=ip_range)
    ether = Ether(dst="ff:ff:ff:ff:ff:ff")
    packet = ether / arp

    # 发送包并接收响应
    result = srp(packet, timeout=2, verbose=0)[0]

    # 解析响应
    devices = []
    for sent, received in result:
        devices.append({'ip': received.psrc, 'mac': received.hwsrc})

    return devices


if __name__ == "__main__":
    # 指定要扫描的网段
    target_ip_range = str(input("请输入IP(格式:192.168.20.0/23):"))
    # target_ip_range = "192.168.20.0/23"
    active_devices = scan_network(target_ip_range)
    print("Active devices in the network:")
    for device in active_devices:
        print(f"IP: {device['ip']}, MAC: {device['mac']}")
    print("按空格键退出")
    # 检查是否有按键被按下
    while True:
        if keyboard.is_pressed('space'):
            print("Exiting...")
            break

可以用pyinstaller打包成exe来处理,这个比方法一会快一点。

还有优化空间,因为目前是单线程来的

相关推荐
小奥超人21 分钟前
忘记了PDF文件的密码,怎么办?
windows·经验分享·pdf·办公技巧
rr_R_rr2 小时前
处理机调度与死锁
linux·windows·操作系统
目目沐沐4 小时前
过滤器模式
android·java·windows
hmywillstronger8 小时前
【VBA】【EXCEL】整理指定sheet里单元格大于1/500的行列编号到新的sheet中
windows·microsoft·excel
冻感糕人~15 小时前
使用LangChain、CrewAI、AutoGen搭建数据分析Agent
人工智能·windows·ai·数据分析·langchain·大模型·agent
閤廴聿15 小时前
vmware-ubuntu22.04配置虚拟机win10,重新上网成功
linux·windows·ubuntu
秋落风声19 小时前
【数据库篇一: MySQL的安装与配置_Windows】
数据库·windows·mysql·mysql安装教程
dazhong20121 天前
Hadoop 实战笔记(一) -- Windows 安装 Hadoop 3.x
大数据·hadoop·windows
花里胡哨的菜只因1 天前
关于在windows系统中编译ffmpeg并导入到自己项目中这件事
c++·windows·ffmpeg
胡子哥5021 天前
Windows自动化Python pyautogui RPA操作
windows·python·自动化·pyautogui·rpa