python收集linux IP地址和mac地址
时间: 2023-09-09 12:08:07 浏览: 147
你可以使用 Python 中的 `socket` 和 `subprocess` 模块来收集 Linux 系统上的 IP 地址和 MAC 地址。以下是一个示例代码:
```python
import socket
import subprocess
# 获取主机名
host_name = socket.gethostname()
# 获取 IP 地址
ip_address = socket.gethostbyname(host_name)
# 获取所有网络接口信息
ifconfig_result = subprocess.run(['ifconfig'], stdout=subprocess.PIPE).stdout.decode('utf-8')
# 解析出每个网络接口的 IP 地址和 MAC 地址
interface_info = {}
for line in ifconfig_result.split('\n'):
if line.startswith(' '):
# 处理多行输出的情况
interface_info[interface_name]['output'].append(line.strip())
continue
if ':' in line:
# 解析出网络接口名称和 MAC 地址
parts = line.split()
interface_name = parts[0].strip(':')
mac_address = parts[1]
interface_info[interface_name] = {'mac_address': mac_address, 'output': [line.strip()]}
else:
interface_name = None
# 输出结果
print('Hostname:', host_name)
print('IP address:', ip_address)
for interface_name, info in interface_info.items():
print('Interface:', interface_name)
print(' MAC address:', info['mac_address'])
print(' Output:')
for line in info['output']:
print(' ', line)
```
这段代码可以输出主机名、主机的默认 IP 地址,以及每个网络接口的 IP 地址和 MAC 地址。注意,如果一个网络接口有多个 IP 地址,这段代码只会输出其中的一个 IP 地址。如果需要获取所有 IP 地址,需要对代码进行相应的修改。
阅读全文