我的笔记本电脑(Ubuntu 18.04.3 LTS)经常无法获取 ipv6 路由信息,直到我在 linux 防火墙上重新启动 radvd。然后一切正常。有什么想法可以让它在没有人工干预的情况下持续工作吗?
答案1
可能更好地了解事情是如何发生的,但你的问题是重新启动服务无需人工干预;这就是我要做的。
创建 systemd 服务和计时器以执行重新启动 radvd 服务的脚本。将以下所有内容复制到 Linux GW 上的单个文件中,chmod 700
然后使用 执行它sudo
。显然,将计时器部分中的“24h”更改为“12h”或其他适合的小时数:
#!/bin/bash
cat <<'EOF'> /root/radvd-restart.sh
#!/bin/bash
#
systemctl restart radvd.service
EOF
cat <<EOF> /etc/systemd/system/radvd-restart.service
[Unit]
Description=Restart radvd Service
[Service]
User=root
Group=root
Type=simple
ExecStart=/bin/bash /root/radvd-restart.sh
[Install]
WantedBy=multi-user.target
EOF
chmod 644 /etc/systemd/system/radvd-restart.service
cat <<EOF> /etc/systemd/system/radvd-restart.timer
[Unit]
Description=Executes /root/radvd-restart.sh every 24 hours
[Timer]
OnUnitInactiveSec=24h
Unit=radvd-restart.service
[Install]
WantedBy=timers.target
EOF
chmod 644 /etc/systemd/system/radvd-restart.timer
systemctl daemon-reload
systemctl enable radvd-restart.service
systemctl enable radvd-restart.timer
systemctl start radvd-restart.service
systemctl start radvd-restart.timer
再次强调,最好了解事情是如何发生的,但这将满足您的要求,无需手动启动服务即可使其正常工作。