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-config.example.yml

183 lines
5.6 KiB

#
# Digital Voice Modem - Conference FNE Software Configuration
#
# @package DVM / Conference FNE Software
#
# Flag indicating whether the host will run as a background or foreground task.
daemon: true
#
# Logging Configuration
# Logging Levels:
# 1 - Debug
# 2 - Message
# 3 - Informational
# 4 - Warning
# 5 - Error
# 6 - Fatal
#
log:
# Console display logging level (used when in foreground).
displayLevel: 1
# File logging level.
fileLevel: 1
# 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: DVM
#
# Master
#
master:
# Network Peer ID
peerId: 9000100
# Hostname/IP address to listen on (blank for all).
address: 0.0.0.0
# Port number to listen on.
port: 62031
# FNE access password.
password: RPT1234
# Flag indicating whether or not verbose logging is enabled.
verbose: true
# Flag indicating whether or not verbose debug logging is enabled.
debug: false
# Maximum permitted connections (hard maximum is 250 peers).
connectionLimit: 100
# Flag indicating whether or not peer pinging will be reported.
reportPeerPing: true
# Flag indicating whether or not master 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"
# Flag indicating whether or not DMR traffic will be passed.
allowDMRTraffic: true
# Flag indicating whether or not P25 traffic will be passed.
allowP25Traffic: true
# Flag indicating whether or not NXDN traffic will be passed.
allowNXDNTraffic: true
# Delay from when a call on a parrot TG ends to when the playback starts (in milliseconds).
parrotDelay: 2000
# Flag indicating whether or not a parrot TG call will generate a grant demand.
parrotGrantDemand: true
# Flag indicating whether or not a P25 ADJ_STS_BCAST will pass to any peers.
disallowAdjStsBcast: false
# Flag indicating whether or not a P25 ADJ_STS_BCAST will pass to connected external peers.
disallowExtAdjStsBcast: true
#
# 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
#
# External Peers
#
peers:
- name: EXAMPLEPEER
# Flag indicating whether or not the peer is enabled.
enabled: true
# Hostname/IP address to listen on (blank for all).
address: 127.0.0.1
# Port number to listen on.
port: 32091
# 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: EXPEER
# Network Peer ID
peerId: 9000990
# List of peer IDs to block sending traffic to from this peer.
blockTrafficTo: []
# 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"
#
rxFrequency: 0
#
txFrequency: 0
# Latitude.
latitude: 0.0
# Longitude.
longitude: 0.0
# Textual location for this host.
location: Anywhere, USA
# Flag indicating whether or not verbose debug logging is enabled.
debug: false
#
# System Configuration
#
system:
# Time in seconds between pings to peers.
pingTime: 5
# Maximum number of missable pings before a peer is considered disconnected.
maxMissedPings: 10
# Time in minutes between updates of the talkgroup rules.
tgRuleUpdateTime: 10
# Flag indicating the TGID information for this master will be sent to its peers.
sendTalkgroups: true
# Flag indicating the FNE should use an alternate port dedicated to diagnostic and activity
# log processing. This port number is always: master port + 1 (so for example, a master port
# of 62031 will use 62032 for diagnostic and activity messages.)
useAlternatePortForDiagnostics: false
# Flag indicating whether or not the host activity log will be sent to the network.
allowActivityTransfer: true
# Flag indicating whether or not the host diagnostic log will be sent to the network.
allowDiagnosticTransfer: true
# Flag indicating whether or not REST API is enabled.
restEnable: false
# IP address of the network interface to listen for REST API on (or 0.0.0.0 for all).
restAddress: 127.0.0.1
# Port number for REST API to listen on.
restPort: 9990
# Flag indicating whether or not REST API is operating in SSL mode.
restSsl: false
# HTTPS/TLS certificate.
restSslCertificate: web.crt
# HTTPS/TLS key file.
restSslKey: web.key
# REST API authentication password.
restPassword: "PASSWORD"
# Flag indicating whether or not verbose REST API debug logging is enabled.
restDebug: false
#
# Radio ID ACL Configuration
#
radio_id:
# Full path to the identity table file.
file: rid_acl.dat
# Amount of time between updates of identity table file. (minutes)
time: 2

Powered by TurnKey Linux.