最近寫後台業務邏輯,要用到獲取本機ip位址的方法,記錄兩個python的實現方式:
import socket
import struct
import fcntl
import commands
def getlocalip():
status,output=commands.getstatusoutput(
"hostname -i"
)if status :
return '127.0.0.1'
else
:return output
def getip(ethname)
:s=socket.socket(socket.af_inet, socket.sock_dgram)
return socket.inet_ntoa(fcntl.ioctl(s.fileno(
), 0x8915,
struct
.pack(
'256s'
, ethname[
:15]))
[20:24]
)if __name__=
='__main__'
:print "getip :"
, getip(
'eth0'
)print "getlocalip :"
, getlocalip()
注意 本案例中 我寫的是 eth0 , 如果是生產環境做了網絡卡繫結的話 需要使用 getip(bond0
)
執行結果
[yangyidba@
rac3 10:31:12 ~]
$ python getip.py
getip : 10.10.15.12
getlocalip : 10.10.15.12
還有shell 的實現方式, 可以使用 以下shell 方式 替代python 實現中的 hostname -i :
host `hostname -
-fqdn` 2>
/dev/null | awk ''
10.10.15.12
ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk ''
|tr -d "addr:"
10.10.15.12
ifconfig|grep -v "127.0.0.1"
| sed -n '/inet addr/s/^[^:]*:\([0-9.]\\) .*/\1/p'
10.10.15.12
Python 獲取主機ip的方式
最近寫後台業務邏輯,要用到獲取本機ip位址的方法,記錄兩個python的實現方式 import socket import struct import fcntl import commands def getlocalip status,output commands.getstatusoutpu...
獲取訪問的主機IP
在 asp中使用 request.servervariables remote addr 來取得客戶端的 ip位址,但如果客戶端是使用 伺服器來訪問,那取到的就是 伺服器的 ip位址,而不是真正的客戶端 ip位址。要想透過 伺服器取得客戶端的真實 ip位址,就要使用 來讀取。不過要注意的事,並不是每...
Python獲取IP的方式與意義
使用 http x forwarded for 獲取到的ip位址,有以下幾種情況。沒有使用 伺服器 remote addr 您的 ip http via 沒數值或不顯示 http x forwarded for 無數值或不顯示 使用透明 伺服器 transparent proxies remote ...