Skip to content

Commit b1378f4

Browse files
gkvijayshaleman
authored andcommitted
Added ipv6 subnet and gateway (#18)
* Added ipv6 subnet and gateway * Added ipv6 subnet and gateway * Revert "Added ipv6 subnet and gateway" This reverts commit 7a559fe3454466d0000d260a92a8262198ab25a6. * Added format field for IPv6 subnet and gateway * committing the generated file for filter change
1 parent 1d248ed commit b1378f4

5 files changed

+38
-0
lines changed

client/contivModel.js

+10
Original file line numberDiff line numberDiff line change
@@ -280,6 +280,10 @@ var NetworkSummaryView = React.createClass({
280280

281281
<td>{ network.gateway }</td>
282282

283+
<td>{ network.ipv6Gateway }</td>
284+
285+
<td>{ network.ipv6Subnet }</td>
286+
283287
<td>{ network.networkName }</td>
284288

285289
<td>{ network.nwType }</td>
@@ -302,6 +306,8 @@ var NetworkSummaryView = React.createClass({
302306

303307
<th> Encapsulation </th>
304308
<th> Gateway </th>
309+
<th> IPv6Gateway </th>
310+
<th> IPv6Subnet </th>
305311
<th> Network name </th>
306312
<th> Network Type </th>
307313
<th> Vlan/Vxlan Tag </th>
@@ -329,6 +335,10 @@ var NetworkModalView = React.createClass({
329335

330336
<Input type='text' label='Gateway' ref='gateway' defaultValue={obj.gateway} placeholder='Gateway' />
331337

338+
<Input type='text' label='IPv6Gateway' ref='ipv6Gateway' defaultValue={obj.ipv6Gateway} placeholder='IPv6Gateway' />
339+
340+
<Input type='text' label='IPv6Subnet' ref='ipv6Subnet' defaultValue={obj.ipv6Subnet} placeholder='IPv6Subnet' />
341+
332342
<Input type='text' label='Network name' ref='networkName' defaultValue={obj.networkName} placeholder='Network name' />
333343

334344
<Input type='text' label='Network Type' ref='nwType' defaultValue={obj.nwType} placeholder='Network Type' />

client/contivModelClient.go

+2
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,8 @@ type Network struct {
224224

225225
Encap string `json:"encap,omitempty"` // Encapsulation
226226
Gateway string `json:"gateway,omitempty"` // Gateway
227+
Ipv6Gateway string `json:"ipv6Gateway,omitempty"` // IPv6Gateway
228+
Ipv6Subnet string `json:"ipv6Subnet,omitempty"` // IPv6Subnet
227229
NetworkName string `json:"networkName,omitempty"` // Network name
228230
NwType string `json:"nwType,omitempty"` // Network Type
229231
PktTag int `json:"pktTag,omitempty"` // Vlan/Vxlan Tag

client/contivModelClient.py

+2
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,8 @@ def createNetwork(self, obj):
217217
jdata = json.dumps({
218218
"encap": obj.encap,
219219
"gateway": obj.gateway,
220+
"ipv6Gateway": obj.ipv6Gateway,
221+
"ipv6Subnet": obj.ipv6Subnet,
220222
"networkName": obj.networkName,
221223
"pktTag": obj.pktTag,
222224
"subnet": obj.subnet,

contivModel.go

+12
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ type Network struct {
9393

9494
Encap string `json:"encap,omitempty"` // Encapsulation
9595
Gateway string `json:"gateway,omitempty"` // Gateway
96+
Ipv6Gateway string `json:"ipv6Gateway,omitempty"` // IPv6Gateway
97+
Ipv6Subnet string `json:"ipv6Subnet,omitempty"` // IPv6Subnet
9698
NetworkName string `json:"networkName,omitempty"` // Network name
9799
NwType string `json:"nwType,omitempty"` // Network Type
98100
PktTag int `json:"pktTag,omitempty"` // Vlan/Vxlan Tag
@@ -1870,6 +1872,16 @@ func ValidateNetwork(obj *Network) error {
18701872
return errors.New("gateway string invalid format")
18711873
}
18721874

1875+
ipv6GatewayMatch := regexp.MustCompile("^(((([0-9]|[a-f]|[A-F]){1,4})((\\:([0-9]|[a-f]|[A-F]){1,4}){7}))|(((([0-9]|[a-f]|[A-F]){1,4}\\:){0,6}|\\:)((\\:([0-9]|[a-f]|[A-F]){1,4}){0,6}|\\:)))?$")
1876+
if ipv6GatewayMatch.MatchString(obj.Ipv6Gateway) == false {
1877+
return errors.New("ipv6Gateway string invalid format")
1878+
}
1879+
1880+
ipv6SubnetMatch := regexp.MustCompile("^((((([0-9]|[a-f]|[A-F]){1,4})((\\:([0-9]|[a-f]|[A-F]){1,4}){7}))|(((([0-9]|[a-f]|[A-F]){1,4}\\:){0,6}|\\:)((\\:([0-9]|[a-f]|[A-F]){1,4}){0,6}|\\:)))/(1[0-2][0-7]|[1-9][0-9]|[1-9]))$")
1881+
if ipv6SubnetMatch.MatchString(obj.Ipv6Subnet) == false {
1882+
return errors.New("ipv6Subnet string invalid format")
1883+
}
1884+
18731885
if len(obj.NetworkName) > 64 {
18741886
return errors.New("networkName string too long")
18751887
}

network.json

+12
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,18 @@
4646
"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})?$",
4747
"title": "Gateway",
4848
"showSummary": true
49+
},
50+
"ipv6Subnet": {
51+
"type": "string",
52+
"format": "^((((([0-9]|[a-f]|[A-F]){1,4})((\\\\:([0-9]|[a-f]|[A-F]){1,4}){7}))|(((([0-9]|[a-f]|[A-F]){1,4}\\\\:){0,6}|\\\\:)((\\\\:([0-9]|[a-f]|[A-F]){1,4}){0,6}|\\\\:)))/(1[0-2][0-7]|[1-9][0-9]|[1-9]))$",
53+
"title": "IPv6Subnet",
54+
"showSummary": true
55+
},
56+
"ipv6Gateway": {
57+
"type": "string",
58+
"format": "^(((([0-9]|[a-f]|[A-F]){1,4})((\\\\:([0-9]|[a-f]|[A-F]){1,4}){7}))|(((([0-9]|[a-f]|[A-F]){1,4}\\\\:){0,6}|\\\\:)((\\\\:([0-9]|[a-f]|[A-F]){1,4}){0,6}|\\\\:)))?$",
59+
"title": "IPv6Gateway",
60+
"showSummary": true
4961
}
5062
},
5163
"link-sets": {

0 commit comments

Comments
 (0)