[virt-tools-list] [virt-manager PATCH] createnet: enable specify /29 subnet
Chen Hanxiao
chenhanxiao at cn.fujitsu.com
Tue Jun 10 08:21:52 UTC 2014
https://bugzilla.redhat.com/show_bug.cgi?id=1106913
Signed-off-by: Chen Hanxiao <chenhanxiao at cn.fujitsu.com>
---
virtManager/createnet.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/virtManager/createnet.py b/virtManager/createnet.py
index e999392..4731d2e 100644
--- a/virtManager/createnet.py
+++ b/virtManager/createnet.py
@@ -265,9 +265,9 @@ class vmmCreateNetwork(vmmGObjectUI):
return self.err.val_err(_("Invalid Network Address"),
_("The network must be an IPv4 address"))
- if ip.numhosts < 16:
+ if ip.numhosts < 8:
return self.err.val_err(_("Invalid Network Address"),
- _("The network must address at least 16 addresses."))
+ _("The network must address at least 8 addresses."))
if ip.prefixlen < 15:
return self.err.val_err(_("Invalid Network Address"),
@@ -563,7 +563,7 @@ class vmmCreateNetwork(vmmGObjectUI):
src.modify_bg(Gtk.StateType.NORMAL, _red)
return
- valid_ip = (ip.numhosts >= 16 and ip.is_private)
+ valid_ip = (ip.numhosts >= 8 and ip.is_private)
gateway = (ip.prefixlen != 32 and str(ip.network + 1) or "")
info = (ip.is_private and _("Private") or _("Other/Public"))
start = int(ip.numhosts / 2)
--
1.9.0
More information about the virt-tools-list
mailing list