diff --git a/docs/guides/network/basic_network_configuration.md b/docs/guides/network/basic_network_configuration.md index 960d3ddbdc..3954727abf 100644 --- a/docs/guides/network/basic_network_configuration.md +++ b/docs/guides/network/basic_network_configuration.md @@ -15,7 +15,7 @@ You can't do much with a computer these days without network connectivity. Wheth ## Prerequisites * A certain amount of comfort operating from the command line -* Elevated or administrative privileges on the system (For example root, `sudo` and so on) +* Elevated or administrative privileges on the system (for example root, `sudo` and so on) * Optional: familiarity with networking concepts === "9" @@ -27,7 +27,7 @@ You can't do much with a computer these days without network connectivity. Wheth ## Prerequisites * A certain amount of comfort operating from the command line - * Elevated or administrative privileges on the system (For example root, `sudo` and so on) + * Elevated or administrative privileges on the system (for example root, `sudo` and so on) * Optional: familiarity with networking concepts ## Using NetworkManager service @@ -405,9 +405,9 @@ You can't do much with a computer these days without network connectivity. Wheth ### IP Address - In the previous `/etc/sysconfig/network-scripts/ifcfg-enp1s0` listing, we see that the value of the `BOOTPROTO` parameter or key is set to `none`. The configred system is set to a static IP address scheme. + In the previous `/etc/sysconfig/network-scripts/ifcfg-enp1s0` listing, we see that the value of the `BOOTPROTO` parameter or key is set to `none`. The configured system is set to a static IP address scheme. - If instead you want to configure the system to use a dynamic IP address scheme, you will have to change the value of the `BOOTPROTO` parameter from `none` to `dhcp` and also remove the `IPADDR`, `PREFIX` and `GATEWAY` lines. This is necessary because all that information will be automaically obtained from any available DHCP server. + If instead you want to configure the system to use a dynamic IP address scheme, you will have to change the value of the `BOOTPROTO` parameter from `none` to `dhcp` and also remove the `IPADDR`, `PREFIX` and `GATEWAY` lines. This is necessary because all that information will be automatically obtained from any available DHCP server. To configure a static IP address attribution, set the following: @@ -516,7 +516,7 @@ You can't do much with a computer these days without network connectivity. Wheth [user@server ~]$ sudo nmcli connection modify enp1s0 ipv4.method manual ``` - !!!tip "When does the connection get updated?" + !!! tip "When does the connection get updated?" `nmcli connection modify` will not modify the *runtime* configuration, but update the `/etc/sysconfig/network-scripts` configuration files with the appropriate values based on what you have told `nmcli` to configure.