Joey Armstrong | 34d4ad7 | 2023-01-03 09:47:15 -0500 | [diff] [blame] | 1 | # Copyright 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors |
Andrea Speranza | b20aeff | 2022-05-25 20:38:52 +0200 | [diff] [blame] | 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 | # override ONOS config |
| 16 | onos-classic: |
| 17 | config: |
| 18 | netcfg: > |
| 19 | { |
| 20 | "apps" : { |
| 21 | "org.opencord.igmpproxy" : { |
| 22 | "igmpproxy":{ |
| 23 | "FastLeave":"true", |
| 24 | "LastQueryInterval":1, |
| 25 | "MaxResp":1, |
| 26 | "enableIgmpProvisioning":"false", |
| 27 | "globalConnectPointMode":"true", |
| 28 | "globalConnectPoint" : "of:0000000000000001/3", |
| 29 | "sourceDeviceAndPort":"of:0000000000000001/3", |
| 30 | "outgoingIgmpVlanId":4096, |
| 31 | "outgoingIgmpInnerVlanId":101, |
| 32 | "outgoingIgmpWithV3":"false", |
| 33 | "IgmpCos":5, |
| 34 | "IgmpUniCos":5, |
| 35 | "PeriodicQuery":"true", |
| 36 | "KeepAliveInterval":60, |
| 37 | "KeepAliveCount":5, |
| 38 | "requestDsIgmpPackets":false |
| 39 | } |
| 40 | }, |
| 41 | "org.opencord.sadis": { |
| 42 | "sadis": { |
| 43 | "integration": { |
| 44 | "url": "http://bbsim-sadis-server.{{ .Release.Namespace }}.svc:58080/subscribers/%s", |
| 45 | "cache": { |
| 46 | "enabled": true, |
| 47 | "maxsize": 50, |
| 48 | "ttl": "PT1m" |
| 49 | } |
| 50 | } |
| 51 | }, |
| 52 | "bandwidthprofile": { |
| 53 | "integration": { |
| 54 | "url": "http://bbsim-sadis-server.{{ .Release.Namespace }}.svc:58080/profiles/%s", |
| 55 | "cache": { |
| 56 | "enabled": true, |
| 57 | "maxsize": 50, |
| 58 | "ttl": "PT1m" |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | } |
| 65 | componentConfig: |
| 66 | "org.opencord.olt.impl.OltFlowService": > |
| 67 | { |
| 68 | "enableDhcpOnNni": "false", |
| 69 | "enablePppoeOnNni": "true", |
| 70 | "defaultTechProfileId": "64", |
| 71 | "enableIgmpOnNni": "true", |
| 72 | "enableEapol": "false", |
| 73 | "enableDhcpV6": "false", |
| 74 | "enableDhcpV4": "false", |
| 75 | "enablePppoe": "true" |
| 76 | } |
| 77 | |
| 78 | # override BBSim config |
| 79 | servicesConfig: |
| 80 | workflow: tim |
| 81 | services: |
| 82 | - name: hsia |
| 83 | uni_tag_match: 835 |
| 84 | c_tag: 100 |
| 85 | c_tag_allocation: shared |
| 86 | s_tag: 4096 |
| 87 | s_tag_allocation: shared |
| 88 | needs_pppoe: true |
| 89 | tp_id: 64 |
| 90 | - name: MC |
| 91 | uni_tag_match: 836 |
| 92 | c_tag: 101 |
| 93 | c_tag_allocation: shared |
| 94 | s_tag: 4096 |
| 95 | s_tag_allocation: shared |
| 96 | tp_id: 66 |
| 97 | ds_pon_c_tag_priority: 5 |
| 98 | ds_pon_s_tag_priority: 5 |