forked from canonical/netplan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: Explanation about 00-network-manager-all.yaml
Replaces: canonical#373
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
## NetworkManager default configuration | ||
|
||
Without configuration, Netplan will not do anything. Therefore, on Desktop | ||
systems, a useful configuration snippet to just bring up networking via DHCP is | ||
as follows: | ||
|
||
```yaml | ||
network: | ||
version: 2 | ||
renderer: NetworkManager | ||
``` | ||
This will make NetworkManager manage all devices and by default. Any ethernet | ||
device will come up with DHCP, once carrier is detected. This is basically | ||
Netplan passing control over to NetworkManager at boot time. | ||
You can still define any more specific IDs in you Netplan configuration, to | ||
configure interfaces individually, according to Netplan's [YAML reference](/netplan-yaml/). | ||
When NetworkManager's [Netplan desktop integration}(/netplan-everywhere/) is | ||
activated, NetworkManager will automatically create specific Netplan IDs for | ||
each of its connection profiles. | ||
This configuration snippet is shipped by default on Ubuntu Desktop systems | ||
through the [ubuntu-settings](https://launchpad.net/ubuntu/+source/ubuntu-settings) | ||
package as `/usr/lib/netplan/00-network-manager-all.yaml`. |