推荐学习书目
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 · Nov 20, 2017 · 6535 views
    This topic created in 3112 days ago, the information mentioned may be changed or developed.

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

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

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

    3 replies    2018-04-07 20:41:40 +08:00
    xpresslink
        1
    xpresslink  
       Nov 22, 2017
    有个 WMI 包可以获取硬件信息
    shamashii
        2
    shamashii  
       Nov 23, 2017
    ifaddr.get_adapters()
    vincentfeng
        3
    vincentfeng  
       Apr 7, 2018
    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
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   869 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 37ms · UTC 20:08 · PVG 04:08 · LAX 13:08 · JFK 16:08
    ♥ Do have faith in what you're doing.