Skip to content

Commit 948dd9b

Browse files
authored
Update RL9_network_manager.md (#1035)
* spelling of teaming * NIC uppercase * remove erroneous s from id Description (The alias) * correct example for nmcli connection show
1 parent e936157 commit 948dd9b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/gemstones/RL9_network_manager.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ shell > nmtui
3535
```bash
3636
Shell > nmcli connection show
3737
NAME UUID TYPE DEVICE
38-
color=green>ens160 25106d13-ba04-37a8-8eb9-64daa05168c9 ethernet ens160
38+
ens160 25106d13-ba04-37a8-8eb9-64daa05168c9 ethernet ens160
3939
```
4040

4141
For RockyLinux 8.x, we introduced how to configure its network [here](./nmtui.md). You can use `vim` to edit the network card configuration file in the **/etc/sysconfig/network-script/** directory, or you can use `nmcli`/`nmtui`, both of which are acceptable.
@@ -66,7 +66,7 @@ In RHEL 9 and the corresponding community version operating systems, consistent
6666
| 4 | Device names incorporate the MAC address. Red Hat Enterprise Linux does not use this scheme by default, but administrators can optionally use it. | enx525400d5e0fb |
6767
| 5 | The traditional unpredictable kernel naming scheme. If `udev` cannot apply any of the other schemes, the device manager uses this scheme. | eth0 |
6868

69-
`udev` device Manager names the prefix of the Nic based on the type of interface:
69+
`udev` device Manager names the prefix of the NIC based on the type of interface:
7070

7171
* **en** for Ethernet.
7272
* **wl** for wireless LAN (WLAN).
@@ -134,14 +134,14 @@ Shell > nmcli connection modify CONNECTION_NAME autoconnect yes ipv6.method dhcp
134134

135135
#### Link aggregation
136136

137-
Some use multiple network cards for link aggregation. In the early days, using **bonding** technology, there were seven working modes (0~6), and the bond mode only supported two network cards at most; Later, the **teming** technology is gradually used as an alternative, there are five working modes, and the team mode can use up to eight network cards. Comparison link between bonding and teming——https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/networking_guide/sec-comparison_of_network_teaming_to_bonding
137+
Some use multiple network cards for link aggregation. In the early days, using **bonding** technology, there were seven working modes (0~6), and the bond mode only supported two network cards at most; Later, the **teaming** technology is gradually used as an alternative, there are five working modes, and the team mode can use up to eight network cards. Comparison link between bonding and teaming——https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/networking_guide/sec-comparison_of_network_teaming_to_bonding
138138

139139
For example, the 0 mode of bonding:
140140

141141
```bash
142142
Shell > nmcli connection add type bond con-name BOND_CONNECTION_NAME ifname BOND_NIC_DEVICE_NAME mode 0
143-
Shell > nmcli connection add type bond-slave ifname NIC_DEVICE_NAME1 masster BOND_NIC_DEVICE_NAME
144-
Shell > nmcli connection add type bond-slave ifname NIC_DEVICE_NAME2 masster BOND_NIC_DEVICE_NAME
143+
Shell > nmcli connection add type bond-slave ifname NIC_DEVICE_NAME1 master BOND_NIC_DEVICE_NAME
144+
Shell > nmcli connection add type bond-slave ifname NIC_DEVICE_NAME2 master BOND_NIC_DEVICE_NAME
145145
```
146146

147147
## Configuration file of the network card (it is not recommended to modify it by means of vim, etc.)
@@ -182,7 +182,7 @@ method=disabled
182182

183183
| key name | description |
184184
|----------------|-------------|
185-
| id | sThe alias of con-name, whose value is a string.|
185+
| id | The alias of con-name, whose value is a string.|
186186
| uuid | Universal unique identifier, whose value is a string. |
187187
| type | The type of connection, whose values can be ethernet, bluetooth, vpn, vlan, and so on. You can use `man nmcli` to view all supported types. |
188188
| interface-name | Network card device name. |

0 commit comments

Comments
 (0)