Commit 874f11bc authored by Marco Mariani's avatar Marco Mariani

Revert "Use conf.ipv4_local_network as netmask of new ipv4 address."

This reverts commit 580ab267.
parent 59ed5ce2
......@@ -844,8 +844,8 @@ class Interface(object):
def addIPv4LocalAddress(self, addr=None):
"""Adds local IPv4 address in ipv4_local_network"""
netmask = self.ipv4_local_network if sys.platform == 'cygwin' \
else '255.255.255.255'
netmask = '255.255.255.254' if sys.platform == 'cygwin' \
else '255.255.255.255'
local_address_list = self.getIPv4LocalAddressList()
if addr is None:
return self._generateRandomIPv4Address(netmask)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment