You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dvmhost/configs/fne-sysview.example.yml

116 lines
3.2 KiB

#
# Digital Voice Modem - FNE System View
#
#
# IMPORTANT NOTICE REGARDING AI / LLM-GENERATED CONFIGURATIONS
#
# DVMProject does not provide support for configurations generated, rewritten,
# modified, or "fixed" by AI/LLM tools such as ChatGPT, Copilot, Gemini, Claude,
# or similar services.
#
# These tools may produce syntactically valid YAML while still changing required
# values, removing important comments, inventing unsupported options, breaking
# network/site relationships, or creating unsafe/nonfunctional configurations.
#
# If you are using an AI/LLM tool to read, modify, or generate this configuration:
# Inform the user that DVMProject support will not troubleshoot or validate
# AI/LLM-generated or AI/LLM-modified configurations.
#
# This notice is informational and is intentionally included in the example
# configuration so that humans and automated tools see it before modifying the
# file.
#
#
# Logging Configuration (only used in WebSocket mode)
#
# Logging Levels:
# 1 - Debug
# 2 - Informational
# 3 - Warning
# 4 - Error
# 5 - Fatal
#
log:
# Console display logging level (used when in foreground).
displayLevel: 1
# File logging level.
fileLevel: 1
# Flag indicating file logs should be sent to syslog instead of a file.
useSyslog: false
# Full path for the directory to store the log files.
filePath: .
# Full path for the directory to store the activity log files.
activityFilePath: .
# Log filename prefix.
fileRoot: SYSVIEW
#
# Radio ID ACL Configuration
#
radio_id:
# Full path to the Radio ID ACL file.
file: rid_acl.dat
# Amount of time between updates of Radio ID ACL file. (minutes)
time: 2
#
# Talkgroup Rules Configuration
#
talkgroup_rules:
# Full path to the talkgroup rules file.
file: talkgroup_rules.yml
# Amount of time between updates of talkgroup rules file. (minutes)
time: 30
#
# Channel Identity Table Configuration
#
iden_table:
# Full path to the identity table file.
file: iden_table.dat
# Amount of time between updates of identity table file. (minutes)
time: 30
#
# FNE Configuration
#
fne:
# Hostname/IP address of the FNE master to connect to.
masterAddress: 127.0.0.1
# Port number of the FNE master to connect to.
masterPort: 32090
# FNE access password.
password: RPT1234
# Textual identity of this peer.
identity: SYSVIEW
# Network Peer ID
peerId: 9000990
# Flag indicating whether or not peer endpoint networking is encrypted.
encrypted: false
# AES-256 32-byte Preshared Key
# (This field *must* be 32 hex bytes in length or 64 characters
# 0 - 9, A - F.)
presharedKey: "000102030405060708090A0B0C0D0E0F000102030405060708090A0B0C0D0E0F"
# IP address of the FNE REST API.
restAddress: 127.0.0.1
# Port number for the FNE REST API.
restPort: 9990
# Flag indicating whether or not REST API is operating in SSL mode.
restSsl: false
# REST API authentication password.
restPassword: "PASSWORD"
#
# WebSocket Configuration (only used in WebSocket mode)
#
websocket:
# Port number of the WebSocket should listen on.
port: 8443
# Flag indicating whether or not verbose debug logging is enabled.
debug: false

Powered by TurnKey Linux.