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')