diff options
author | CNlucius <lukai1@huawei.com> | 2016-09-13 11:40:12 +0800 |
---|---|---|
committer | CNlucius <lukai1@huawei.com> | 2016-09-13 11:41:53 +0800 |
commit | b731e2f1dd0972409b136aebc7b463dd72c9cfad (patch) | |
tree | 5107d7d80c19ad8076c2c97c2b5ef8d1cf3ab903 /framework/src/onos/tools/package/config/samples | |
parent | ee93993458266114c29271a481ef9ce7ce621b2a (diff) |
ONOSFW-171
O/S-SFC-ONOS scenario documentation
Change-Id: I51ae1cf736ea24ab6680f8edca1b2bf5dd598365
Signed-off-by: CNlucius <lukai1@huawei.com>
Diffstat (limited to 'framework/src/onos/tools/package/config/samples')
3 files changed, 0 insertions, 126 deletions
diff --git a/framework/src/onos/tools/package/config/samples/component-cfg.json b/framework/src/onos/tools/package/config/samples/component-cfg.json deleted file mode 100644 index f1168e44..00000000 --- a/framework/src/onos/tools/package/config/samples/component-cfg.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "org.onosproject.proxyarp.ProxyArp": { - "ipv6NeighborDiscovery": true - } -}
\ No newline at end of file diff --git a/framework/src/onos/tools/package/config/samples/network-cfg-linkdiscovery.json b/framework/src/onos/tools/package/config/samples/network-cfg-linkdiscovery.json deleted file mode 100644 index fcc805f9..00000000 --- a/framework/src/onos/tools/package/config/samples/network-cfg-linkdiscovery.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "ports": { - "of:0000000000000002/3": { - "linkDiscovery": { - "enabled": false - } - }, - "of:0000000000000002/2": { - "linkDiscovery": { - "enabled": false - } - } - }, - "devices": { - "of:0000000000000001": { - "linkDiscovery": { - "enabled": false - } - } - }, - "apps": { - "org.onosproject.provider.lldp": { - "suppression": { - "deviceTypes": [ - "ROADM" - ], - "annotation": { - "no-lldp": null, - "sendLLDP": "false" - } - } - } - } -} - diff --git a/framework/src/onos/tools/package/config/samples/network-cfg.json b/framework/src/onos/tools/package/config/samples/network-cfg.json deleted file mode 100644 index f6879f07..00000000 --- a/framework/src/onos/tools/package/config/samples/network-cfg.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "ports" : { - "of:0000000000000002/1" : { - "interfaces" : [ - { - "ips" : [ "192.168.10.101/24" ], - "mac" : "08:9e:01:82:38:68", - "vlan" : "100" - } - ] - }, - "of:0000000000000002/2" : { - "interfaces" : [ - { - "ips" : [ "192.168.20.101/24" ], - "mac" : "08:9e:01:82:38:68", - "vlan" : "200" - } - ] - } - }, - "devices" : { - "of:0000000000000002" : { - "segmentrouting" : { - "name" : "Leaf-R1", - "nodeSid" : 101, - "routerIp" : "10.0.1.254", - "routerMac" : "00:00:00:00:01:80", - "isEdgeRouter" : true, - "adjacencySids" : [ - { "adjSids" : 100, "ports" : [2, 3] }, - { "adjSids" : 200, "ports" : [4, 5] } - ] - } - }, - "of:0000000000000191" : { - "segmentrouting" : { - "name" : "Spine-R1", - "nodeSid" : 105, - "routerIp" : "192.168.0.11", - "routerMac" : "00:00:01:00:11:80", - "isEdgeRouter" : false, - "adjacencySids" : [] - } - } - }, - "apps" : { - "org.onosproject.router" : { - "bgp" : { - "bgpSpeakers" : [ - { - "connectPoint" : "of:00000000000000aa/10", - "peers" : [ - "192.168.10.1" - ] - }, - { - "connectPoint" : "of:00000000000000aa/20", - "peers" : [ - "192.168.20.1" - ] - } - ] - } - } - }, - "hosts" : { - "00:00:00:00:00:01/4093": { - "basic": { - "ips": [ - "10.0.1.1" - ], - "location": "of:0000000000000001/3" - } - }, - "00:00:00:00:00:02/4093": { - "basic": { - "ips": [ - "10.0.1.2" - ], - "location": "of:0000000000000001/4" - } - } - } -} - |