Update Installing using Docker (recommended!) authored by Simon's avatar Simon
# **The current recommended way of installing FreeDMR is in docker. ** # \*\*The current recommended way of installing FreeDMR is in docker. \*\*
Docker is the fastest way to having a running system, complete with proxy and echo, ready Docker is the fastest way to having a running system, complete with proxy and echo, ready to serve repeaters and hotspots. The Docker image can be run on any system that can run Linux docker containers. We recommend Debian 11.
to serve repeaters and hotspots. The Docker image can be run on any system that can run Linux
docker containers. We recommend Debian 11.
Not convinced? Read [Why Docker?](Why Docker) Not convinced? Read [Why Docker?](Why%20Docker)
# Quick Start # Quick Start
...@@ -26,151 +24,23 @@ Firstly, you need a system running docker.Follow the instructions for your distr ...@@ -26,151 +24,23 @@ Firstly, you need a system running docker.Follow the instructions for your distr
A change needs to be made to the docker config for openbridge to work correctly: A change needs to be made to the docker config for openbridge to work correctly:
`echo '{ "userland-proxy": false}' > /etc/docker/daemon.json` `echo '{ "userland-proxy": false}' > /etc/docker/daemon.json`
`systemctl restart docker` `systemctl restart docker`
## Grab and edit the config file ## Grab and edit the config file
Get the file: [freedmr.cfg](https://gitlab.hacknix.net/hacknix/FreeDMR/-/blob/93a3fc244338ebc5c5a79ecd55e167fa519afd68/docker-configs/freedmr.cfg)
`mkdir /etc/freedmr` `mkdir /etc/freedmr`
edit /etc/freedmr/freedmr.cfg with your favourite editor: place the freedmr.cfg file in this directory.
[GLOBAL]
PATH: ./
PING_TIME: 10
MAX_MISSED: 3
USE_ACL: True
REG_ACL: PERMIT:ALL
SUB_ACL: DENY:0-100000
TGID_TS1_ACL: PERMIT:ALL
TGID_TS2_ACL: DENY:0-79
GEN_STAT_BRIDGES: True
ALLOW_NULL_PASSPHRASE: True
ANNOUNCEMENT_LANGUAGES:
DATA_GATEWAY: False
VALIDATE_SERVER_IDS: True
SERVER_ID: 0
[REPORTS]
REPORT: True
REPORT_INTERVAL: 60
REPORT_PORT: 4321
REPORT_CLIENTS: *
[LOGGER]
LOG_FILE: /dev/null
LOG_HANDLERS: console-timed
LOG_LEVEL: INFO
LOG_NAME: FreeDMR
[ALIASES]
TRY_DOWNLOAD: True
PATH: ./json/
PEER_FILE: peer_ids.json
SUBSCRIBER_FILE: subscriber_ids.json
TGID_FILE: talkgroup_ids.json
PEER_URL: https://www.radioid.net/static/rptrs.json
SUBSCRIBER_URL: https://www.radioid.net/static/users.json
TGID_URL: http://downloads.freedmr.uk/downloads/talkgroup_ids.json
LOCAL_SUBSCRIBER_FILE: local_subscriber_ids.json
STALE_DAYS: 1
SUB_MAP_FILE: sub_map.pkl
SERVER_ID_URL: http://downloads.freedmr.uk/downloads/FreeDMR_Hosts.csv
SERVER_ID_FILE: server_ids.tsv
TOPO_FILE: topography.json
#Control server shared allstar instance via dial / AMI
[ALLSTAR]
ENABLED: True
USER:admin
PASS: password
SERVER: asl.example.com
PORT: 5038
NODE: 11111
[OBP-TEST]
MODE: OPENBRIDGE
ENABLED: False
IP:
PORT: 62044
NETWORK_ID: 1
PASSPHRASE: mypass
TARGET_IP:
TARGET_PORT: 62044
USE_ACL: True
SUB_ACL: DENY:1
TGID_ACL: PERMIT:ALL
RELAX_CHECKS: True
ENHANCED_OBP: True
[SYSTEM]
MODE: MASTER
ENABLED: True
REPEAT: True
MAX_PEERS: 1
EXPORT_AMBE: False
IP: 127.0.0.1
PORT: 54000
PASSPHRASE:
GROUP_HANGTIME: 5
USE_ACL: True
REG_ACL: DENY:1
SUB_ACL: DENY:1
TGID_TS1_ACL: PERMIT:ALL
TGID_TS2_ACL: PERMIT:ALL
DEFAULT_UA_TIMER: 60
SINGLE_MODE: True
VOICE_IDENT: True
TS1_STATIC:
TS2_STATIC:
DEFAULT_REFLECTOR: 0
ANNOUNCEMENT_LANGUAGE: en_GB_2
GENERATOR: 100
ALLOW_UNREG_ID: False
PROXY_CONTROL: True
OVERRIDE_IDENT_TG:
[ECHO]
MODE: PEER
ENABLED: True
LOOSE: False
EXPORT_AMBE: False
IP: 127.0.0.1
PORT: 54916
MASTER_IP: 127.0.0.1
MASTER_PORT: 54915
PASSPHRASE: passw0rd
CALLSIGN: ECHO
RADIO_ID: 1000001
RX_FREQ: 449000000
TX_FREQ: 444000000
TX_POWER: 25
COLORCODE: 1
SLOTS: 1
LATITUDE: 00.0000
LONGITUDE: 000.0000
HEIGHT: 75
LOCATION: United Kingdom
DESCRIPTION: ECHO
URL: www.w1abc.org
SOFTWARE_ID: 20170620
PACKAGE_ID: MMDVM_FreeDMR
GROUP_HANGTIME: 5
OPTIONS:
USE_ACL: True
SUB_ACL: DENY:1
TGID_TS1_ACL: PERMIT:ALL
TGID_TS2_ACL: PERMIT:ALL
ANNOUNCEMENT_LANGUAGE: en_GB_2
## Make rules file ## Make rules file
`echo "BRIDGES = {'9990': [{'SYSTEM': 'ECHO', 'TS': 2, 'TGID': 9990, 'ACTIVE': True, 'TIMEOUT': 2, 'TO_TYPE': 'NONE', 'ON': [], 'OFF': [], 'RESET': []},]}" > /etc/freedmr/rules.py` `echo "BRIDGES = {'9990': [{'SYSTEM': 'ECHO', 'TS': 2, 'TGID': 9990, 'ACTIVE': True, 'TIMEOUT': 2, 'TO_TYPE': 'NONE', 'ON': [], 'OFF': [], 'RESET': []},]}" > /etc/freedmr/rules.py`
##Make JSON directory \##Make JSON directory
`mkdir -p /etc/freedmr/json` `mkdir -p /etc/freedmr/json`
...@@ -180,6 +50,7 @@ edit /etc/freedmr/freedmr.cfg with your favourite editor: ...@@ -180,6 +50,7 @@ edit /etc/freedmr/freedmr.cfg with your favourite editor:
## create /etc/freedmr/docker-compose.yml with the following content ## create /etc/freedmr/docker-compose.yml with the following content
```
version: '2.4' version: '2.4'
services: services:
freedmr: freedmr:
...@@ -222,11 +93,13 @@ edit /etc/freedmr/freedmr.cfg with your favourite editor: ...@@ -222,11 +93,13 @@ edit /etc/freedmr/freedmr.cfg with your favourite editor:
config: config:
- subnet: 172.16.238.0/24 - subnet: 172.16.238.0/24
gateway: 172.16.238.1 gateway: 172.16.238.1
```
#Add network tuning \#Add network tuning
Add the following to the end if /etc/sysctl.conf: Add the following to the end if /etc/sysctl.conf:
```
net.core.rmem_default=134217728 net.core.rmem_default=134217728
net.core.rmem_max=134217728 net.core.rmem_max=134217728
net.core.wmem_max=134217728 net.core.wmem_max=134217728
...@@ -234,12 +107,13 @@ Add the following to the end if /etc/sysctl.conf: ...@@ -234,12 +107,13 @@ Add the following to the end if /etc/sysctl.conf:
net.core.netdev_max_backlog=250000 net.core.netdev_max_backlog=250000
net.netfilter.nf_conntrack_udp_timeout=15 net.netfilter.nf_conntrack_udp_timeout=15
net.netfilter.nf_conntrack_udp_timeout_stream=35 net.netfilter.nf_conntrack_udp_timeout_stream=35
```
Run command: Run command:
`sysctl -p` `sysctl -p`
#Run Freedmr \#Run Freedmr
`cd /etc/freedmr` `cd /etc/freedmr`
...@@ -273,5 +147,4 @@ Once you are sure it has run correctly, you can restart in the background ...@@ -273,5 +147,4 @@ Once you are sure it has run correctly, you can restart in the background
This flushes the connection tracking table for NAT. Without this, you might not see traffic for a while. This flushes the connection tracking table for NAT. Without this, you might not see traffic for a while.
For more docker commands go [here](Docker%20Commands%20Cheat%20Sheet)
For more docker commands go [here](Docker Commands Cheat Sheet) \ No newline at end of file
\ No newline at end of file