On Mon, Jun 06, 2016 at 07:37:51PM +1000, Yuko Katabami wrote: > Hi Eliraz and all, > > I would like to ask for your help with the following question. > > *File: *AppErrors > > *Resource ID: * BAD_CIDR_FORMAT > > > *String: *CIDR bad format, expected: > > x.x.x.x/y where: > > x belongs to [0,255] > > y belongs to [0,32] > > both inclusive > > *Question: *Could you confirm "x belongs to [0,255]" means that x needs to > be replaced with a value within the range between 0 and 255,
Yes, but because it's inclusive 0 and 255 are valid as well. > and "y belongs to [0,32]" means that y needs to be replaced with a value > within the range between 0 and 32? Yes. > Could you also help us understand what "both inclusive" means? It means it includes 0 and 255 or 32. So 0.0.0.0/0 is valid, as is 255.255.255.255/32. CIDR means Classless Inter-Domain Routing, see https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing for more information. _______________________________________________ Devel mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/devel
