Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 1 | # 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 Scandolo | 40ea1b1 | 2018-10-17 13:22:57 -0700 | [diff] [blame] | 15 | # curl -H "xos-username: admin@opencord.org" -H "xos-password: letmein" -X POST --data-binary @bbwf-subscriber.yaml http://192.168.100.1:30007/run |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 16 | |
| 17 | tosca_definitions_version: tosca_simple_yaml_1_0 |
| 18 | imports: |
| 19 | - custom_types/rcordsubscriber.yaml |
| 20 | |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 21 | description: Pre-provsion subscribers |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 22 | |
| 23 | topology_template: |
| 24 | node_templates: |
| 25 | |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 26 | # EdgeCore OLT subscribers |
| 27 | edgecore_alpha_subscriber: |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 28 | type: tosca.nodes.RCORDSubscriber |
| 29 | properties: |
Luca Prete | ee52923 | 2018-10-16 12:38:31 +0200 | [diff] [blame] | 30 | name: Sub_ALPHe3d1cee9 |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 31 | status: pre-provisioned |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 32 | c_tag: 11 |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 33 | s_tag: 111 |
Luca Prete | ee52923 | 2018-10-16 12:38:31 +0200 | [diff] [blame] | 34 | onu_device: ALPHe3d1cee9 |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 35 | nas_port_id : "PON 1/1/03/1:1.1.1" |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 36 | circuit_id: edgecore_alpha_circuit |
| 37 | remote_id: edgecore_alpha_remote |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 38 | |
Luca Prete | 031b383 | 2018-10-17 17:16:19 +0200 | [diff] [blame] | 39 | edgecore_iskratel_subscriber: |
| 40 | type: tosca.nodes.RCORDSubscriber |
| 41 | properties: |
| 42 | name: Sub_ISKT71e81130 |
| 43 | status: pre-provisioned |
| 44 | c_tag: 12 |
| 45 | s_tag: 111 |
| 46 | onu_device: ISKT71e81130 |
| 47 | nas_port_id : "PON 1/1/04/1:1.1.1" |
| 48 | circuit_id: edgecore_iskratel_circuit |
| 49 | remote_id: edgecore_iskratel_remote |
Luca Prete | da53c89 | 2018-09-26 16:10:43 -0700 | [diff] [blame] | 50 | |
Luca Prete | 031b383 | 2018-10-17 17:16:19 +0200 | [diff] [blame] | 51 | # Adtran OLT subscribers |
| 52 | adtran_subscriber_1: |
| 53 | type: tosca.nodes.RCORDSubscriber |
| 54 | properties: |
| 55 | name: Sub_ADTN17510028 |
| 56 | status: pre-provisioned |
| 57 | c_tag: 21 |
| 58 | s_tag: 222 |
| 59 | onu_device: ADTN17510028 |
| 60 | nas_port_id : "PON 1/1/05/1:1.1.1" |
| 61 | circuit_id: adtran_sub1_circuit |
| 62 | remote_id: adtran_sub1_remote |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 63 | |
Luca Prete | 5aa1b30 | 2018-10-17 11:55:04 +0200 | [diff] [blame] | 64 | # adtran_subscriber_2: |
| 65 | # type: tosca.nodes.RCORDSubscriber |
| 66 | # properties: |
| 67 | # name: Sub_ADTN16180345 |
| 68 | # status: pre-provisioned |
| 69 | # c_tag: 22 |
| 70 | # s_tag: 222 |
| 71 | # onu_device: ADTN16180345 |
| 72 | # nas_port_id : "PON 1/1/05/1:1.1.1" |
| 73 | # circuit_id: adtran_sub2_circuit |
| 74 | # remote_id: adtran_sub2_remote |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 75 | |
Luca Prete | 03c0ba4 | 2018-10-17 14:09:24 +0200 | [diff] [blame] | 76 | # CIG OLT subscribers |
| 77 | cig_subscriber_1: |
| 78 | type: tosca.nodes.RCORDSubscriber |
| 79 | properties: |
| 80 | name: Sub_CIGG18a00002 |
| 81 | status: pre-provisioned |
| 82 | c_tag: 31 |
| 83 | s_tag: 333 |
| 84 | onu_device: CIGG18a00002 |
| 85 | nas_port_id : "PON 1/1/05/1:1.1.1" |
| 86 | circuit_id: cig_sub1_circuit |
| 87 | remote_id: cig_sub1_remote |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 88 | |
Luca Prete | 031b383 | 2018-10-17 17:16:19 +0200 | [diff] [blame] | 89 | # Iskratel XGS-PON OLT subscribers |
| 90 | iskratelx_subscriber_1: |
| 91 | type: tosca.nodes.RCORDSubscriber |
| 92 | properties: |
| 93 | name: Sub_ISKT71e81070 |
| 94 | status: pre-provisioned |
| 95 | c_tag: 41 |
| 96 | s_tag: 444 |
| 97 | onu_device: ISKT71e81070 |
| 98 | nas_port_id : "PON 1/1/05/1:1.1.1" |
| 99 | circuit_id: iskx_sub1_circuit |
| 100 | remote_id: iskx_sub1_remote |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 101 | |
Luca Prete | 5aa1b30 | 2018-10-17 11:55:04 +0200 | [diff] [blame] | 102 | # iskratelx_subscriber_2: |
| 103 | # type: tosca.nodes.RCORDSubscriber |
| 104 | # properties: |
| 105 | # name: Sub_ISKT71e81071 |
| 106 | # status: pre-provisioned |
| 107 | # c_tag: 42 |
| 108 | # s_tag: 444 |
| 109 | # onu_device: ISKT71e81071 |
| 110 | # nas_port_id : "PON 1/1/05/1:1.1.1" |
| 111 | # circuit_id: iskx_sub2_circuit |
| 112 | # remote_id: iskx_sub2_remote |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 113 | |
Luca Prete | 41dfc97 | 2018-10-17 15:50:16 +0200 | [diff] [blame] | 114 | # Iskratel GPON OLT subscribers |
| 115 | iskratelg_subscriber_1: |
| 116 | type: tosca.nodes.RCORDSubscriber |
| 117 | properties: |
| 118 | name: Sub_ISKT45f2c688 |
| 119 | status: pre-provisioned |
| 120 | c_tag: 51 |
| 121 | s_tag: 555 |
| 122 | onu_device: ISKT45f2c688 |
| 123 | nas_port_id : "PON 1/1/05/1:1.1.1" |
| 124 | circuit_id: iskg_sub1_circuit |
| 125 | remote_id: iskg_sub1_remote |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 126 | |
Luca Prete | 5aa1b30 | 2018-10-17 11:55:04 +0200 | [diff] [blame] | 127 | # iskratelg_subscriber_2: |
| 128 | # type: tosca.nodes.RCORDSubscriber |
| 129 | # properties: |
| 130 | # name: Sub_ISKT45f2bd61 |
| 131 | # status: pre-provisioned |
| 132 | # c_tag: 52 |
| 133 | # s_tag: 555 |
| 134 | # onu_device: ISKT45f2bd61 |
| 135 | # nas_port_id : "PON 1/1/05/1:1.1.1" |
| 136 | # circuit_id: iskg_sub2_circuit |
| 137 | # remote_id: iskg_sub2_remote |
Luca Prete | dd1e350 | 2018-10-11 09:44:40 -0700 | [diff] [blame] | 138 | |
Luca Prete | 5aa1b30 | 2018-10-17 11:55:04 +0200 | [diff] [blame] | 139 | # iskratelg_subscriber_3: |
| 140 | # type: tosca.nodes.RCORDSubscriber |
| 141 | # properties: |
| 142 | # name: Sub_ISKT45f2c1e4 |
| 143 | # status: pre-provisioned |
| 144 | # c_tag: 53 |
| 145 | # s_tag: 555 |
| 146 | # onu_device: ISKT45f2c1e4 |
| 147 | # nas_port_id : "PON 1/1/05/1:1.1.1" |
| 148 | # circuit_id: iskg_sub3_circuit |
| 149 | # remote_id: iskg_sub3_remote |