Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 796 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 796 Bytes

dump1090 forwarder

Build

env GOOS=linux GOARCH=arm GOARM=7 go build

Install

Executable

Place compiled executable dump1090-forward to /home/pi/dump1090-forward.

Systemd

Make sure you are running dump1090-mutability in your system.

Create systemd unit file /etc/systemd/system/dump1090-forward :

[Unit]
Description=Read dump1090 port 30005 and forward it to another dump1090 port 30004
Requires=dump1090-mutability.service

[Service]
Type=simple
ExecStart=/home/pi/dump1090-forward
Restart=always
User=pi

[Install]
Alias=dump1090-forward

Reload and start:

sudo systemctl daemon-reload
sudo systemctl enable dump1090-forward
sudo systemctl start dump1090-forward

Check logs:

journalctl -u dump1090-forward.service