-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgobgp.service
71 lines (60 loc) · 2.1 KB
/
gobgp.service
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#####
#
# Systemd Service file for `privex/looking-glass`
#
# Requires `gobgpd` to be installed into /usr/bin and config at /etc/gbgp.conf (edit if required)
#
# To use this file, copy it into /etc/systemd/system/gobgp.service and ensure you've placed your GoBGP config
# at /etc/gbgp.conf
#
# Once adjusted for your specific installation, run the following:
#
# systemctl enable gobgp.service
# systemctl start gobgp.service
#
# GoBGP Daemon will now have started in the background as a systemd service, and will automatically start on reboot
#
#####
[Unit]
Description=GoBGP Daemon (added by Privex)
After=network.target
[Service]
Type=simple
User=root
ExecStart=/usr/bin/gobgpd -f /etc/gbgp.conf
Restart=always
RestartSec=30
StandardOutput=syslog
# Hardening measures
####################
PrivateTmp=true
# Mount /usr, /boot/ and /etc read-only for the process.
ProtectSystem=full
# Disallow the process and all of its children to gain
# new privileges through execve().
NoNewPrivileges=true
# Use a new /dev namespace only populated with API pseudo devices
# such as /dev/null, /dev/zero and /dev/random.
PrivateDevices=true
# Deny the creation of writable and executable memory mappings.
MemoryDenyWriteExecute=true
[Install]
WantedBy=multi-user.target
Alias=gobgpd.service
#####
# +===================================================+
# | © 2019 Privex Inc. |
# | https://www.privex.io |
# +===================================================+
# | |
# | Privex Looking Glass |
# | License: GNU AGPL v3 |
# | |
# | https://github.com/Privex/looking-glass |
# | |
# | Core Developer(s): |
# | |
# | (+) Chris (@someguy123) [Privex] |
# | |
# +===================================================+
#####