# Copyright (C) 2012-2022 Amarisoft # # LTE service default configuration 2022-02-23 # # Please do not edit this file as it will be replaced on next install # # You may create your own config file and include this one with source shell # command. # Then, update ots.cfg symbolink link to point to this file. # General ERROR_DELAY="5" # Component restart time in case of error (in seconds) #AMARISOFT_PATH="" # Change license file location #HOSTNAME="My name" # Use this to override system hostname (| are forbidden) # Logs LOG_FILE="ots.log" LOG_FILE_SIZE="1M" # Service log file size threshold for rotation LOG_SIZE="250M" # Components log file size threshold for rotation LOG_PATH="/var/log/lte/" # Log rotation target path LOG_PERSISTENT_SIZE="5G" # Maximum size of logs to store in LOG_PATH (if no unit KBytes assumed) LOG_PERSISTENT_COUNT="2000" # Maximum number of log file to keep in LOG_PATH LOG_GZIP="0" # Set to positive value to compress logs in LOG_PATH LOG_POLL_DELAY="10" LOG_BACKUP_ON_STOP="y" # Set it to n to avoid log backup (to LOG_PATH) on component stop # Component configuration # is component ID and must be unique # # _TYPE: component type (LICENSE MME ENB IMS MBMSGW UE...) # _TITLE: display name # _PATH: Component path. Set it to empty string to disable component # _INIT: arguments for lte_init.sh script # _WIN: Component screen window # (must be unique) # _CONFIG_FILE: config file used by component # _OUTPUT_FILE: define it to dump stdout/stderr to a file # _AUTOSTART: defines if component must be started by service (default is y) # _SCRIPT: defines shell script that will be executed on each component state change # Arguments are [] where state can be: # - starting: before executing component binary # - started: after component binary has started # - error: when any error occurred (In this case the third argument will be filed with error message) # - stop: after successful component stop # This can be used to perform any action before component start by using the state starting # _START_DELAY: time to wait in seconds before starting component # List of components to start COMPONENTS="" # Start of section generated by installer # Thu 24 Feb 2022 04:47:52 PM UTC # LTE automatic service config OTS_PATH="/root/ots" #OTS_AUTOSTART="y" WWW_PATH="/var/www/html/lte/" # EPC config COMPONENTS+=" MME" MME_TYPE="MME" MME_WIN="0" MME_PATH="/root/mme" #MME_AUTOSTART="y" MME_INIT=" -6" MME_CONFIG_FILE="config/mme.cfg" COMPONENTS+=" MME1" MME1_TYPE="MME" MME1_WIN="6" MME1_PATH="/root/mme" #MME1_AUTOSTART="y" MME1_INIT=" -6" MME1_CONFIG_FILE="config/mme-ims-2plmn-1.cfg" # IMS config COMPONENTS+=" IMS" IMS_TYPE="IMS" IMS_WIN="3" IMS_PATH="/root/mme" #IMS_AUTOSTART="y" IMS_DEP="MME" IMS_CONFIG_FILE="config/ims.cfg" # eNB config COMPONENTS+=" ENB" ENB_TYPE="ENB" ENB_WIN="1" ENB_PATH="/root/enb" #ENB_AUTOSTART="y" ENB_INIT="" ENB_CONFIG_FILE="config/enb.cfg" # MBMS gateway config COMPONENTS+=" MBMSGW" MBMSGW_TYPE="MBMSGW" MBMSGW_WIN="4" MBMSGW_PATH="/root/mbms" #MBMSGW_AUTOSTART="y" MBMSGW_INIT="" MBMSGW_CONFIG_FILE="config/mbmsgw.cfg" # End of section generated by installer