Add OVS and Ryu Services to CORE for SDN support
This commit is contained in:
parent
b37d1d52fa
commit
46baca85d9
13 changed files with 146 additions and 63 deletions
|
@ -2716,7 +2716,7 @@ proc sendNodeTypeInfo { sock reset } {
|
|||
set typesinuse ""
|
||||
foreach node $node_list {
|
||||
set type [nodeType $node]
|
||||
if { $type != "router" } { continue }
|
||||
if { $type != "router" && $type != "OVS" } { continue }
|
||||
set model [getNodeModel $node]
|
||||
if { [lsearch $typesinuse $model] < 0 } { lappend typesinuse $model }
|
||||
}
|
||||
|
@ -2920,6 +2920,7 @@ proc getNodeTypeAPI { node } {
|
|||
router { return 0x0 }
|
||||
netns { return 0x0 }
|
||||
jail { return 0x0 }
|
||||
OVS { return 0x0 }
|
||||
physical { return 0x1 }
|
||||
xen { return 0x2 }
|
||||
tbd { return 0x3 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue