blob: 83b5b56c0e89a1df9447793764c0364cbe1e5d1e [file] [log] [blame]
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001/*
2 * Copyright 2018-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package common
18
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010019import (
20 "flag"
21 "fmt"
22 "io/ioutil"
23 "net"
Matteo Scandolof65e6872020-04-15 15:18:43 -070024 "strings"
Shrey Baid64cda472020-04-24 18:58:18 +053025
Matteo Scandolo4a036262020-08-17 15:56:13 -070026 "github.com/imdario/mergo"
Shrey Baid64cda472020-04-24 18:58:18 +053027 log "github.com/sirupsen/logrus"
Matteo Scandolo4a036262020-08-17 15:56:13 -070028 "gopkg.in/yaml.v2"
Matteo Scandolof65e6872020-04-15 15:18:43 -070029)
Matteo Scandolo40e067f2019-10-16 16:59:41 -070030
Matteo Scandolof65e6872020-04-15 15:18:43 -070031var tagAllocationValues = []string{
32 "unknown",
33 "shared",
34 "unique",
35}
36
Matteo Scandolo94967142021-05-28 11:37:06 -070037const (
38 BP_FORMAT_MEF = "mef"
39 BP_FORMAT_IETF = "ietf"
40)
41
Matteo Scandolof65e6872020-04-15 15:18:43 -070042type TagAllocation int
43
44func (t TagAllocation) String() string {
45 return tagAllocationValues[t]
46}
47
48func tagAllocationFromString(s string) (TagAllocation, error) {
49 for i, v := range tagAllocationValues {
Matteo Scandolo4a036262020-08-17 15:56:13 -070050 if v == strings.TrimSpace(s) {
Matteo Scandolof65e6872020-04-15 15:18:43 -070051 return TagAllocation(i), nil
52 }
53 }
54 log.WithFields(log.Fields{
55 "ValidValues": strings.Join(tagAllocationValues[1:], ", "),
56 }).Errorf("%s-is-not-a-valid-tag-allocation", s)
Shrey Baid688b4242020-07-10 20:40:10 +053057 return TagAllocation(0), fmt.Errorf("%s-is-not-a-valid-tag-allocation", s)
Matteo Scandolof65e6872020-04-15 15:18:43 -070058}
59
60const (
61 _ TagAllocation = iota
62 TagAllocationShared
63 TagAllocationUnique
64)
65
Matteo Scandolo40e067f2019-10-16 16:59:41 -070066type BBRCliOptions struct {
Matteo Scandolo4a036262020-08-17 15:56:13 -070067 *GlobalConfig
Matteo Scandolo40e067f2019-10-16 16:59:41 -070068 BBSimIp string
69 BBSimPort string
70 BBSimApiPort string
Matteo Scandolof5c537e2019-10-28 16:45:57 -070071 LogFile string
Matteo Scandolo40e067f2019-10-16 16:59:41 -070072}
73
Matteo Scandolo4a036262020-08-17 15:56:13 -070074type GlobalConfig struct {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010075 BBSim BBSimConfig
76 Olt OltConfig
77 BBR BBRConfig
78}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070079
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010080type OltConfig struct {
81 Model string `yaml:"model"`
82 Vendor string `yaml:"vendor"`
83 HardwareVersion string `yaml:"hardware_version"`
84 FirmwareVersion string `yaml:"firmware_version"`
85 DeviceId string `yaml:"device_id"`
86 DeviceSerialNumber string `yaml:"device_serial_number"`
87 PonPorts uint32 `yaml:"pon_ports"`
88 NniPorts uint32 `yaml:"nni_ports"`
89 OnusPonPort uint32 `yaml:"onus_per_port"`
90 Technology string `yaml:"technology"`
91 ID int `yaml:"id"`
92 OltRebootDelay int `yaml:"reboot_delay"`
Shrey Baid688b4242020-07-10 20:40:10 +053093 PortStatsInterval int `yaml:"port_stats_interval"`
Holger Hildebrandtc10bab12021-04-27 09:23:48 +000094 OmciResponseRate uint8 `yaml:"omci_response_rate"`
Mahir Gunyela1753ae2021-06-23 00:24:56 -070095 UniPorts uint32 `yaml:"uni_ports"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010096}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070097
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010098type BBSimConfig struct {
Matteo Scandolo94967142021-05-28 11:37:06 -070099 ConfigFile string
100 ServiceConfigFile string
101 DhcpRetry bool `yaml:"dhcp_retry"`
102 AuthRetry bool `yaml:"auth_retry"`
103 LogLevel string `yaml:"log_level"`
104 LogCaller bool `yaml:"log_caller"`
105 Delay int `yaml:"delay"`
106 CpuProfile *string `yaml:"cpu_profile"`
107 OpenOltAddress string `yaml:"openolt_address"`
108 ApiAddress string `yaml:"api_address"`
109 RestApiAddress string `yaml:"rest_api_address"`
110 LegacyApiAddress string `yaml:"legacy_api_address"`
111 LegacyRestApiAddress string `yaml:"legacy_rest_api_address"`
112 SadisRestAddress string `yaml:"sadis_rest_address"`
113 SadisServer bool `yaml:"sadis_server"`
114 KafkaAddress string `yaml:"kafka_address"`
115 Events bool `yaml:"enable_events"`
116 ControlledActivation string `yaml:"controlled_activation"`
117 EnablePerf bool `yaml:"enable_perf"`
118 KafkaEventTopic string `yaml:"kafka_event_topic"`
119 DmiServerAddress string `yaml:"dmi_server_address"`
120 BandwidthProfileFormat string `yaml:"bp_format"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100121}
Matteo Scandoloc1147092019-10-29 09:38:33 -0700122
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100123type BBRConfig struct {
124 Log string `yaml:"log"`
125 LogLevel string `yaml:"log_level"`
126 LogCaller bool `yaml:"log_caller"`
127}
128
Matteo Scandolo4a036262020-08-17 15:56:13 -0700129type ServiceYaml struct {
130 Name string
131 CTag int `yaml:"c_tag"`
132 STag int `yaml:"s_tag"`
133 NeedsEapol bool `yaml:"needs_eapol"`
Matteo Scandolo8a574812021-05-20 15:18:53 -0700134 NeedsDhcp bool `yaml:"needs_dhcp"`
Matteo Scandolo4a036262020-08-17 15:56:13 -0700135 NeedsIgmp bool `yaml:"needs_igmp"`
136 CTagAllocation string `yaml:"c_tag_allocation"`
137 STagAllocation string `yaml:"s_tag_allocation"`
138 TechnologyProfileID int `yaml:"tp_id"`
139 UniTagMatch int `yaml:"uni_tag_match"`
140 ConfigureMacAddress bool `yaml:"configure_mac_address"`
Matteo Scandolo8d281372020-09-03 16:23:37 -0700141 UsPonCTagPriority uint8 `yaml:"us_pon_c_tag_priority"`
142 UsPonSTagPriority uint8 `yaml:"us_pon_s_tag_priority"`
143 DsPonCTagPriority uint8 `yaml:"ds_pon_c_tag_priority"`
144 DsPonSTagPriority uint8 `yaml:"ds_pon_s_tag_priority"`
Matteo Scandolo4a036262020-08-17 15:56:13 -0700145}
146type YamlServiceConfig struct {
147 Workflow string
148 Services []ServiceYaml `yaml:"services,flow"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100149}
150
Matteo Scandolo4a036262020-08-17 15:56:13 -0700151func (cfg *YamlServiceConfig) String() string {
152 str := fmt.Sprintf("[workflow: %s, Services: ", cfg.Workflow)
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100153
Matteo Scandolo4a036262020-08-17 15:56:13 -0700154 for _, s := range cfg.Services {
155 str = fmt.Sprintf("%s[", str)
156 str = fmt.Sprintf("%sname=%s, c_tag=%d, s_tag=%d, ",
157 str, s.Name, s.CTag, s.STag)
158 str = fmt.Sprintf("%sc_tag_allocation=%s, s_tag_allocation=%s, ",
159 str, s.CTagAllocation, s.STagAllocation)
160 str = fmt.Sprintf("%sneeds_eapol=%t, needs_dhcp=%t, needs_igmp=%t",
Matteo Scandolo8a574812021-05-20 15:18:53 -0700161 str, s.NeedsEapol, s.NeedsDhcp, s.NeedsIgmp)
Matteo Scandolo4a036262020-08-17 15:56:13 -0700162 str = fmt.Sprintf("%stp_id=%d, uni_tag_match=%d",
163 str, s.TechnologyProfileID, s.UniTagMatch)
164 str = fmt.Sprintf("%s]", str)
165 }
166 str = fmt.Sprintf("%s]", str)
167 return str
168}
169
170var (
171 Config *GlobalConfig
172 Services []ServiceYaml
173)
174
175// Load the BBSim configuration. This is a combination of CLI parameters and YAML files
176// We proceed in this order:
177// - Read CLI parameters
178// - Using those we read the yaml files (config and services)
179// - we merge the configuration (CLI has priority over yaml files)
180func LoadConfig() {
181
182 Config = getDefaultOps()
183
184 cliConf := readCliParams()
185
186 yamlConf, err := loadBBSimConf(cliConf.BBSim.ConfigFile)
187
188 if err != nil {
189 log.WithFields(log.Fields{
190 "file": cliConf.BBSim.ConfigFile,
191 "err": err,
192 }).Fatal("Can't read config file")
193 }
194
195 // merging Yaml and Default Values
196 if err := mergo.Merge(Config, yamlConf, mergo.WithOverride); err != nil {
197 log.WithFields(log.Fields{
198 "err": err,
199 }).Fatal("Can't merge YAML and Config")
200 }
201
202 // merging CLI values on top of the yaml ones
203 if err := mergo.Merge(Config, cliConf, mergo.WithOverride); err != nil {
204 log.WithFields(log.Fields{
205 "err": err,
206 }).Fatal("Can't merge CLI and Config")
207 }
208
209 services, err := loadBBSimServices(Config.BBSim.ServiceConfigFile)
210
211 if err != nil {
212 log.WithFields(log.Fields{
213 "file": Config.BBSim.ServiceConfigFile,
214 "err": err,
215 }).Fatal("Can't read services file")
216 }
217
218 Services = services
219
220}
221
222func readCliParams() *GlobalConfig {
223
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700224 conf := getDefaultOps()
Matteo Scandolo4a036262020-08-17 15:56:13 -0700225
226 configFile := flag.String("config", conf.BBSim.ConfigFile, "Configuration file path")
227 servicesFile := flag.String("services", conf.BBSim.ServiceConfigFile, "Service Configuration file path")
Matteo Scandolo94967142021-05-28 11:37:06 -0700228 sadisBpFormat := flag.String("bp_format", conf.BBSim.BandwidthProfileFormat, "Bandwidth profile format, 'mef' or 'ietf'")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700229
230 olt_id := flag.Int("olt_id", conf.Olt.ID, "OLT device ID")
231 nni := flag.Int("nni", int(conf.Olt.NniPorts), "Number of NNI ports per OLT device to be emulated")
232 pon := flag.Int("pon", int(conf.Olt.PonPorts), "Number of PON ports per OLT device to be emulated")
233 onu := flag.Int("onu", int(conf.Olt.OnusPonPort), "Number of ONU devices per PON port to be emulated")
Mahir Gunyela1753ae2021-06-23 00:24:56 -0700234 uni := flag.Int("uni", int(conf.Olt.UniPorts), "Number of UNI Ports per ONU device to be emulated")
235
Matteo Scandolo93566702020-09-30 15:19:27 -0700236 oltRebootDelay := flag.Int("oltRebootDelay", conf.Olt.OltRebootDelay, "Time that BBSim should before restarting after a reboot")
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000237 omci_response_rate := flag.Int("omci_response_rate", int(conf.Olt.OmciResponseRate), "Amount of OMCI messages to respond to")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700238
239 openolt_address := flag.String("openolt_address", conf.BBSim.OpenOltAddress, "IP address:port")
240 api_address := flag.String("api_address", conf.BBSim.ApiAddress, "IP address:port")
241 rest_api_address := flag.String("rest_api_address", conf.BBSim.RestApiAddress, "IP address:port")
amit.ghosh258d14c2020-10-02 15:13:38 +0200242 dmi_server_address := flag.String("dmi_server_address", conf.BBSim.DmiServerAddress, "IP address:port")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700243
244 profileCpu := flag.String("cpuprofile", "", "write cpu profile to file")
245
246 logLevel := flag.String("logLevel", conf.BBSim.LogLevel, "Set the log level (trace, debug, info, warn, error)")
247 logCaller := flag.Bool("logCaller", conf.BBSim.LogCaller, "Whether to print the caller filename or not")
248
249 delay := flag.Int("delay", conf.BBSim.Delay, "The delay between ONU DISCOVERY batches in milliseconds (1 ONU per each PON PORT at a time")
250
251 controlledActivation := flag.String("ca", conf.BBSim.ControlledActivation, "Set the mode for controlled activation of PON ports and ONUs")
252 enablePerf := flag.Bool("enableperf", conf.BBSim.EnablePerf, "Setting this flag will cause BBSim to not store data like traffic schedulers, flows of ONUs etc..")
253 enableEvents := flag.Bool("enableEvents", conf.BBSim.Events, "Enable sending BBSim events on configured kafka server")
254 kafkaAddress := flag.String("kafkaAddress", conf.BBSim.KafkaAddress, "IP:Port for kafka")
255 kafkaEventTopic := flag.String("kafkaEventTopic", conf.BBSim.KafkaEventTopic, "Ability to configure the topic on which BBSim publishes events on Kafka")
256 dhcpRetry := flag.Bool("dhcpRetry", conf.BBSim.DhcpRetry, "Set this flag if BBSim should retry DHCP upon failure until success")
257 authRetry := flag.Bool("authRetry", conf.BBSim.AuthRetry, "Set this flag if BBSim should retry EAPOL (Authentication) upon failure until success")
Matteo Scandolo93566702020-09-30 15:19:27 -0700258
Matteo Scandolo4a036262020-08-17 15:56:13 -0700259 flag.Parse()
260
261 conf.Olt.ID = int(*olt_id)
262 conf.Olt.NniPorts = uint32(*nni)
263 conf.Olt.PonPorts = uint32(*pon)
Mahir Gunyela1753ae2021-06-23 00:24:56 -0700264 conf.Olt.UniPorts = uint32(*uni)
Matteo Scandolo4a036262020-08-17 15:56:13 -0700265 conf.Olt.OnusPonPort = uint32(*onu)
Matteo Scandolo93566702020-09-30 15:19:27 -0700266 conf.Olt.OltRebootDelay = *oltRebootDelay
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000267 conf.Olt.OmciResponseRate = uint8(*omci_response_rate)
Matteo Scandolo4a036262020-08-17 15:56:13 -0700268 conf.BBSim.ConfigFile = *configFile
269 conf.BBSim.ServiceConfigFile = *servicesFile
270 conf.BBSim.CpuProfile = profileCpu
271 conf.BBSim.LogLevel = *logLevel
272 conf.BBSim.LogCaller = *logCaller
273 conf.BBSim.Delay = *delay
274 conf.BBSim.ControlledActivation = *controlledActivation
275 conf.BBSim.EnablePerf = *enablePerf
276 conf.BBSim.Events = *enableEvents
277 conf.BBSim.KafkaAddress = *kafkaAddress
278 conf.BBSim.OpenOltAddress = *openolt_address
279 conf.BBSim.ApiAddress = *api_address
280 conf.BBSim.RestApiAddress = *rest_api_address
281 conf.BBSim.KafkaEventTopic = *kafkaEventTopic
282 conf.BBSim.AuthRetry = *authRetry
283 conf.BBSim.DhcpRetry = *dhcpRetry
amit.ghosh258d14c2020-10-02 15:13:38 +0200284 conf.BBSim.DmiServerAddress = *dmi_server_address
Matteo Scandolo4a036262020-08-17 15:56:13 -0700285
286 // update device id if not set
287 if conf.Olt.DeviceId == "" {
288 conf.Olt.DeviceId = net.HardwareAddr{0xA, 0xA, 0xA, 0xA, 0xA, byte(conf.Olt.ID)}.String()
289 }
290
Matteo Scandolo94967142021-05-28 11:37:06 -0700291 // check that the BP format is valid
292 if (*sadisBpFormat != BP_FORMAT_MEF) && (*sadisBpFormat != BP_FORMAT_IETF) {
293 log.Fatalf("Invalid parameter 'bp_format', supported values are %s and %s, you provided %s", BP_FORMAT_MEF, BP_FORMAT_IETF, *sadisBpFormat)
294 }
295 conf.BBSim.BandwidthProfileFormat = *sadisBpFormat
296
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700297 return conf
Matteo Scandolo4a036262020-08-17 15:56:13 -0700298}
299
300func getDefaultOps() *GlobalConfig {
301
302 c := &GlobalConfig{
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100303 BBSimConfig{
Matteo Scandolo94967142021-05-28 11:37:06 -0700304 ConfigFile: "configs/bbsim.yaml",
305 ServiceConfigFile: "configs/att-services.yaml",
306 LogLevel: "debug",
307 LogCaller: false,
308 Delay: 200,
309 OpenOltAddress: ":50060",
310 ApiAddress: ":50070",
311 RestApiAddress: ":50071",
312 LegacyApiAddress: ":50072",
313 LegacyRestApiAddress: ":50073",
314 SadisRestAddress: ":50074",
315 SadisServer: true,
316 KafkaAddress: ":9092",
317 Events: false,
318 ControlledActivation: "default",
319 EnablePerf: false,
320 KafkaEventTopic: "",
321 DhcpRetry: false,
322 AuthRetry: false,
323 DmiServerAddress: ":50075",
324 BandwidthProfileFormat: BP_FORMAT_MEF,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100325 },
326 OltConfig{
327 Vendor: "BBSim",
328 Model: "asfvolt16",
329 HardwareVersion: "emulated",
330 FirmwareVersion: "",
331 DeviceSerialNumber: "BBSM00000001",
332 PonPorts: 1,
333 NniPorts: 1,
334 OnusPonPort: 1,
335 Technology: "XGS-PON",
336 ID: 0,
Matteo Scandolo93566702020-09-30 15:19:27 -0700337 OltRebootDelay: 60,
Pragya Arya996a0892020-03-09 21:47:52 +0530338 PortStatsInterval: 20,
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000339 OmciResponseRate: 10,
Mahir Gunyela1753ae2021-06-23 00:24:56 -0700340 UniPorts: 4,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100341 },
342 BBRConfig{
343 LogLevel: "debug",
344 LogCaller: false,
345 },
346 }
347 return c
348}
349
350// LoadBBSimConf loads the BBSim configuration from a YAML file
Matteo Scandolo4a036262020-08-17 15:56:13 -0700351func loadBBSimConf(filename string) (*GlobalConfig, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100352 yamlConfig := getDefaultOps()
353
354 yamlFile, err := ioutil.ReadFile(filename)
355 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700356 log.WithFields(log.Fields{
357 "err": err,
358 "filename": filename,
359 }).Error("Cannot load BBSim configuration file. Using defaults.")
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100360 return yamlConfig, nil
361 }
362
363 err = yaml.Unmarshal(yamlFile, yamlConfig)
364 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700365 return nil, err
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100366 }
367
368 return yamlConfig, nil
369}
370
Matteo Scandolo4a036262020-08-17 15:56:13 -0700371// LoadBBSimServices parses a file describing the services that need to be created for each UNI
372func loadBBSimServices(filename string) ([]ServiceYaml, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100373
Matteo Scandolo4a036262020-08-17 15:56:13 -0700374 yamlServiceCfg := YamlServiceConfig{}
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100375
Matteo Scandolo4a036262020-08-17 15:56:13 -0700376 yamlFile, err := ioutil.ReadFile(filename)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700377 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700378 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700379 }
380
Matteo Scandolo4a036262020-08-17 15:56:13 -0700381 err = yaml.Unmarshal([]byte(yamlFile), &yamlServiceCfg)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700382 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700383 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700384 }
385
Matteo Scandolo4a036262020-08-17 15:56:13 -0700386 for _, service := range yamlServiceCfg.Services {
387
388 if service.CTagAllocation == "" || service.STagAllocation == "" {
389 log.Fatal("c_tag_allocation and s_tag_allocation are mandatory fields")
390 }
391
392 if _, err := tagAllocationFromString(string(service.CTagAllocation)); err != nil {
393 log.WithFields(log.Fields{
394 "err": err,
395 }).Fatal("c_tag_allocation is not valid")
396 }
Matteo Scandolof65e6872020-04-15 15:18:43 -0700397 }
398
Matteo Scandolo4a036262020-08-17 15:56:13 -0700399 log.WithFields(log.Fields{
400 "services": yamlServiceCfg.String(),
401 }).Debug("BBSim services description correctly loaded")
402 return yamlServiceCfg.Services, nil
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700403}
404
Matteo Scandolo4a036262020-08-17 15:56:13 -0700405// This is only used by BBR
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700406func GetBBROpts() BBRCliOptions {
407
408 bbsimIp := flag.String("bbsimIp", "127.0.0.1", "BBSim IP")
409 bbsimPort := flag.String("bbsimPort", "50060", "BBSim Port")
410 bbsimApiPort := flag.String("bbsimApiPort", "50070", "BBSim API Port")
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700411 logFile := flag.String("logfile", "", "Log to a file")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700412
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700413 LoadConfig()
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700414
415 bbrOptions := BBRCliOptions{
Matteo Scandolo4a036262020-08-17 15:56:13 -0700416 Config,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700417 *bbsimIp,
418 *bbsimPort,
419 *bbsimApiPort,
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700420 *logFile,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700421 }
422
423 return bbrOptions
424}