V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
ttxxyy112233
V2EX  ›  Python

在 windows 下如何使用 Python 获得网卡名字

  •  
  •   ttxxyy112233 · 2017-11-20 16:44:20 +08:00 · 5421 次点击
    这是一个创建于 2320 天前的主题,其中的信息可能已经有所发展或是发生改变。

    在 python 下想用 scapy,里面 iface 需要网卡名字,通过函数 show_interfaces()可以得到如下:

    INDEX IFACE
    11 VMware Virtual Ethernet Adapter for VMnet0
    13 Killer E2200 Gigabit Ethernet Controller

    那么有没有办法直接得到网卡名字的 list?

    3 条回复    2018-04-07 20:41:40 +08:00
    xpresslink
        1
    xpresslink  
       2017-11-22 15:37:52 +08:00
    有个 WMI 包可以获取硬件信息
    shamashii
        2
    shamashii  
       2017-11-23 13:26:20 +08:00
    ifaddr.get_adapters()
    vincentfeng
        3
    vincentfeng  
       2018-04-07 20:41:40 +08:00
    def get_netcard():
    netcard_info = []
    info = psutil.net_if_addrs()
    for k, v in info.items():
    for item in v:
    if item[0] == 2 and not item[1] == '127.0.0.1':
    netcard_info.append(k)
    return netcard_info
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1266 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 23ms · UTC 17:51 · PVG 01:51 · LAX 10:51 · JFK 13:51
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.