blob: c0798ae74b1fbb0dba8cba44f0875a075871743c [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"`
Elia Battistonac63b112022-01-12 18:40:49 +010096 PotsPorts uint32 `yaml:"pots_ports"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010097}
Matteo Scandolo40e067f2019-10-16 16:59:41 -070098
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010099type BBSimConfig struct {
Matteo Scandolo94967142021-05-28 11:37:06 -0700100 ConfigFile string
101 ServiceConfigFile string
102 DhcpRetry bool `yaml:"dhcp_retry"`
103 AuthRetry bool `yaml:"auth_retry"`
104 LogLevel string `yaml:"log_level"`
105 LogCaller bool `yaml:"log_caller"`
106 Delay int `yaml:"delay"`
107 CpuProfile *string `yaml:"cpu_profile"`
108 OpenOltAddress string `yaml:"openolt_address"`
109 ApiAddress string `yaml:"api_address"`
110 RestApiAddress string `yaml:"rest_api_address"`
111 LegacyApiAddress string `yaml:"legacy_api_address"`
112 LegacyRestApiAddress string `yaml:"legacy_rest_api_address"`
113 SadisRestAddress string `yaml:"sadis_rest_address"`
114 SadisServer bool `yaml:"sadis_server"`
115 KafkaAddress string `yaml:"kafka_address"`
116 Events bool `yaml:"enable_events"`
117 ControlledActivation string `yaml:"controlled_activation"`
118 EnablePerf bool `yaml:"enable_perf"`
119 KafkaEventTopic string `yaml:"kafka_event_topic"`
120 DmiServerAddress string `yaml:"dmi_server_address"`
121 BandwidthProfileFormat string `yaml:"bp_format"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100122}
Matteo Scandoloc1147092019-10-29 09:38:33 -0700123
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100124type BBRConfig struct {
125 Log string `yaml:"log"`
126 LogLevel string `yaml:"log_level"`
127 LogCaller bool `yaml:"log_caller"`
128}
129
Matteo Scandolo4a036262020-08-17 15:56:13 -0700130type ServiceYaml struct {
131 Name string
132 CTag int `yaml:"c_tag"`
133 STag int `yaml:"s_tag"`
134 NeedsEapol bool `yaml:"needs_eapol"`
Matteo Scandolo8a574812021-05-20 15:18:53 -0700135 NeedsDhcp bool `yaml:"needs_dhcp"`
Matteo Scandolo4a036262020-08-17 15:56:13 -0700136 NeedsIgmp bool `yaml:"needs_igmp"`
137 CTagAllocation string `yaml:"c_tag_allocation"`
138 STagAllocation string `yaml:"s_tag_allocation"`
139 TechnologyProfileID int `yaml:"tp_id"`
140 UniTagMatch int `yaml:"uni_tag_match"`
141 ConfigureMacAddress bool `yaml:"configure_mac_address"`
Matteo Scandolo8d281372020-09-03 16:23:37 -0700142 UsPonCTagPriority uint8 `yaml:"us_pon_c_tag_priority"`
143 UsPonSTagPriority uint8 `yaml:"us_pon_s_tag_priority"`
144 DsPonCTagPriority uint8 `yaml:"ds_pon_c_tag_priority"`
145 DsPonSTagPriority uint8 `yaml:"ds_pon_s_tag_priority"`
Matteo Scandolo4a036262020-08-17 15:56:13 -0700146}
147type YamlServiceConfig struct {
148 Workflow string
149 Services []ServiceYaml `yaml:"services,flow"`
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100150}
151
Matteo Scandolo4a036262020-08-17 15:56:13 -0700152func (cfg *YamlServiceConfig) String() string {
153 str := fmt.Sprintf("[workflow: %s, Services: ", cfg.Workflow)
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100154
Matteo Scandolo4a036262020-08-17 15:56:13 -0700155 for _, s := range cfg.Services {
156 str = fmt.Sprintf("%s[", str)
157 str = fmt.Sprintf("%sname=%s, c_tag=%d, s_tag=%d, ",
158 str, s.Name, s.CTag, s.STag)
159 str = fmt.Sprintf("%sc_tag_allocation=%s, s_tag_allocation=%s, ",
160 str, s.CTagAllocation, s.STagAllocation)
161 str = fmt.Sprintf("%sneeds_eapol=%t, needs_dhcp=%t, needs_igmp=%t",
Matteo Scandolo8a574812021-05-20 15:18:53 -0700162 str, s.NeedsEapol, s.NeedsDhcp, s.NeedsIgmp)
Matteo Scandolo4a036262020-08-17 15:56:13 -0700163 str = fmt.Sprintf("%stp_id=%d, uni_tag_match=%d",
164 str, s.TechnologyProfileID, s.UniTagMatch)
165 str = fmt.Sprintf("%s]", str)
166 }
167 str = fmt.Sprintf("%s]", str)
168 return str
169}
170
171var (
172 Config *GlobalConfig
173 Services []ServiceYaml
174)
175
176// Load the BBSim configuration. This is a combination of CLI parameters and YAML files
177// We proceed in this order:
178// - Read CLI parameters
179// - Using those we read the yaml files (config and services)
180// - we merge the configuration (CLI has priority over yaml files)
181func LoadConfig() {
182
183 Config = getDefaultOps()
184
185 cliConf := readCliParams()
186
187 yamlConf, err := loadBBSimConf(cliConf.BBSim.ConfigFile)
188
189 if err != nil {
190 log.WithFields(log.Fields{
191 "file": cliConf.BBSim.ConfigFile,
192 "err": err,
193 }).Fatal("Can't read config file")
194 }
195
196 // merging Yaml and Default Values
197 if err := mergo.Merge(Config, yamlConf, mergo.WithOverride); err != nil {
198 log.WithFields(log.Fields{
199 "err": err,
200 }).Fatal("Can't merge YAML and Config")
201 }
202
203 // merging CLI values on top of the yaml ones
204 if err := mergo.Merge(Config, cliConf, mergo.WithOverride); err != nil {
205 log.WithFields(log.Fields{
206 "err": err,
207 }).Fatal("Can't merge CLI and Config")
208 }
209
210 services, err := loadBBSimServices(Config.BBSim.ServiceConfigFile)
211
212 if err != nil {
213 log.WithFields(log.Fields{
214 "file": Config.BBSim.ServiceConfigFile,
215 "err": err,
216 }).Fatal("Can't read services file")
217 }
218
219 Services = services
220
221}
222
223func readCliParams() *GlobalConfig {
224
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700225 conf := getDefaultOps()
Matteo Scandolo4a036262020-08-17 15:56:13 -0700226
227 configFile := flag.String("config", conf.BBSim.ConfigFile, "Configuration file path")
228 servicesFile := flag.String("services", conf.BBSim.ServiceConfigFile, "Service Configuration file path")
Matteo Scandolo94967142021-05-28 11:37:06 -0700229 sadisBpFormat := flag.String("bp_format", conf.BBSim.BandwidthProfileFormat, "Bandwidth profile format, 'mef' or 'ietf'")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700230
231 olt_id := flag.Int("olt_id", conf.Olt.ID, "OLT device ID")
232 nni := flag.Int("nni", int(conf.Olt.NniPorts), "Number of NNI ports per OLT device to be emulated")
233 pon := flag.Int("pon", int(conf.Olt.PonPorts), "Number of PON ports per OLT device to be emulated")
234 onu := flag.Int("onu", int(conf.Olt.OnusPonPort), "Number of ONU devices per PON port to be emulated")
Elia Battistonac63b112022-01-12 18:40:49 +0100235 uni := flag.Int("uni", int(conf.Olt.UniPorts), "Number of Ethernet UNI Ports per ONU device to be emulated")
236 pots := flag.Int("pots", int(conf.Olt.PotsPorts), "Number of POTS UNI Ports per ONU device to be emulated")
Mahir Gunyela1753ae2021-06-23 00:24:56 -0700237
Matteo Scandolo93566702020-09-30 15:19:27 -0700238 oltRebootDelay := flag.Int("oltRebootDelay", conf.Olt.OltRebootDelay, "Time that BBSim should before restarting after a reboot")
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000239 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 -0700240
241 openolt_address := flag.String("openolt_address", conf.BBSim.OpenOltAddress, "IP address:port")
242 api_address := flag.String("api_address", conf.BBSim.ApiAddress, "IP address:port")
243 rest_api_address := flag.String("rest_api_address", conf.BBSim.RestApiAddress, "IP address:port")
amit.ghosh258d14c2020-10-02 15:13:38 +0200244 dmi_server_address := flag.String("dmi_server_address", conf.BBSim.DmiServerAddress, "IP address:port")
Matteo Scandolo4a036262020-08-17 15:56:13 -0700245
246 profileCpu := flag.String("cpuprofile", "", "write cpu profile to file")
247
248 logLevel := flag.String("logLevel", conf.BBSim.LogLevel, "Set the log level (trace, debug, info, warn, error)")
249 logCaller := flag.Bool("logCaller", conf.BBSim.LogCaller, "Whether to print the caller filename or not")
250
251 delay := flag.Int("delay", conf.BBSim.Delay, "The delay between ONU DISCOVERY batches in milliseconds (1 ONU per each PON PORT at a time")
252
253 controlledActivation := flag.String("ca", conf.BBSim.ControlledActivation, "Set the mode for controlled activation of PON ports and ONUs")
254 enablePerf := flag.Bool("enableperf", conf.BBSim.EnablePerf, "Setting this flag will cause BBSim to not store data like traffic schedulers, flows of ONUs etc..")
255 enableEvents := flag.Bool("enableEvents", conf.BBSim.Events, "Enable sending BBSim events on configured kafka server")
256 kafkaAddress := flag.String("kafkaAddress", conf.BBSim.KafkaAddress, "IP:Port for kafka")
257 kafkaEventTopic := flag.String("kafkaEventTopic", conf.BBSim.KafkaEventTopic, "Ability to configure the topic on which BBSim publishes events on Kafka")
258 dhcpRetry := flag.Bool("dhcpRetry", conf.BBSim.DhcpRetry, "Set this flag if BBSim should retry DHCP upon failure until success")
259 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 -0700260
Matteo Scandolo4a036262020-08-17 15:56:13 -0700261 flag.Parse()
262
263 conf.Olt.ID = int(*olt_id)
264 conf.Olt.NniPorts = uint32(*nni)
265 conf.Olt.PonPorts = uint32(*pon)
Mahir Gunyela1753ae2021-06-23 00:24:56 -0700266 conf.Olt.UniPorts = uint32(*uni)
Elia Battistonac63b112022-01-12 18:40:49 +0100267 conf.Olt.PotsPorts = uint32(*pots)
Matteo Scandolo4a036262020-08-17 15:56:13 -0700268 conf.Olt.OnusPonPort = uint32(*onu)
Matteo Scandolo93566702020-09-30 15:19:27 -0700269 conf.Olt.OltRebootDelay = *oltRebootDelay
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000270 conf.Olt.OmciResponseRate = uint8(*omci_response_rate)
Matteo Scandolo4a036262020-08-17 15:56:13 -0700271 conf.BBSim.ConfigFile = *configFile
272 conf.BBSim.ServiceConfigFile = *servicesFile
273 conf.BBSim.CpuProfile = profileCpu
274 conf.BBSim.LogLevel = *logLevel
275 conf.BBSim.LogCaller = *logCaller
276 conf.BBSim.Delay = *delay
277 conf.BBSim.ControlledActivation = *controlledActivation
278 conf.BBSim.EnablePerf = *enablePerf
279 conf.BBSim.Events = *enableEvents
280 conf.BBSim.KafkaAddress = *kafkaAddress
281 conf.BBSim.OpenOltAddress = *openolt_address
282 conf.BBSim.ApiAddress = *api_address
283 conf.BBSim.RestApiAddress = *rest_api_address
284 conf.BBSim.KafkaEventTopic = *kafkaEventTopic
285 conf.BBSim.AuthRetry = *authRetry
286 conf.BBSim.DhcpRetry = *dhcpRetry
amit.ghosh258d14c2020-10-02 15:13:38 +0200287 conf.BBSim.DmiServerAddress = *dmi_server_address
Matteo Scandolo4a036262020-08-17 15:56:13 -0700288
289 // update device id if not set
290 if conf.Olt.DeviceId == "" {
291 conf.Olt.DeviceId = net.HardwareAddr{0xA, 0xA, 0xA, 0xA, 0xA, byte(conf.Olt.ID)}.String()
292 }
293
Matteo Scandolo94967142021-05-28 11:37:06 -0700294 // check that the BP format is valid
295 if (*sadisBpFormat != BP_FORMAT_MEF) && (*sadisBpFormat != BP_FORMAT_IETF) {
296 log.Fatalf("Invalid parameter 'bp_format', supported values are %s and %s, you provided %s", BP_FORMAT_MEF, BP_FORMAT_IETF, *sadisBpFormat)
297 }
298 conf.BBSim.BandwidthProfileFormat = *sadisBpFormat
299
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700300 return conf
Matteo Scandolo4a036262020-08-17 15:56:13 -0700301}
302
303func getDefaultOps() *GlobalConfig {
304
305 c := &GlobalConfig{
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100306 BBSimConfig{
Matteo Scandolo94967142021-05-28 11:37:06 -0700307 ConfigFile: "configs/bbsim.yaml",
308 ServiceConfigFile: "configs/att-services.yaml",
309 LogLevel: "debug",
310 LogCaller: false,
311 Delay: 200,
312 OpenOltAddress: ":50060",
313 ApiAddress: ":50070",
314 RestApiAddress: ":50071",
315 LegacyApiAddress: ":50072",
316 LegacyRestApiAddress: ":50073",
317 SadisRestAddress: ":50074",
318 SadisServer: true,
319 KafkaAddress: ":9092",
320 Events: false,
321 ControlledActivation: "default",
322 EnablePerf: false,
323 KafkaEventTopic: "",
324 DhcpRetry: false,
325 AuthRetry: false,
326 DmiServerAddress: ":50075",
327 BandwidthProfileFormat: BP_FORMAT_MEF,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100328 },
329 OltConfig{
330 Vendor: "BBSim",
331 Model: "asfvolt16",
332 HardwareVersion: "emulated",
333 FirmwareVersion: "",
334 DeviceSerialNumber: "BBSM00000001",
335 PonPorts: 1,
336 NniPorts: 1,
337 OnusPonPort: 1,
338 Technology: "XGS-PON",
339 ID: 0,
Matteo Scandolo93566702020-09-30 15:19:27 -0700340 OltRebootDelay: 60,
Pragya Arya996a0892020-03-09 21:47:52 +0530341 PortStatsInterval: 20,
Holger Hildebrandtc10bab12021-04-27 09:23:48 +0000342 OmciResponseRate: 10,
Mahir Gunyela1753ae2021-06-23 00:24:56 -0700343 UniPorts: 4,
Elia Battistonac63b112022-01-12 18:40:49 +0100344 PotsPorts: 0,
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100345 },
346 BBRConfig{
347 LogLevel: "debug",
348 LogCaller: false,
349 },
350 }
351 return c
352}
353
354// LoadBBSimConf loads the BBSim configuration from a YAML file
Matteo Scandolo4a036262020-08-17 15:56:13 -0700355func loadBBSimConf(filename string) (*GlobalConfig, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100356 yamlConfig := getDefaultOps()
357
358 yamlFile, err := ioutil.ReadFile(filename)
359 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700360 log.WithFields(log.Fields{
361 "err": err,
362 "filename": filename,
363 }).Error("Cannot load BBSim configuration file. Using defaults.")
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100364 return yamlConfig, nil
365 }
366
367 err = yaml.Unmarshal(yamlFile, yamlConfig)
368 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700369 return nil, err
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100370 }
371
372 return yamlConfig, nil
373}
374
Matteo Scandolo4a036262020-08-17 15:56:13 -0700375// LoadBBSimServices parses a file describing the services that need to be created for each UNI
376func loadBBSimServices(filename string) ([]ServiceYaml, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100377
Matteo Scandolo4a036262020-08-17 15:56:13 -0700378 yamlServiceCfg := YamlServiceConfig{}
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100379
Matteo Scandolo4a036262020-08-17 15:56:13 -0700380 yamlFile, err := ioutil.ReadFile(filename)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700381 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700382 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700383 }
384
Matteo Scandolo4a036262020-08-17 15:56:13 -0700385 err = yaml.Unmarshal([]byte(yamlFile), &yamlServiceCfg)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700386 if err != nil {
Matteo Scandolo4a036262020-08-17 15:56:13 -0700387 return nil, err
Matteo Scandolof65e6872020-04-15 15:18:43 -0700388 }
389
Matteo Scandolo4a036262020-08-17 15:56:13 -0700390 for _, service := range yamlServiceCfg.Services {
391
392 if service.CTagAllocation == "" || service.STagAllocation == "" {
393 log.Fatal("c_tag_allocation and s_tag_allocation are mandatory fields")
394 }
395
396 if _, err := tagAllocationFromString(string(service.CTagAllocation)); err != nil {
397 log.WithFields(log.Fields{
398 "err": err,
399 }).Fatal("c_tag_allocation is not valid")
400 }
Matteo Scandolof65e6872020-04-15 15:18:43 -0700401 }
402
Matteo Scandolo4a036262020-08-17 15:56:13 -0700403 log.WithFields(log.Fields{
404 "services": yamlServiceCfg.String(),
405 }).Debug("BBSim services description correctly loaded")
406 return yamlServiceCfg.Services, nil
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700407}
408
Matteo Scandolo4a036262020-08-17 15:56:13 -0700409// This is only used by BBR
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700410func GetBBROpts() BBRCliOptions {
411
412 bbsimIp := flag.String("bbsimIp", "127.0.0.1", "BBSim IP")
413 bbsimPort := flag.String("bbsimPort", "50060", "BBSim Port")
414 bbsimApiPort := flag.String("bbsimApiPort", "50070", "BBSim API Port")
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700415 logFile := flag.String("logfile", "", "Log to a file")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700416
Matteo Scandoloc11074d2020-09-14 14:59:24 -0700417 LoadConfig()
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700418
419 bbrOptions := BBRCliOptions{
Matteo Scandolo4a036262020-08-17 15:56:13 -0700420 Config,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700421 *bbsimIp,
422 *bbsimPort,
423 *bbsimApiPort,
Matteo Scandolof5c537e2019-10-28 16:45:57 -0700424 *logFile,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700425 }
426
427 return bbrOptions
428}