为什么无法在python中使用configparser获取本地IP

时间:2017-10-30 04:02:33

标签: python configparser

我运行这个python。一切都很好。

import socket
import sys
def get_local_ip(ifname):
    print type(ifname)
    import fcntl, struct 
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 
    inet = fcntl.ioctl(s.fileno(), 0x8915, struct.pack('256s', ifname[:15])) 
    ret = socket.inet_ntoa(inet[20:24]) 
    return ret 

out put

<type 'str'>
192.168.1.250

但我尝试设置配置文件

这是我的配置文件 socketConfig.conf

[config]
ethname = 'eth0'

这是python代码

import socket
import sys
import configparser
conf = configparser.ConfigParser()
conf.read("socketConfig.conf")


def get_local_ip(ifname):
    print type(ifname)
    import fcntl, struct 
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 
    inet = fcntl.ioctl(s.fileno(), 0x8915, struct.pack('256s', ifname[:15])) 
    ret = socket.inet_ntoa(inet[20:24]) 
    return ret

eth = conf.get('config', 'ethname').encode('utf-8')
print get_local_ip(eth)

然后输出这些错误

<type 'str'>
Traceback (most recent call last):
  File "socketClient.py", line 28, in <module>
    print get_local_ip(eth)
  File "socketClient.py", line 23, in get_local_ip
    inet = fcntl.ioctl(s.fileno(), 0x8915, struct.pack('256s', ifname[:15]))
IOError: [Errno 19] No such device

有谁知道发生了什么事?谢谢。

1 个答案:

答案 0 :(得分:1)

报价作为配置选项的一部分被选中。

您的配置文件应如下所示;

[config]
ethname = eth0

请注意省略引号。