python獲取linux本機IP

#!/usr/bin/env python  
#encoding: utf-8  
#description: get local ip address  
  
import os  
import socket, fcntl, struct  
  
def get_ip():  
    #注意外圍使用雙引號而非單引號,並且假設默認是第一個網卡,特殊環境請適當修改代碼  
    out = os.popen("ifconfig | grep 'inet addr:' | grep -v '127.0.0.1' | cut -d: -f2 | awk '{print $1}' | head -1").read()  
    print out  
  
#另一種方法, 只需要指定網卡接口, 我更傾向於這個方法  
def get_ip2(ifname):  
    s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)  
    return socket.inet_ntoa(fcntl.ioctl(s.fileno(), 0x8915, struct.pack('256s', ifname[:15]))[20:24])  
  
if __name__ == '__main__':  
    get_ip()  
    print get_ip2('eth0')  
    print get_ip2('lo')

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章