2024-10-15 14:53:35 +00:00
|
|
|
# Debian Einstellungen
|
|
|
|
|
|
|
|
### IPv6 abschalten:
|
2024-10-15 15:02:02 +00:00
|
|
|
|
|
|
|
#### Sofortige Anwendung:
|
2024-10-15 14:53:35 +00:00
|
|
|
```
|
2024-10-15 14:57:08 +00:00
|
|
|
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
|
|
|
|
sudo sysctl -w net.ipv6.conf.default.disable_ipv6=1
|
2024-10-15 15:02:02 +00:00
|
|
|
```
|
2024-10-15 14:57:08 +00:00
|
|
|
|
2024-10-15 15:02:02 +00:00
|
|
|
#### Dauerhafte Anwendung:
|
|
|
|
```
|
2024-10-15 14:57:08 +00:00
|
|
|
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
|
|
|
```
|
2024-10-15 15:02:02 +00:00
|
|
|
|
|
|
|
#### Kernel-Variable beim Booten:
|
|
|
|
|
|
|
|
in `/etc/default/grub`
|
|
|
|
```
|
|
|
|
GRUB_CMDLINE_LINUX="ipv6.disable=1"
|
|
|
|
|
|
|
|
```
|
|
|
|
ändern und mit `sudo update-grub` aktivieren
|
|
|
|
|