Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: 2020 The Magma Authors. |
| 2 | # SPDX-FileCopyrightText: 2022 Open Networking Foundation <support@opennetworking.org> |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 3 | # |
Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 4 | # SPDX-License-Identifier: BSD-3-Clause |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 5 | |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 6 | # |
| 7 | # log_level is set in mconfig. It can be overridden here |
| 8 | |
Wei-Yu Chen | 678f0a5 | 2021-12-21 13:50:52 +0800 | [diff] [blame] | 9 | prometheus: |
| 10 | ip: 0.0.0.0 |
| 11 | port: 8000 |
| 12 | |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 13 | tr069: |
Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 14 | interface: enp6s18 # NOTE: this value must be consistent with dnsmasq.conf |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 15 | port: 48080 |
| 16 | perf_mgmt_port: 8081 |
| 17 | # NOTE: this is the IP which enodeb will communicate with enodebd |
| 18 | # if this is ever changed in dnsd.yml, this needs to be updated too |
Wei-Yu Chen | ad55cb8 | 2022-02-15 20:07:01 +0800 | [diff] [blame] | 19 | public_ip: 127.0.0.1 |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 20 | |
Wei-Yu Chen | 49950b9 | 2021-11-08 19:19:18 +0800 | [diff] [blame] | 21 | # Reboot eNodeB if eNodeB should be connected to MME but isn't |
| 22 | # This is a workaround for a bug with BaiCells eNodeB where the S1 connection |
| 23 | # gets into a bad state |
| 24 | reboot_enodeb_on_mme_disconnected: True |
| 25 | |
| 26 | # Enable webui for debugging for a list of eNB serial numbers. |
| 27 | # Not supported on all enodeb models |
| 28 | web_ui_enable_list: [] |
| 29 | |
| 30 | # Network interface to terminate S1 |
| 31 | s1_interface: eth1 |
Wei-Yu Chen | 31ebdb5 | 2022-06-27 16:53:11 +0800 | [diff] [blame] | 32 | |
| 33 | # enodebd log_level - supported options: INFO, DEBUG, WARNING, ERROR, FATAl |
| 34 | log_level: INFO |
| 35 | |
| 36 | # firmware download information and credential used by enodebd |
| 37 | # for "filesize", calculated in Bytes, for device to check if it has enough space to download file |
| 38 | # put 0 to ask device to download the firmware anyway (but it may fail) |
| 39 | firmware: |
| 40 | url: "" |
| 41 | filename: "" |
| 42 | filesize: 0 |
| 43 | username: "" |
| 44 | password: "" |