proxmox-ve/template/Debian.md

26 lines
497 B
Markdown

# Debian Einstellungen
### IPv6 abschalten:
#### 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
```
#### Kernel-Variable beim Booten:
in `/etc/default/grub`
```
GRUB_CMDLINE_LINUX="ipv6.disable=1"
```
ändern und mit `sudo update-grub` aktivieren