当前位置:   article > 正文

Python获取网络适配器接口的类型、状态IPv4和IPv6地址_python ipv4interface

python ipv4interface

参考CSDN博主「Kwoky」的https://blog.csdn.net/Kwoky/article/details/84858997的简介:
psutil是一个跨平台库(http://pythonhosted.org/psutil/)能够轻松实现获取系统运行的进程和系统利用率(包括CPU、内存、磁盘、网络等)信息。它主要用来做系统监控,性能分析,进程管理。它实现了同等命令行工具提供的功能,如ps、top、lsof、netstat、ifconfig、who、df、kill、free、nice、ionice、iostat、iotop、uptime、pidof、tty、taskset、pmap等。目前支持32位和64位的Linux、Windows、OS X、FreeBSD和Sun Solaris等操作系统.

import socket
import psutil

def classify_ip_by_network_type():
    ip_info = {}

    # 获取所有网络接口信息
    network_interfaces = psutil.net_if_addrs()

    for interface, addresses in network_interfaces.items():
        for address in addresses:
            # 检查是否为IPv4地址
            if address.family == socket.AF_INET:
            #检查是否为IPv6地址
            #if address.family == psutil.AF_LINK:
                # print(address.family)
                ip = address.address
                network_type = psutil.net_if_stats()[interface].isup

                if network_type:
                    network_type = "Up"  # 网络接口处于活动状态
                else:
                    network_type = "Down"  # 网络接口处于非活动状态

                if network_type not in ip_info:
                    ip_info[network_type] = []

                ip_info[network_type].append((interface, ip))

    return ip_info


# 获取IP地址和对应的网络接口类型
ip_info = classify_ip_by_network_type()

for network_type, ip_list in ip_info.items():
    print(f"网络接口状态: {network_type}")
    for interface, ip in ip_list:
        print(f"网络接口: {interface}, IP地址: {ip}")

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

运行结果

网络接口类型: Up
网络接口: 以太网, IP地址: 10.12.135.74
网络接口: VMware Network Adapter VMnet1, IP地址: 192.168.189.1
网络接口: VMware Network Adapter VMnet8, IP地址: 192.168.199.1
网络接口: vEthernet (Default Switch), IP地址: 172.26.160.1
网络接口: Loopback Pseudo-Interface 1, IP地址: 127.0.0.1
网络接口类型: Down
网络接口: WLAN, IP地址: 169.254.72.113
网络接口: 本地连接* 9, IP地址: 169.254.208.9
网络接口: 本地连接* 10, IP地址: 169.254.118.33
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/628345
推荐阅读
相关标签
  

闽ICP备14008679号