proxmox-ve/template/Debian.md

13 lines
331 B
Markdown
Raw Normal View History

2024-10-15 14:53:35 +00:00
# Debian Einstellungen
### IPv6 abschalten:
```
2024-10-15 14:57:08 +00:00
# Sofortige Anwendung:
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1
# Dauerhafte Anwendung:
sudo echo net.ipv6.conf.default.disable_ipv6=1 >> /etc/sysctl.conf
sudo echo net.ipv6.conf.all.disable_ipv6=1 >> /etc/sysctl.conf
2024-10-15 14:53:35 +00:00
```