Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/guides/network/basic_network_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing comma after sudo or not?

* Elevated or administrative privileges on the system (for example root, `sudo` and so on)
* Optional: familiarity with networking concepts

=== "9"
Expand All @@ -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
Expand Down Expand Up @@ -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:

Expand Down Expand Up @@ -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.

Expand Down