blob: 5c452db73d2e846586ad0b54888fceaf83a00518 [file] [log] [blame]
Zack Williams06e75f42018-11-21 11:54:06 -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
Kailash4b486a42019-07-11 09:03:12 -070027 - custom_types/bandwidthprofile.yaml
Zack Williams06e75f42018-11-21 11:54:06 -070028
29description: Create a simulated OLT Device in VOLTHA
30topology_template:
31 node_templates:
32
Kailash4b486a42019-07-11 09:03:12 -070033 # 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
Zack Williams06e75f42018-11-21 11:54:06 -070044 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
Matteo Scandolo553829a2018-12-13 16:41:11 -080054 device_type: openolt
Zack Williams06e75f42018-11-21 11:54:06 -070055 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"
Kailash4b486a42019-07-11 09:03:12 -070062 serial_number: "BBSIMOLT000"
63 technology: xgspon
Zack Williams06e75f42018-11-21 11:54:06 -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
Kailash4b486a42019-07-11 09:03:12 -070076 BBSM00000001:
Zack Williams06e75f42018-11-21 11:54:06 -070077 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
78 properties:
Kailash4b486a42019-07-11 09:03:12 -070079 serial_number: BBSM00000001
80 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -080081 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -070082 requirements:
83 - owner:
84 node: service#att
85 relationship: tosca.relationships.BelongsToOne
86
Kailash4b486a42019-07-11 09:03:12 -070087 BBSM00000002:
Zack Williams06e75f42018-11-21 11:54:06 -070088 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
89 properties:
Kailash4b486a42019-07-11 09:03:12 -070090 serial_number: BBSM00000002
91 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -080092 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -070093 requirements:
94 - owner:
95 node: service#att
96 relationship: tosca.relationships.BelongsToOne
97
Kailash4b486a42019-07-11 09:03:12 -070098 BBSM00000003:
Zack Williams06e75f42018-11-21 11:54:06 -070099 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
100 properties:
Kailash4b486a42019-07-11 09:03:12 -0700101 serial_number: BBSM00000003
102 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800103 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700104 requirements:
105 - owner:
106 node: service#att
107 relationship: tosca.relationships.BelongsToOne
108
Kailash4b486a42019-07-11 09:03:12 -0700109 BBSM00000004:
Zack Williams06e75f42018-11-21 11:54:06 -0700110 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
111 properties:
Kailash4b486a42019-07-11 09:03:12 -0700112 serial_number: BBSM00000004
113 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800114 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700115 requirements:
116 - owner:
117 node: service#att
118 relationship: tosca.relationships.BelongsToOne
119
Kailash4b486a42019-07-11 09:03:12 -0700120 BBSM00000005:
Zack Williams06e75f42018-11-21 11:54:06 -0700121 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
122 properties:
Kailash4b486a42019-07-11 09:03:12 -0700123 serial_number: BBSM00000005
124 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800125 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700126 requirements:
127 - owner:
128 node: service#att
129 relationship: tosca.relationships.BelongsToOne
130
Kailash4b486a42019-07-11 09:03:12 -0700131 BBSM00000006:
Zack Williams06e75f42018-11-21 11:54:06 -0700132 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
133 properties:
Kailash4b486a42019-07-11 09:03:12 -0700134 serial_number: BBSM00000006
135 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800136 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700137 requirements:
138 - owner:
139 node: service#att
140 relationship: tosca.relationships.BelongsToOne
141
Kailash4b486a42019-07-11 09:03:12 -0700142 BBSM00000007:
Zack Williams06e75f42018-11-21 11:54:06 -0700143 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
144 properties:
Kailash4b486a42019-07-11 09:03:12 -0700145 serial_number: BBSM00000007
146 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800147 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700148 requirements:
149 - owner:
150 node: service#att
151 relationship: tosca.relationships.BelongsToOne
152
Kailash4b486a42019-07-11 09:03:12 -0700153 BBSM00000008:
Zack Williams06e75f42018-11-21 11:54:06 -0700154 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
155 properties:
Kailash4b486a42019-07-11 09:03:12 -0700156 serial_number: BBSM00000008
157 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800158 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700159 requirements:
160 - owner:
161 node: service#att
162 relationship: tosca.relationships.BelongsToOne
163
Kailash4b486a42019-07-11 09:03:12 -0700164 BBSM00000009:
Zack Williams06e75f42018-11-21 11:54:06 -0700165 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
166 properties:
Kailash4b486a42019-07-11 09:03:12 -0700167 serial_number: BBSM00000009
168 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800169 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700170 requirements:
171 - owner:
172 node: service#att
173 relationship: tosca.relationships.BelongsToOne
174
Kailash4b486a42019-07-11 09:03:12 -0700175 BBSM0000000a:
Zack Williams06e75f42018-11-21 11:54:06 -0700176 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
177 properties:
Kailash4b486a42019-07-11 09:03:12 -0700178 serial_number: BBSM0000000a
179 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800180 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700181 requirements:
182 - owner:
183 node: service#att
184 relationship: tosca.relationships.BelongsToOne
185
Kailash4b486a42019-07-11 09:03:12 -0700186 BBSM0000000b:
Zack Williams06e75f42018-11-21 11:54:06 -0700187 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
188 properties:
Kailash4b486a42019-07-11 09:03:12 -0700189 serial_number: BBSM0000000b
190 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800191 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700192 requirements:
193 - owner:
194 node: service#att
195 relationship: tosca.relationships.BelongsToOne
196
Kailash4b486a42019-07-11 09:03:12 -0700197 BBSM0000000c:
Zack Williams06e75f42018-11-21 11:54:06 -0700198 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
199 properties:
Kailash4b486a42019-07-11 09:03:12 -0700200 serial_number: BBSM0000000c
201 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800202 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700203 requirements:
204 - owner:
205 node: service#att
206 relationship: tosca.relationships.BelongsToOne
207
Kailash4b486a42019-07-11 09:03:12 -0700208 BBSM0000000d:
Zack Williams06e75f42018-11-21 11:54:06 -0700209 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
210 properties:
Kailash4b486a42019-07-11 09:03:12 -0700211 serial_number: BBSM0000000d
212 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800213 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700214 requirements:
215 - owner:
216 node: service#att
217 relationship: tosca.relationships.BelongsToOne
218
Kailash4b486a42019-07-11 09:03:12 -0700219 BBSM0000000e:
Zack Williams06e75f42018-11-21 11:54:06 -0700220 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
221 properties:
Kailash4b486a42019-07-11 09:03:12 -0700222 serial_number: BBSM0000000e
223 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800224 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700225 requirements:
226 - owner:
227 node: service#att
228 relationship: tosca.relationships.BelongsToOne
229
Kailash4b486a42019-07-11 09:03:12 -0700230 BBSM0000000f:
Zack Williams06e75f42018-11-21 11:54:06 -0700231 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
232 properties:
Kailash4b486a42019-07-11 09:03:12 -0700233 serial_number: BBSM0000000f
234 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800235 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700236 requirements:
237 - owner:
238 node: service#att
239 relationship: tosca.relationships.BelongsToOne
240
Kailash4b486a42019-07-11 09:03:12 -0700241 BBSM00000010:
Zack Williams06e75f42018-11-21 11:54:06 -0700242 type: tosca.nodes.AttWorkflowDriverWhiteListEntry
243 properties:
Kailash4b486a42019-07-11 09:03:12 -0700244 serial_number: BBSM00000010
245 pon_port_id: 536870912
Matteo Scandolo79f05932018-12-19 13:46:06 -0800246 device_id: of:0000626273696d76
Zack Williams06e75f42018-11-21 11:54:06 -0700247 requirements:
248 - owner:
249 node: service#att
250 relationship: tosca.relationships.BelongsToOne
251
252 # Pre-provision the subscriber
Zack Williams06e75f42018-11-21 11:54:06 -0700253 bbsim_subscriber_1:
254 type: tosca.nodes.RCORDSubscriber
255 properties:
Kailash4b486a42019-07-11 09:03:12 -0700256 name: Sub_BBSM00000001
Zack Williams06e75f42018-11-21 11:54:06 -0700257 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700258 c_tag: 900
Zack Williams06e75f42018-11-21 11:54:06 -0700259 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700260 onu_device: BBSM00000001
261 circuit_id: circuit01
262 remote_id: remote01
Zack Williams06e75f42018-11-21 11:54:06 -0700263 nas_port_id: PON 2/1/01/1:1.1.1
Kailash4b486a42019-07-11 09:03:12 -0700264 tech_profile_id: 64
265 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
Zack Williams06e75f42018-11-21 11:54:06 -0700272
273 bbsim_subscriber_2:
274 type: tosca.nodes.RCORDSubscriber
275 properties:
Kailash4b486a42019-07-11 09:03:12 -0700276 name: Sub_BBSM00000002
Zack Williams06e75f42018-11-21 11:54:06 -0700277 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700278 c_tag: 901
Zack Williams06e75f42018-11-21 11:54:06 -0700279 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700280 onu_device: BBSM00000002
281 circuit_id: circuit02
282 remote_id: remote02
Zack Williams06e75f42018-11-21 11:54:06 -0700283 nas_port_id: PON 2/1/01/1:1.1.2
Kailash4b486a42019-07-11 09:03:12 -0700284 tech_profile_id: 64
285 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
Zack Williams06e75f42018-11-21 11:54:06 -0700292
293 bbsim_subscriber_3:
294 type: tosca.nodes.RCORDSubscriber
295 properties:
Kailash4b486a42019-07-11 09:03:12 -0700296 name: Sub_BBSM00000003
Zack Williams06e75f42018-11-21 11:54:06 -0700297 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700298 c_tag: 902
Zack Williams06e75f42018-11-21 11:54:06 -0700299 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700300 onu_device: BBSM00000003
301 circuit_id: circuit03
302 remote_id: remote03
Zack Williams06e75f42018-11-21 11:54:06 -0700303 nas_port_id: PON 2/1/01/1:1.1.3
Kailash4b486a42019-07-11 09:03:12 -0700304 tech_profile_id: 64
305 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
Zack Williams06e75f42018-11-21 11:54:06 -0700312
313 bbsim_subscriber_4:
314 type: tosca.nodes.RCORDSubscriber
315 properties:
Kailash4b486a42019-07-11 09:03:12 -0700316 name: Sub_BBSM00000004
Zack Williams06e75f42018-11-21 11:54:06 -0700317 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700318 c_tag: 903
Zack Williams06e75f42018-11-21 11:54:06 -0700319 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700320 onu_device: BBSM00000004
321 circuit_id: circuit04
322 remote_id: remote04
Zack Williams06e75f42018-11-21 11:54:06 -0700323 nas_port_id: PON 2/1/01/1:1.1.4
Kailash4b486a42019-07-11 09:03:12 -0700324 tech_profile_id: 64
325 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
Zack Williams06e75f42018-11-21 11:54:06 -0700332
333 bbsim_subscriber_5:
334 type: tosca.nodes.RCORDSubscriber
335 properties:
Kailash4b486a42019-07-11 09:03:12 -0700336 name: Sub_BBSM00000005
Zack Williams06e75f42018-11-21 11:54:06 -0700337 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700338 c_tag: 904
Zack Williams06e75f42018-11-21 11:54:06 -0700339 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700340 onu_device: BBSM00000005
341 circuit_id: circuit05
342 remote_id: remote05
Zack Williams06e75f42018-11-21 11:54:06 -0700343 nas_port_id: PON 2/1/01/1:1.1.5
Kailash4b486a42019-07-11 09:03:12 -0700344 tech_profile_id: 64
345 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
Zack Williams06e75f42018-11-21 11:54:06 -0700352
353 bbsim_subscriber_6:
354 type: tosca.nodes.RCORDSubscriber
355 properties:
Kailash4b486a42019-07-11 09:03:12 -0700356 name: Sub_BBSM00000006
Zack Williams06e75f42018-11-21 11:54:06 -0700357 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700358 c_tag: 905
Zack Williams06e75f42018-11-21 11:54:06 -0700359 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700360 onu_device: BBSM00000006
361 circuit_id: circuit06
362 remote_id: remote06
Zack Williams06e75f42018-11-21 11:54:06 -0700363 nas_port_id: PON 2/1/01/1:1.1.6
Kailash4b486a42019-07-11 09:03:12 -0700364 tech_profile_id: 64
365 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
Zack Williams06e75f42018-11-21 11:54:06 -0700372
373 bbsim_subscriber_7:
374 type: tosca.nodes.RCORDSubscriber
375 properties:
Kailash4b486a42019-07-11 09:03:12 -0700376 name: Sub_BBSM00000007
Zack Williams06e75f42018-11-21 11:54:06 -0700377 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700378 c_tag: 906
Zack Williams06e75f42018-11-21 11:54:06 -0700379 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700380 onu_device: BBSM00000007
381 circuit_id: circuit07
382 remote_id: remote07
Zack Williams06e75f42018-11-21 11:54:06 -0700383 nas_port_id: PON 2/1/01/1:1.1.7
Kailash4b486a42019-07-11 09:03:12 -0700384 tech_profile_id: 64
385 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
Zack Williams06e75f42018-11-21 11:54:06 -0700392
393 bbsim_subscriber_8:
394 type: tosca.nodes.RCORDSubscriber
395 properties:
Kailash4b486a42019-07-11 09:03:12 -0700396 name: Sub_BBSM00000008
Zack Williams06e75f42018-11-21 11:54:06 -0700397 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700398 c_tag: 907
Zack Williams06e75f42018-11-21 11:54:06 -0700399 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700400 onu_device: BBSM00000008
401 circuit_id: circuit08
402 remote_id: remote08
Zack Williams06e75f42018-11-21 11:54:06 -0700403 nas_port_id: PON 2/1/01/1:1.1.8
Kailash4b486a42019-07-11 09:03:12 -0700404 tech_profile_id: 64
405 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
Zack Williams06e75f42018-11-21 11:54:06 -0700412
413 bbsim_subscriber_9:
414 type: tosca.nodes.RCORDSubscriber
415 properties:
Kailash4b486a42019-07-11 09:03:12 -0700416 name: Sub_BBSM00000009
Zack Williams06e75f42018-11-21 11:54:06 -0700417 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700418 c_tag: 908
Zack Williams06e75f42018-11-21 11:54:06 -0700419 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700420 onu_device: BBSM00000009
421 circuit_id: circuit09
422 remote_id: remote09
Zack Williams06e75f42018-11-21 11:54:06 -0700423 nas_port_id: PON 2/1/01/1:1.1.9
Kailash4b486a42019-07-11 09:03:12 -0700424 tech_profile_id: 64
425 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
Zack Williams06e75f42018-11-21 11:54:06 -0700432
433 bbsim_subscriber_a:
434 type: tosca.nodes.RCORDSubscriber
435 properties:
Kailash4b486a42019-07-11 09:03:12 -0700436 name: Sub_BBSM0000000a
Zack Williams06e75f42018-11-21 11:54:06 -0700437 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700438 c_tag: 909
Zack Williams06e75f42018-11-21 11:54:06 -0700439 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700440 onu_device: BBSM0000000a
441 circuit_id: circuit90a
442 remote_id: remote0a
443 nas_port_id: PON 2/1/01/1:1.1.a
444 tech_profile_id: 64
445 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
Zack Williams06e75f42018-11-21 11:54:06 -0700452
453 bbsim_subscriber_b:
454 type: tosca.nodes.RCORDSubscriber
455 properties:
Kailash4b486a42019-07-11 09:03:12 -0700456 name: Sub_BBSM0000000b
Zack Williams06e75f42018-11-21 11:54:06 -0700457 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700458 c_tag: 910
Zack Williams06e75f42018-11-21 11:54:06 -0700459 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700460 onu_device: BBSM0000000b
461 circuit_id: circuit0b
462 remote_id: remote0b
463 nas_port_id: PON 2/1/01/1:1.1.00b
464 tech_profile_id: 64
465 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
Zack Williams06e75f42018-11-21 11:54:06 -0700472
473 bbsim_subscriber_c:
474 type: tosca.nodes.RCORDSubscriber
475 properties:
Kailash4b486a42019-07-11 09:03:12 -0700476 name: Sub_BBSM0000000c
Zack Williams06e75f42018-11-21 11:54:06 -0700477 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700478 c_tag: 911
Zack Williams06e75f42018-11-21 11:54:06 -0700479 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700480 onu_device: BBSM0000000c
481 circuit_id: circuit0c
482 remote_id: remote0c
483 nas_port_id: PON 2/1/01/1:1.1.00c
484 tech_profile_id: 64
485 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
Zack Williams06e75f42018-11-21 11:54:06 -0700492
493 bbsim_subscriber_d:
494 type: tosca.nodes.RCORDSubscriber
495 properties:
Kailash4b486a42019-07-11 09:03:12 -0700496 name: Sub_BBSM0000000d
Zack Williams06e75f42018-11-21 11:54:06 -0700497 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700498 c_tag: 912
Zack Williams06e75f42018-11-21 11:54:06 -0700499 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700500 onu_device: BBSM0000000d
501 circuit_id: circuit0d
502 remote_id: remote0d
503 nas_port_id: PON 2/1/01/1:1.1.00d
504 tech_profile_id: 64
505 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
Zack Williams06e75f42018-11-21 11:54:06 -0700512
513 bbsim_subscriber_e:
514 type: tosca.nodes.RCORDSubscriber
515 properties:
Kailash4b486a42019-07-11 09:03:12 -0700516 name: Sub_BBSM0000000e
Zack Williams06e75f42018-11-21 11:54:06 -0700517 status: pre-provisioned
Kailash4b486a42019-07-11 09:03:12 -0700518 c_tag: 913
Zack Williams06e75f42018-11-21 11:54:06 -0700519 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700520 onu_device: BBSM0000000e
521 circuit_id: circuit0e
522 remote_id: remote0e
523 nas_port_id: PON 2/1/01/1:1.1.00e
524 tech_profile_id: 64
525 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
Zack Williams06e75f42018-11-21 11:54:06 -0700532
533 bbsim_subscriber_f:
534 type: tosca.nodes.RCORDSubscriber
535 properties:
Kailash4b486a42019-07-11 09:03:12 -0700536 name: Sub_BBSM0000000f
537 status: pre-provisioned
538 c_tag: 914
539 s_tag: 999
540 onu_device: BBSM0000000f
541 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
Zack Williams06e75f42018-11-21 11:54:06 -0700557 status: pre-provisioned
558 c_tag: 915
559 s_tag: 999
Kailash4b486a42019-07-11 09:03:12 -0700560 onu_device: BBSM00000010
561 circuit_id: circuit10
562 remote_id: remote10
563 nas_port_id: PON 2/1/01/1:1.1.010
564 tech_profile_id: 64
565 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