File tree 5 files changed +20
-3
lines changed
5 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ var GlobalSummaryView = React.createClass({
378
378
< ModalTrigger modal = { < GlobalModalView global = { global } /> } >
379
379
< tr key = { global . key } className = "info" >
380
380
381
-
381
+
382
382
</ tr >
383
383
</ ModalTrigger >
384
384
) ;
@@ -390,7 +390,7 @@ var GlobalSummaryView = React.createClass({
390
390
< thead >
391
391
< tr >
392
392
393
-
393
+
394
394
</ tr >
395
395
</ thead >
396
396
< tbody >
@@ -418,6 +418,8 @@ var GlobalModalView = React.createClass({
418
418
419
419
< Input type = 'text' label = 'Network infrastructure type' ref = 'networkInfraType' defaultValue = { obj . networkInfraType } placeholder = 'Network infrastructure type' />
420
420
421
+ < Input type = 'text' label = 'Private Subnet used by host bridge' ref = 'pvtSubnet' defaultValue = { obj . pvtSubnet } placeholder = 'Private Subnet used by host bridge' />
422
+
421
423
< Input type = 'text' label = 'Allowed vlan range' ref = 'vlans' defaultValue = { obj . vlans } placeholder = 'Allowed vlan range' />
422
424
423
425
< Input type = 'text' label = 'Allwed vxlan range' ref = 'vxlans' defaultValue = { obj . vxlans } placeholder = 'Allwed vxlan range' />
Original file line number Diff line number Diff line change @@ -393,6 +393,7 @@ type Global struct {
393
393
FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
394
394
Name string `json:"name,omitempty"` // name of this block(must be 'global')
395
395
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
396
+ PvtSubnet string `json:"pvtSubnet,omitempty"` // Private Subnet used by host bridge
396
397
Vlans string `json:"vlans,omitempty"` // Allowed vlan range
397
398
Vxlans string `json:"vxlans,omitempty"` // Allwed vxlan range
398
399
Original file line number Diff line number Diff line change @@ -319,6 +319,7 @@ def createGlobal(self, obj):
319
319
"fwdMode" : obj .fwdMode ,
320
320
"name" : obj .name ,
321
321
"networkInfraType" : obj .networkInfraType ,
322
+ "pvtSubnet" : obj .pvtSubnet ,
322
323
"vlans" : obj .vlans ,
323
324
"vxlans" : obj .vxlans ,
324
325
})
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ type Global struct {
195
195
FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
196
196
Name string `json:"name,omitempty"` // name of this block(must be 'global')
197
197
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
198
+ PvtSubnet string `json:"pvtSubnet,omitempty"` // Private Subnet used by host bridge
198
199
Vlans string `json:"vlans,omitempty"` // Allowed vlan range
199
200
Vxlans string `json:"vxlans,omitempty"` // Allwed vxlan range
200
201
@@ -3112,6 +3113,11 @@ func ValidateGlobal(obj *Global) error {
3112
3113
return errors .New ("networkInfraType string invalid format" )
3113
3114
}
3114
3115
3116
+ pvtSubnetMatch := 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})/16$" )
3117
+ if pvtSubnetMatch .MatchString (obj .PvtSubnet ) == false {
3118
+ return errors .New ("pvtSubnet string invalid format" )
3119
+ }
3120
+
3115
3121
vlansMatch := regexp .MustCompile ("^([0-9]{1,4}?-[0-9]{1,4}?)$" )
3116
3122
if vlansMatch .MatchString (obj .Vlans ) == false {
3117
3123
return errors .New ("vlans string invalid format" )
Original file line number Diff line number Diff line change 44
44
"length" : 64 ,
45
45
"format" : " ^(proxy|flood)?$" ,
46
46
"ShowSummary" : true
47
- }
47
+ },
48
+ "pvtSubnet" : {
49
+ "type" : " string" ,
50
+ "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})/16$" ,
51
+ "title" : " Private Subnet used by host bridge" ,
52
+ "showSummary" : true
53
+ }
54
+
48
55
},
49
56
"operProperties" : {
50
57
"numNetworks" : {
You can’t perform that action at this time.
0 commit comments