How to convert a CIDR prefix to a dotted-quad netmask in Python?

十年热恋 提交于 2019-12-21 05:01:14

问题


How can I convert a CIDR prefix to a dotted-quad netmask in Python?

For example, if the prefix is 12 I need to return 255.240.0.0.


回答1:


You can do it like this:

def cidr(prefix):
    return socket.inet_ntoa(struct.pack(">I", (0xffffffff << (32 - prefix)) & 0xffffffff))



回答2:


Here is a solution on the lighter side (no module dependencies):

netmask = '.'.join([str((0xffffffff << (32 - len) >> i) & 0xff)
                    for i in [24, 16, 8, 0]])



回答3:


And this is a more efficient one:

netmask = 0xFFFFFFFF & (2**(32-len)-1)

or, if you have difficulties counting the number of F:

netmask = (2**32-1) & ~ (2 ** (32-len)-1)

and now a possibly even more efficient (albeit more difficult to read):

netmask = (1<<32)-1 & ~ ((1 << (32-len))-1)

To get the dotted.quad version of the mask, you can use inet.ntoa to convert the above netmask.
Note: for uniformity with other message, I used 'len' as the mask length, even if I do not like to use a function name as variable name.



来源:https://stackoverflow.com/questions/23352028/how-to-convert-a-cidr-prefix-to-a-dotted-quad-netmask-in-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!