Skip to content

Commit 508ec31

Browse files
authored
ip addr range fixes (#29)
1 parent de250b0 commit 508ec31

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

client/contivModelClient.go

+1
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ type NetworkLinks struct {
318318
type NetworkOper struct {
319319
AllocatedAddressesCount int `json:"allocatedAddressesCount,omitempty"` // Vlan/Vxlan Tag
320320
AllocatedIPAddresses string `json:"allocatedIPAddresses,omitempty"` // allocated IP addresses
321+
AvailableIPAddresses string `json:"availableIPAddresses,omitempty"` // Available IP addresses
321322
DnsServerIP string `json:"dnsServerIP,omitempty"` // dns IP for the network
322323
Endpoints []EndpointOper `json:"endpoints,omitempty"`
323324
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag

contivModel.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ type NetworkLinks struct {
192192
type NetworkOper struct {
193193
AllocatedAddressesCount int `json:"allocatedAddressesCount,omitempty"` // Vlan/Vxlan Tag
194194
AllocatedIPAddresses string `json:"allocatedIPAddresses,omitempty"` // allocated IP addresses
195+
AvailableIPAddresses string `json:"availableIPAddresses,omitempty"` // Available IP addresses
195196
DnsServerIP string `json:"dnsServerIP,omitempty"` // dns IP for the network
196197
Endpoints []EndpointOper `json:"endpoints,omitempty"`
197198
ExternalPktTag int `json:"externalPktTag,omitempty"` // external packet tag
@@ -2562,7 +2563,7 @@ func ValidateNetwork(obj *Network) error {
25622563
return errors.New("pktTag Value Out of bound")
25632564
}
25642565

2565-
subnetMatch := regexp.MustCompile("^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$")
2566+
subnetMatch := regexp.MustCompile("^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\-((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3}))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$")
25662567
if subnetMatch.MatchString(obj.Subnet) == false {
25672568
return errors.New("subnet string invalid format")
25682569
}

network.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"subnet": {
4343
"type": "string",
44-
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$",
44+
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\\\-((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3}))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$",
4545
"title": "Subnet",
4646
"showSummary": true
4747
},
@@ -85,6 +85,10 @@
8585
"type": "string",
8686
"title": "allocated IP addresses"
8787
},
88+
"availableIPAddresses": {
89+
"type": "string",
90+
"title": "Available IP addresses"
91+
},
8892
"dnsServerIP": {
8993
"type": "string",
9094
"title": "dns IP for the network"

0 commit comments

Comments
 (0)