template/Debian.md aktualisiert

This commit is contained in:
Peter Reichart 2024-10-15 15:02:02 +00:00
parent fd231d90e1
commit 6b8bd116de

View File

@ -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