File tree 5 files changed +30
-9
lines changed
5 files changed +30
-9
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 >
@@ -410,6 +410,8 @@ var GlobalModalView = React.createClass({
410
410
< div className = 'modal-body' style = { { margin : '5%' , } } >
411
411
412
412
413
+ < Input type = 'text' label = 'ARP Mode' ref = 'arpMode' defaultValue = { obj . arpMode } placeholder = 'ARP Mode' />
414
+
413
415
< Input type = 'text' label = 'Forwarding Mode' ref = 'fwdMode' defaultValue = { obj . fwdMode } placeholder = 'Forwarding Mode' />
414
416
415
417
< Input type = 'text' label = 'name of this block(must be ' global ') ' ref = 'name' defaultValue = { obj . name } placeholder = 'name of this block(must be ' global ') ' / >
Original file line number Diff line number Diff line change @@ -310,6 +310,7 @@ type Global struct {
310
310
// every object has a key
311
311
Key string `json:"key,omitempty"`
312
312
313
+ ArpMode string `json:"arpMode,omitempty"` // ARP Mode
313
314
FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
314
315
Name string `json:"name,omitempty"` // name of this block(must be 'global')
315
316
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
Original file line number Diff line number Diff line change @@ -315,6 +315,7 @@ def createGlobal(self, obj):
315
315
postUrl = self .baseUrl + '/api/v1/globals/' + obj .name + '/'
316
316
317
317
jdata = json .dumps ({
318
+ "arpMode" : obj .arpMode ,
318
319
"fwdMode" : obj .fwdMode ,
319
320
"name" : obj .name ,
320
321
"networkInfraType" : obj .networkInfraType ,
Original file line number Diff line number Diff line change @@ -191,6 +191,7 @@ type Global struct {
191
191
// every object has a key
192
192
Key string `json:"key,omitempty"`
193
193
194
+ ArpMode string `json:"arpMode,omitempty"` // ARP Mode
194
195
FwdMode string `json:"fwdMode,omitempty"` // Forwarding Mode
195
196
Name string `json:"name,omitempty"` // name of this block(must be 'global')
196
197
NetworkInfraType string `json:"networkInfraType,omitempty"` // Network infrastructure type
@@ -3075,6 +3076,15 @@ func ValidateGlobal(obj *Global) error {
3075
3076
3076
3077
// Validate each field
3077
3078
3079
+ if len (obj .ArpMode ) > 64 {
3080
+ return errors .New ("arpMode string too long" )
3081
+ }
3082
+
3083
+ arpModeMatch := regexp .MustCompile ("^(proxy|flood)?$" )
3084
+ if arpModeMatch .MatchString (obj .ArpMode ) == false {
3085
+ return errors .New ("arpMode string invalid format" )
3086
+ }
3087
+
3078
3088
if len (obj .FwdMode ) > 64 {
3079
3089
return errors .New ("fwdMode string too long" )
3080
3090
}
Original file line number Diff line number Diff line change 31
31
"title" : " Allwed vxlan range" ,
32
32
"format" : " ^([0-9]{1,8}?-[0-9]{1,8}?)$"
33
33
},
34
- "fwdMode" : {
35
- "type" : " string" ,
36
- "title" : " Forwarding Mode" ,
37
- "length" : 64 ,
38
- "format" : " ^(bridge|routing)?$" ,
39
- "ShowSummary" : true
40
- }
34
+ "fwdMode" : {
35
+ "type" : " string" ,
36
+ "title" : " Forwarding Mode" ,
37
+ "length" : 64 ,
38
+ "format" : " ^(bridge|routing)?$" ,
39
+ "ShowSummary" : true
40
+ },
41
+ "arpMode" : {
42
+ "type" : " string" ,
43
+ "title" : " ARP Mode" ,
44
+ "length" : 64 ,
45
+ "format" : " ^(proxy|flood)?$" ,
46
+ "ShowSummary" : true
47
+ }
41
48
},
42
49
"operProperties" : {
43
50
"numNetworks" : {
You can’t perform that action at this time.
0 commit comments