首页 > 代码库 > python获取linux本机IP
python获取linux本机IP
1 #!/usr/bin/env python 2 #encoding: utf-8 3 #description: get local ip address 4 5 import os 6 import socket, fcntl, struct 7 8 def get_ip(): 9 #注意外围使用双引号而非单引号,并且假设默认是第一个网卡,特殊环境请适当修改代码 10 out = os.popen("ifconfig | grep ‘inet addr:‘ | grep -v ‘127.0.0.1‘ | cut -d: -f2 | awk ‘{print $1}‘ | head -1").read() 11 print out 12 13 #另一种方法, 只需要指定网卡接口, 我更倾向于这个方法 14 def get_ip2(ifname): 15 s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) 16 return socket.inet_ntoa(fcntl.ioctl(s.fileno(), 0x8915, struct.pack(‘256s‘, ifname[:15]))[20:24]) 17 18 if __name__ == ‘__main__‘: 19 get_ip() 20 print get_ip2(‘eth0‘) 21 print get_ip2(‘lo‘)
python获取linux本机IP
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。