mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-02 15:59:22 +01:00
16 lines
373 B
SYSTEMD
16 lines
373 B
SYSTEMD
|
[Unit]
|
||
|
Description=Enable IPv6 forwarding - ULA
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=yes
|
||
|
ExecStart=/sbin/sysctl net.ipv6.conf.all.forwarding=1
|
||
|
ExecStart=/sbin/ip addr add fdb8:9a38:1607::1/64 dev eth0
|
||
|
|
||
|
ExecStop=/sbin/sysctl net.ipv6.conf.all.forwarding=0
|
||
|
ExecStop=/sbin/ip addr del fdb8:9a38:1607::/64 dev eth0
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|