diff --git a/template/Debian.md b/template/Debian.md index c719d3e..28eb8ae 100644 --- a/template/Debian.md +++ b/template/Debian.md @@ -1,12 +1,25 @@ # Debian Einstellungen ### IPv6 abschalten: + +#### Sofortige Anwendung: ``` -# Sofortige Anwendung: sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1 sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1 +``` -# Dauerhafte Anwendung: +#### 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 +