shell-things/etc/systemd/system/ipv6/ipv6.service

16 lines
383 B
SYSTEMD
Raw Normal View History

2015-04-23 21:38:30 +02:00
[Unit]
Description=Enable IPv6 forwarding
After=network-online.target
2015-04-23 21:38:30 +02:00
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/sbin/sysctl net.ipv6.conf.all.forwarding=1
ExecStart=/sbin/ip addr add 2001:14b8:100:8397::1/64 dev eth0
ExecStop=/sbin/sysctl net.ipv6.conf.all.forwarding=0
ExecStop=/sbin/ip addr del 2001:14b8:100:8397::1/64 dev eth0
[Install]
WantedBy=multi-user.target