template/Debian.md aktualisiert
This commit is contained in:
parent
fd231d90e1
commit
6b8bd116de
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user