Linux下Python获取IP地址

Linux评论7阅读模式

lnmp一键安装包》中需要获取ip地址,有2种情况:如果服务器只有私网地址没有公网地址,这个时候获取的IP(即私网地址)不能用来判断服务器的位置,于是取其网关地址用来判断服务器在国内还是国外(脚本为了使国内用户快速下载,yum源自动设置成163,这个情况就需要获取网关地址);如果服务器有公网地址,这时获取的IP地址可用来直接判断服务器地理位置。

获取服务器IP,如果有公网地址就取公网地址,没有公网地址就取私网网址

下面是之前我用shell来获取本地IP脚本:

  1. IP=`ifconfig | grep 'inet addr:' | cut -d: -f2 | grep -v ^10\. | grep -v ^192\.168 | grep -v ^172\. | \
  2. grep -v ^127\. | awk '{print  $1}' | awk '{print;exit}'`
  3. [ ! -n "$IP" ] && IP=`ifconfig | grep 'inet addr:' | cut -d: -f2 | grep -v ^127\. | \
  4. awk '{print  $1}' | awk '{print;exit}'`

Python版:get_ipaddr.py

  1. #!/usr/bin/env python
  2. import socket
  3. def Get_local_ip():
  4.     """
  5.     Returns the actual ip of the local machine.
  6.     This code figures out what source address would be used if some traffic
  7.     were to be sent out to some well known address on the Internet. In this
  8.     case, a Google DNS server is used, but the specific address does not
  9.     matter much.  No traffic is actually sent.
  10.     """
  11.     try:
  12.         csock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  13.         csock.connect(('8.8.8.8', 80))
  14.         (addr, port) = csock.getsockname()
  15.         csock.close()
  16.         return addr
  17.     except socket.error:
  18.         return "127.0.0.1"
  19. if __name__ == "__main__":
  20.     IPADDR = Get_local_ip()
  21.     print IPADDR

有公网地址直接获取,没有公网地址就获取网关地址(用于判断IP地址的地理位置):get_public_ipaddr.py

  1. #!/usr/bin/env python
  2. import re,urllib2
  3. class Get_public_ip:
  4.     def getip(self):
  5.         try:
  6.             myip = self.visit("http://ip.chinaz.com/getip.aspx")
  7.         except:
  8.             try:
  9.                 myip = self.visit("http://ipv4.icanhazip.com/")
  10.             except:
  11.                 myip = "So sorry!!!"
  12.         return myip
  13.     def visit(self,url):
  14.         opener = urllib2.urlopen(url)
  15.         if url == opener.geturl():
  16.             str = opener.read()
  17.         return re.search('\d+\.\d+\.\d+\.\d+',str).group(0)
  18. if __name__ == "__main__":
  19.     getmyip = Get_public_ip()
  20.     print getmyip.getip()

判断服务器IP地理位置: get_ipaddr_state.py

  1. #!/usr/bin/env python
  2. #coding:utf-8
  3. try:
  4.     import sys,urllib2,json
  5.     apiurl = "http://ip.taobao.com/service/getIpInfo.php?ip=%s" % sys.argv[1]
  6.     content = urllib2.urlopen(apiurl).read()
  7.     data = json.loads(content)['data']
  8.     code = json.loads(content)['code']
  9.     if code == 0:
  10.         print data['country_id']
  11.     else:
  12.         print data
  13. except:
  14.     print "Usage:%s IP" % sys.argv[0]
Sat Oct 19 22:12:04 CST 2013

 
  • 本文由 yeho 发表于 2013-10-19
  • 转载请务必保留本文链接:https://linuxeye.com/371.html
脚本

腾讯云COS上传、批量删除工具(Python)

腾讯云对象存储COS是类似于阿里云OSS,相比OSS,COS提供每月免费额度:存储空间50G、外网访问流量10G(内网免费)、免费读请求100万次、写请求10万次。对网站备份来说不错,但是,腾讯云提供...
Python多线程抓取代理服务器 Linux

Python多线程抓取代理服务器

Python作为一门功能强大的脚本语言来说,经常被用来写爬虫程序,下面是Python爬虫多线程抓取代理服务器。 年前是用 //linuxeye.com/340.html 来抓取代理服务器的,谁知道过完...
匿名

发表评论

匿名网友
确定

拖动滑块以完成验证