Nmcli anwenden: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
| Zeile 21: | Zeile 21: | ||
=Anzeigend der Einstellungen= | =Anzeigend der Einstellungen= | ||
*nmcli device show enp1s0 | *nmcli device show enp1s0 | ||
| + | =Get info about the current connection= | ||
| + | *nmcli con show | ||
| + | =Add a new bridge= | ||
| + | *nmcli con add type bridge ifname br0 | ||
| + | =Create a slave interface= | ||
| + | *nmcli con add type bridge-slave ifname eno1 master br0 | ||
| + | =Turn on br0= | ||
| + | *nmcli con up br0 | ||
| + | |||
=Quellen= | =Quellen= | ||
*https://www.server-world.info/en/note?os=Fedora_35&p=ntp&f=1 | *https://www.server-world.info/en/note?os=Fedora_35&p=ntp&f=1 | ||
Version vom 15. November 2022, 16:29 Uhr
Liste der Geräte
- nmcli device
Liste der WLAN Verbindungen
- nmcli connection
if you did not set HostName, set it like follows
IPv4 Adresse setzen
- nmcli connection modify enp1s0 ipv4.addresses 10.0.0.30/24
Gateway einstellen
- nmcli connection modify enp1s0 ipv4.gateway 10.0.0.1
DNS setzen
- nmcli connection modify enp1s0 ipv4.dns 10.0.0.10
DNS search
- nmcli connection modify enp1s0 ipv4.dns-search srv.world
Statische Ip
- nmcli connection modify enp1s0 ipv4.method manual
DHCP
- nmcli connection modify enp1s0 ipv4.method auto
Neuladen der Werte
- nmcli connection down enp1s0
- nmcli connection up enp1s0
Anzeigend der Einstellungen
- nmcli device show enp1s0
Get info about the current connection
- nmcli con show
Add a new bridge
- nmcli con add type bridge ifname br0
Create a slave interface
- nmcli con add type bridge-slave ifname eno1 master br0
Turn on br0
- nmcli con up br0