blob: 5c452db73d2e846586ad0b54888fceaf83a00518 [file] [log] [blame]
Matteo Scandolobd312ce2019-06-07 10:37:25 -07001# 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
15# Example TOSCA to create a BBSim OLT and 16 ONUs with SiaB
16# Load into xos-tosca with:
17# curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @bbsim-16.yaml http://127.0.0.1:30007/run
18
19tosca_definitions_version: tosca_simple_yaml_1_0
20imports:
21 - custom_types/voltservice.yaml
22 - custom_types/oltdevice.yaml
23 - custom_types/onudevice.yaml
24 - custom_types/attworkflowdriverservice.yaml
25 - custom_types/attworkflowdriverwhitelistentry.yaml
26 - custom_types/rcordsubscriber.yaml
27 - custom_types/bandwidthprofile.yaml
28
29description: Create a simulated OLT Device in VOLTHA
30topology_template:
31 node_templates:
32
33 # Bronze bandwidthprofile for subscriber
34 bronze_bp:
35 type: tosca.nodes.BandwidthProfile
36 properties:
37 air: 99999
38 cbs: 99999
39 cir: 99999
40 ebs: 99999
41 eir: 99999
42 name: Bronze
43
44 service#volt:
45 type: tosca.nodes.VOLTService
46 properties:
47 name: volt
48 must-exist: true
49
50 olt_device:
51 type: tosca.nodes.OLTDevice
52 properties:
53 name: BBSIM_OLT
54 device_type: openolt
55 host: bbsim.voltha.svc
56 port: 50060
57 switch_datapath_id: of:0000000000000002
58 switch_port: "3"
59 outer_tpid: "0x8100"
60 uplink: "65536"
61 nas_id: "NAS_ID"
Kailashda9395b2019-07-03 11:21:28 -070062 serial_number: "BBSIMOLT000"
Matteo Scandolo81b384a2019-06-21 11:46:10 -070063 technology: xgspon
Matteo Scandolobd312ce2019-06-07 10:37:25 -070064 requirements:
65 - volt_service:
66 node: service#volt
67 relationship: tosca.relationships.BelongsToOne
68
69 # Whitelist
70 service#att:
71 type: tosca.nodes.AttWorkflowDriverService
72 properties:
73 name: att-workflow-driver
74 must-exist: true
75
Matteo Scandolo81b384a2019-06-21 11:46:10 -070076 BBSM00000001:
Matteo Scandolobd312ce2019-06-07 10:37:25 -070077 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
78 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -070079 serial_number: BBSM00000001
80 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -070081 device_id: of:0000626273696d76
82 requirements:
83 - owner:
84 node: service#att
85 relationship: tosca.relationships.BelongsToOne
86
Matteo Scandolo81b384a2019-06-21 11:46:10 -070087 BBSM00000002:
Matteo Scandolobd312ce2019-06-07 10:37:25 -070088 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
89 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -070090 serial_number: BBSM00000002
91 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -070092 device_id: of:0000626273696d76
93 requirements:
94 - owner:
95 node: service#att
96 relationship: tosca.relationships.BelongsToOne
97
Matteo Scandolo81b384a2019-06-21 11:46:10 -070098 BBSM00000003:
Matteo Scandolobd312ce2019-06-07 10:37:25 -070099 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
100 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700101 serial_number: BBSM00000003
102 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700103 device_id: of:0000626273696d76
104 requirements:
105 - owner:
106 node: service#att
107 relationship: tosca.relationships.BelongsToOne
108
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700109 BBSM00000004:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700110 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
111 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700112 serial_number: BBSM00000004
113 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700114 device_id: of:0000626273696d76
115 requirements:
116 - owner:
117 node: service#att
118 relationship: tosca.relationships.BelongsToOne
119
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700120 BBSM00000005:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700121 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
122 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700123 serial_number: BBSM00000005
124 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700125 device_id: of:0000626273696d76
126 requirements:
127 - owner:
128 node: service#att
129 relationship: tosca.relationships.BelongsToOne
130
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700131 BBSM00000006:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700132 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
133 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700134 serial_number: BBSM00000006
135 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700136 device_id: of:0000626273696d76
137 requirements:
138 - owner:
139 node: service#att
140 relationship: tosca.relationships.BelongsToOne
141
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700142 BBSM00000007:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700143 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
144 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700145 serial_number: BBSM00000007
146 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700147 device_id: of:0000626273696d76
148 requirements:
149 - owner:
150 node: service#att
151 relationship: tosca.relationships.BelongsToOne
152
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700153 BBSM00000008:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700154 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
155 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700156 serial_number: BBSM00000008
157 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700158 device_id: of:0000626273696d76
159 requirements:
160 - owner:
161 node: service#att
162 relationship: tosca.relationships.BelongsToOne
163
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700164 BBSM00000009:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700165 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
166 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700167 serial_number: BBSM00000009
168 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700169 device_id: of:0000626273696d76
170 requirements:
171 - owner:
172 node: service#att
173 relationship: tosca.relationships.BelongsToOne
174
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700175 BBSM0000000a:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700176 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
177 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700178 serial_number: BBSM0000000a
179 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700180 device_id: of:0000626273696d76
181 requirements:
182 - owner:
183 node: service#att
184 relationship: tosca.relationships.BelongsToOne
185
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700186 BBSM0000000b:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700187 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
188 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700189 serial_number: BBSM0000000b
190 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700191 device_id: of:0000626273696d76
192 requirements:
193 - owner:
194 node: service#att
195 relationship: tosca.relationships.BelongsToOne
196
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700197 BBSM0000000c:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700198 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
199 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700200 serial_number: BBSM0000000c
201 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700202 device_id: of:0000626273696d76
203 requirements:
204 - owner:
205 node: service#att
206 relationship: tosca.relationships.BelongsToOne
207
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700208 BBSM0000000d:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700209 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
210 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700211 serial_number: BBSM0000000d
212 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700213 device_id: of:0000626273696d76
214 requirements:
215 - owner:
216 node: service#att
217 relationship: tosca.relationships.BelongsToOne
218
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700219 BBSM0000000e:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700220 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
221 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700222 serial_number: BBSM0000000e
223 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700224 device_id: of:0000626273696d76
225 requirements:
226 - owner:
227 node: service#att
228 relationship: tosca.relationships.BelongsToOne
229
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700230 BBSM0000000f:
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700231 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
232 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700233 serial_number: BBSM0000000f
234 pon_port_id: 536870912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700235 device_id: of:0000626273696d76
236 requirements:
237 - owner:
238 node: service#att
239 relationship: tosca.relationships.BelongsToOne
240
Kailashae4e19c2019-06-26 13:39:38 -0700241 BBSM00000010:
242 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700243 properties:
Kailashae4e19c2019-06-26 13:39:38 -0700244 serial_number: BBSM00000010
245 pon_port_id: 536870912
246 device_id: of:0000626273696d76
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700247 requirements:
Kailashae4e19c2019-06-26 13:39:38 -0700248 - owner:
249 node: service#att
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700250 relationship: tosca.relationships.BelongsToOne
251
Kailashae4e19c2019-06-26 13:39:38 -0700252 # Pre-provision the subscriber
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700253 bbsim_subscriber_1:
254 type: tosca.nodes.RCORDSubscriber
255 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700256 name: Sub_BBSM00000001
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700257 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700258 c_tag: 900
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700259 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700260 onu_device: BBSM00000001
Kailashae4e19c2019-06-26 13:39:38 -0700261 circuit_id: circuit01
262 remote_id: remote01
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700263 nas_port_id: PON 2/1/01/1:1.1.1
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700264 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700265 requirements:
266 - upstream_bps:
267 node: bronze_bp
268 relationship: tosca.relationships.BelongsToOne
269 - downstream_bps:
270 node: bronze_bp
271 relationship: tosca.relationships.BelongsToOne
272
273 bbsim_subscriber_2:
274 type: tosca.nodes.RCORDSubscriber
275 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700276 name: Sub_BBSM00000002
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700277 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700278 c_tag: 901
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700279 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700280 onu_device: BBSM00000002
Kailashae4e19c2019-06-26 13:39:38 -0700281 circuit_id: circuit02
282 remote_id: remote02
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700283 nas_port_id: PON 2/1/01/1:1.1.2
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700284 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700285 requirements:
286 - upstream_bps:
287 node: bronze_bp
288 relationship: tosca.relationships.BelongsToOne
289 - downstream_bps:
290 node: bronze_bp
291 relationship: tosca.relationships.BelongsToOne
292
293 bbsim_subscriber_3:
294 type: tosca.nodes.RCORDSubscriber
295 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700296 name: Sub_BBSM00000003
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700297 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700298 c_tag: 902
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700299 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700300 onu_device: BBSM00000003
Kailashae4e19c2019-06-26 13:39:38 -0700301 circuit_id: circuit03
302 remote_id: remote03
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700303 nas_port_id: PON 2/1/01/1:1.1.3
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700304 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700305 requirements:
306 - upstream_bps:
307 node: bronze_bp
308 relationship: tosca.relationships.BelongsToOne
309 - downstream_bps:
310 node: bronze_bp
311 relationship: tosca.relationships.BelongsToOne
312
313 bbsim_subscriber_4:
314 type: tosca.nodes.RCORDSubscriber
315 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700316 name: Sub_BBSM00000004
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700317 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700318 c_tag: 903
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700319 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700320 onu_device: BBSM00000004
Kailashae4e19c2019-06-26 13:39:38 -0700321 circuit_id: circuit04
322 remote_id: remote04
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700323 nas_port_id: PON 2/1/01/1:1.1.4
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700324 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700325 requirements:
326 - upstream_bps:
327 node: bronze_bp
328 relationship: tosca.relationships.BelongsToOne
329 - downstream_bps:
330 node: bronze_bp
331 relationship: tosca.relationships.BelongsToOne
332
333 bbsim_subscriber_5:
334 type: tosca.nodes.RCORDSubscriber
335 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700336 name: Sub_BBSM00000005
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700337 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700338 c_tag: 904
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700339 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700340 onu_device: BBSM00000005
Kailashae4e19c2019-06-26 13:39:38 -0700341 circuit_id: circuit05
342 remote_id: remote05
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700343 nas_port_id: PON 2/1/01/1:1.1.5
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700344 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700345 requirements:
346 - upstream_bps:
347 node: bronze_bp
348 relationship: tosca.relationships.BelongsToOne
349 - downstream_bps:
350 node: bronze_bp
351 relationship: tosca.relationships.BelongsToOne
352
353 bbsim_subscriber_6:
354 type: tosca.nodes.RCORDSubscriber
355 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700356 name: Sub_BBSM00000006
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700357 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700358 c_tag: 905
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700359 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700360 onu_device: BBSM00000006
Kailashae4e19c2019-06-26 13:39:38 -0700361 circuit_id: circuit06
362 remote_id: remote06
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700363 nas_port_id: PON 2/1/01/1:1.1.6
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700364 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700365 requirements:
366 - upstream_bps:
367 node: bronze_bp
368 relationship: tosca.relationships.BelongsToOne
369 - downstream_bps:
370 node: bronze_bp
371 relationship: tosca.relationships.BelongsToOne
372
373 bbsim_subscriber_7:
374 type: tosca.nodes.RCORDSubscriber
375 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700376 name: Sub_BBSM00000007
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700377 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700378 c_tag: 906
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700379 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700380 onu_device: BBSM00000007
Kailashae4e19c2019-06-26 13:39:38 -0700381 circuit_id: circuit07
382 remote_id: remote07
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700383 nas_port_id: PON 2/1/01/1:1.1.7
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700384 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700385 requirements:
386 - upstream_bps:
387 node: bronze_bp
388 relationship: tosca.relationships.BelongsToOne
389 - downstream_bps:
390 node: bronze_bp
391 relationship: tosca.relationships.BelongsToOne
392
393 bbsim_subscriber_8:
394 type: tosca.nodes.RCORDSubscriber
395 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700396 name: Sub_BBSM00000008
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700397 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700398 c_tag: 907
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700399 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700400 onu_device: BBSM00000008
Kailashae4e19c2019-06-26 13:39:38 -0700401 circuit_id: circuit08
402 remote_id: remote08
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700403 nas_port_id: PON 2/1/01/1:1.1.8
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700404 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700405 requirements:
406 - upstream_bps:
407 node: bronze_bp
408 relationship: tosca.relationships.BelongsToOne
409 - downstream_bps:
410 node: bronze_bp
411 relationship: tosca.relationships.BelongsToOne
412
413 bbsim_subscriber_9:
414 type: tosca.nodes.RCORDSubscriber
415 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700416 name: Sub_BBSM00000009
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700417 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700418 c_tag: 908
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700419 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700420 onu_device: BBSM00000009
Kailashae4e19c2019-06-26 13:39:38 -0700421 circuit_id: circuit09
422 remote_id: remote09
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700423 nas_port_id: PON 2/1/01/1:1.1.9
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700424 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700425 requirements:
426 - upstream_bps:
427 node: bronze_bp
428 relationship: tosca.relationships.BelongsToOne
429 - downstream_bps:
430 node: bronze_bp
431 relationship: tosca.relationships.BelongsToOne
432
433 bbsim_subscriber_a:
434 type: tosca.nodes.RCORDSubscriber
435 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700436 name: Sub_BBSM0000000a
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700437 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700438 c_tag: 909
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700439 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700440 onu_device: BBSM0000000a
Kailashae4e19c2019-06-26 13:39:38 -0700441 circuit_id: circuit90a
442 remote_id: remote0a
443 nas_port_id: PON 2/1/01/1:1.1.a
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700444 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700445 requirements:
446 - upstream_bps:
447 node: bronze_bp
448 relationship: tosca.relationships.BelongsToOne
449 - downstream_bps:
450 node: bronze_bp
451 relationship: tosca.relationships.BelongsToOne
452
453 bbsim_subscriber_b:
454 type: tosca.nodes.RCORDSubscriber
455 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700456 name: Sub_BBSM0000000b
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700457 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700458 c_tag: 910
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700459 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700460 onu_device: BBSM0000000b
Kailashae4e19c2019-06-26 13:39:38 -0700461 circuit_id: circuit0b
462 remote_id: remote0b
463 nas_port_id: PON 2/1/01/1:1.1.00b
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700464 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700465 requirements:
466 - upstream_bps:
467 node: bronze_bp
468 relationship: tosca.relationships.BelongsToOne
469 - downstream_bps:
470 node: bronze_bp
471 relationship: tosca.relationships.BelongsToOne
472
473 bbsim_subscriber_c:
474 type: tosca.nodes.RCORDSubscriber
475 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700476 name: Sub_BBSM0000000c
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700477 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700478 c_tag: 911
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700479 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700480 onu_device: BBSM0000000c
Kailashae4e19c2019-06-26 13:39:38 -0700481 circuit_id: circuit0c
482 remote_id: remote0c
483 nas_port_id: PON 2/1/01/1:1.1.00c
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700484 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700485 requirements:
486 - upstream_bps:
487 node: bronze_bp
488 relationship: tosca.relationships.BelongsToOne
489 - downstream_bps:
490 node: bronze_bp
491 relationship: tosca.relationships.BelongsToOne
492
493 bbsim_subscriber_d:
494 type: tosca.nodes.RCORDSubscriber
495 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700496 name: Sub_BBSM0000000d
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700497 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700498 c_tag: 912
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700499 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700500 onu_device: BBSM0000000d
Kailashae4e19c2019-06-26 13:39:38 -0700501 circuit_id: circuit0d
502 remote_id: remote0d
503 nas_port_id: PON 2/1/01/1:1.1.00d
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700504 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700505 requirements:
506 - upstream_bps:
507 node: bronze_bp
508 relationship: tosca.relationships.BelongsToOne
509 - downstream_bps:
510 node: bronze_bp
511 relationship: tosca.relationships.BelongsToOne
512
513 bbsim_subscriber_e:
514 type: tosca.nodes.RCORDSubscriber
515 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700516 name: Sub_BBSM0000000e
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700517 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700518 c_tag: 913
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700519 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700520 onu_device: BBSM0000000e
Kailashae4e19c2019-06-26 13:39:38 -0700521 circuit_id: circuit0e
522 remote_id: remote0e
523 nas_port_id: PON 2/1/01/1:1.1.00e
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700524 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700525 requirements:
526 - upstream_bps:
527 node: bronze_bp
528 relationship: tosca.relationships.BelongsToOne
529 - downstream_bps:
530 node: bronze_bp
531 relationship: tosca.relationships.BelongsToOne
532
533 bbsim_subscriber_f:
534 type: tosca.nodes.RCORDSubscriber
535 properties:
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700536 name: Sub_BBSM0000000f
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700537 status: pre-provisioned
Kailashae4e19c2019-06-26 13:39:38 -0700538 c_tag: 914
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700539 s_tag: 999
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700540 onu_device: BBSM0000000f
Kailashae4e19c2019-06-26 13:39:38 -0700541 circuit_id: circuit0f
542 remote_id: remote0f
543 nas_port_id: PON 2/1/01/1:1.1.00f
544 tech_profile_id: 64
545 requirements:
546 - upstream_bps:
547 node: bronze_bp
548 relationship: tosca.relationships.BelongsToOne
549 - downstream_bps:
550 node: bronze_bp
551 relationship: tosca.relationships.BelongsToOne
552
553 bbsim_subscriber_10:
554 type: tosca.nodes.RCORDSubscriber
555 properties:
556 name: Sub_BBSM00000010
557 status: pre-provisioned
558 c_tag: 915
559 s_tag: 999
560 onu_device: BBSM00000010
561 circuit_id: circuit10
562 remote_id: remote10
563 nas_port_id: PON 2/1/01/1:1.1.010
Matteo Scandolo81b384a2019-06-21 11:46:10 -0700564 tech_profile_id: 64
Matteo Scandolobd312ce2019-06-07 10:37:25 -0700565 requirements:
566 - upstream_bps:
567 node: bronze_bp
568 relationship: tosca.relationships.BelongsToOne
569 - downstream_bps:
570 node: bronze_bp
571 relationship: tosca.relationships.BelongsToOne