blob: dc448a94a646cfe9f14e4869b84846bbe3b49a71 [file] [log] [blame]
Matteo Scandolo1c92dac2018-11-05 17:30:58 -08001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Matteo Scandolob9a27ef2018-11-13 10:51:40 -080015# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @bbsim-2.yaml http://10.90.0.120:30007/run
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080016
17tosca_definitions_version: tosca_simple_yaml_1_0
18imports:
19 - custom_types/oltdevice.yaml
20 - custom_types/onudevice.yaml
21 - custom_types/voltservice.yaml
22 - custom_types/bngportmapping.yaml
23 - custom_types/attworkflowdriverwhitelistentry.yaml
24 - custom_types/attworkflowdriverservice.yaml
25 - custom_types/rcordsubscriber.yaml
26 - custom_types/serviceinstanceattribute.yaml
27 - custom_types/onosapp.yaml
28description: Create a simulated OLT Device in VOLTHA
29topology_template:
30 node_templates:
31
32 service#volt:
33 type: tosca.nodes.VOLTService
34 properties:
35 name: volt
36 must-exist: true
37
38 olt_device:
39 type: tosca.nodes.OLTDevice
40 properties:
41 name: BBSIM_OLT
42 device_type: bbsimolt
43 host: bbsim.voltha.svc
44 port: 50060
45 switch_datapath_id: of:0000000000000002
46 switch_port: "3"
47 outer_tpid: "0x8100"
48 uplink: "65536"
49 nas_id: "NAS_ID"
50 serial_number: "bbsim.voltha.svc:50060"
51 requirements:
52 - volt_service:
53 node: service#volt
54 relationship: tosca.relationships.BelongsToOne
55
Matteo Scandolob9a27ef2018-11-13 10:51:40 -080056 # map the BNG to a port
57 # this is not really used by BBSIM as there's no data-plane traffic,
58 # but it's required by NEM to configure the crossconnect
59 bngmapping:
60 type: tosca.nodes.BNGPortMapping
61 properties:
62 s_tag: any
63 switch_port: 1
64
65 # DHCP L2 Relay config
66 onos_app#dhcpl2relay:
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080067 type: tosca.nodes.ONOSApp
68 properties:
Matteo Scandolob9a27ef2018-11-13 10:51:40 -080069 name: dhcpl2relay
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080070 must-exist: true
71
Matteo Scandolob9a27ef2018-11-13 10:51:40 -080072 dhcpl2relay-config-attr:
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080073 type: tosca.nodes.ServiceInstanceAttribute
74 properties:
Matteo Scandolob9a27ef2018-11-13 10:51:40 -080075 name: /onos/v1/network/configuration/apps/org.opencord.dhcpl2relay
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080076 value: >
77 {
Matteo Scandolob9a27ef2018-11-13 10:51:40 -080078 "dhcpl2relay" : {
79 "useOltUplinkForServerPktInOut" : true
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080080 }
81 }
82 requirements:
83 - service_instance:
Matteo Scandolob9a27ef2018-11-13 10:51:40 -080084 node: onos_app#dhcpl2relay
Matteo Scandolo1c92dac2018-11-05 17:30:58 -080085 relationship: tosca.relationships.BelongsToOne
86
87 # Whitelist
88 service#att:
89 type: tosca.nodes.AttWorkflowDriverService
90 properties:
91 name: att-workflow-driver
92 must-exist: true
93
94 BBSM00000100:
95 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
96 properties:
97 serial_number: BBSM00000100
98 pon_port_id: 536870913
99 device_id: of:0000000000000012
100 requirements:
101 - owner:
102 node: service#att
103 relationship: tosca.relationships.BelongsToOne
104
105 BBSM00000101:
106 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
107 properties:
108 serial_number: BBSM00000101
109 pon_port_id: 536870913
110 device_id: of:0000000000000012
111 requirements:
112 - owner:
113 node: service#att
114 relationship: tosca.relationships.BelongsToOne
115
116 # Pre-provision the subscriber
117 bbsim_subscriber_0:
118 type: tosca.nodes.RCORDSubscriber
119 properties:
120 name: Sub_BBSM00000100
121 status: pre-provisioned
122 c_tag: 900
123 s_tag: 999
124 onu_device: BBSM00000100
125
126 bbsim_subscriber_1:
127 type: tosca.nodes.RCORDSubscriber
128 properties:
129 name: Sub_BBSM00000101
130 status: pre-provisioned
131 c_tag: 901
132 s_tag: 999
133 onu_device: BBSM00000101