公网与私有网络的判断其实十分简单,只要记住私有网络的三个网段。不过,对于记性不好的人或者学识不是很高的机器来说,有一种判断方法还是有必要的。
写如下脚本:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
ip1 = IP( '192.168.1.2' )
ip2 = IP( '11.12.13.14' )
print ( "ip1 type: %s" % ip1.iptype())
print ( "ip2 type: %s" % ip2.iptype())
print ( "ip2 int value: %d" % ip2. int ())
print ( "ip2 hex value: %s" % ip2.strHex())
print ( "ip2 bin value: %s" % ip2.strBin())
print ( "IP for 0x1234567: %s" % IP( 0x1234567 ))
|
运行结果如下:
1
2
3
4
5
6
7
8
9
10
11
|
ip1 type : PRIVATE
ip2 type : PUBLIC
ip2 int value: 185339150
ip2 hex value: 0xb0c0d0e
ip2 bin value: 00001011000011000000110100001110
IP for 0x1234567 : 1.35 . 69.103
|
从上面的结果可以看出:
1、ip1位私有地址;
2、ip2是公网地址;
3、IP的不同类型可以进行*转换;
以上这篇使用Python获取并处理IP的类型及格式方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/grey_csdn/article/details/70195504