Run as a service
This guide applies to systems using systemd. It covers starting dae as a service and enabling it at boot.
Prerequisites
Optional Geo Data Files
For more convenient traffic split, dae relies on the following data sources, geoip.dat and geosite.dat.
sudo mkdir -p /usr/local/share/dae/
pushd /usr/local/share/dae/
sudo curl -L -o geoip.dat https://github.com/v2fly/geoip/releases/latest/download/geoip.dat
sudo curl -L -o geosite.dat https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat
popdmkdir -p /usr/local/share/dae/
pushd /usr/local/share/dae/
curl -L -o geoip.dat https://github.com/v2fly/geoip/releases/latest/download/geoip.dat
curl -L -o geosite.dat https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat
popdConfiguration File
Note: The config file is recommended to save under
/etc/dae
Download the sample config file:
sudo mkdir -p /etc/dae
sudo curl -L -o /etc/dae/config.dae https://github.com/daeuniverse/dae/raw/main/example.dae
sudo chmod 600 /etc/dae/config.daemkdir -p /etc/dae
curl -L -o /etc/dae/config.dae https://github.com/daeuniverse/dae/raw/main/example.dae
chmod 600 /etc/dae/config.daeBefore starting the service, edit /etc/dae/config.dae to set the network interfaces and subscription or node values. See Minimal configuration.
Download pre-compiled binaries
Releases are available in https://github.com/daeuniverse/dae/releases
Note: If you would like to get a taste of new features, there are nightly (latest) builds available. Most of the time, newly proposed changes will be included in
PRsand will be exported as cross-platform executable binaries in builds (GitHub Action Workflow Build). Noted that newly introduced features are sometimes buggy, do it at your own risk. However, we still highly encourage you to check out our latest builds as it may help us further analyze features stability and resolve potential bugs accordingly.
Nightly builds are available in https://github.com/daeuniverse/dae/actions/workflows/build-nightly.yml
sudo chmod +x ./dae
sudo install -Dm755 dae /usr/bin/chmod +x ./dae
install -Dm755 dae /usr/bin/Check the binary
# helper
dae --help
# check version
dae versionSetup
# download the sample systemd.service
sudo curl -L -o /etc/systemd/system/dae.service https://github.com/daeuniverse/dae/raw/main/install/dae.service# download the sample systemd.service
curl -L -o /etc/systemd/system/dae.service https://github.com/daeuniverse/dae/raw/main/install/dae.serviceStart and enable the service
sudo systemctl daemon-reload
sudo systemctl enable dae --now
sudo systemctl status daesystemctl daemon-reload
systemctl enable dae --now
systemctl status daeCheck System Logs
sudo journalctl -xefu daejournalctl -xefu daeAfter completing Minimal configuration, see Service management to start, enable, reload or restart dae.
Source: dae upstream · AGPL-3.0 license.
