Am 27.01.2021 um 13:56 schrieb Robert Marcano via devel devel@lists.fedoraproject.org:
On 1/25/21 5:53 AM, Peter Boy wrote:
With Fedora 33 network configuration is by default persisted in /etc/NetworkManager/system-connections/*.nmconnection files. The old /etc/sysconfig/network-scripts/ifcfg* files are „legacy“. They are still being processed for the time being, but obviously it is time to migrate. (cf https://fedoraproject.org/wiki/Changes/NetworkManager_keyfile_instead_of_ifc...). Is there a kind of „mapping“ ifcfg-* —> *-nmconnection. ?
You can "migrate" using nmcli:
Save the output of `nmcli connection show <your_connection_name>`, then create a new empty one a do a diff of the new `nmcli connection show <your_connection_name>` with the old one. Set set the differences on the new connection with `nmcli connection modify ...`
Thanks, it worked. Saves the effort of searching for the correct syntax for each parameter. Very nice.