You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -150,8 +150,8 @@ In den folgenden Beispielen verwenden wir den Texteditor `nano`. Auf einigen Bet
150
150
>> sudo systemctl restart networking
151
151
>>```
152
152
>>
153
-
>*Debian 12, Ubuntu 20.04+
154
-
>>**Debian 12, Ubuntu 20.04 und höher**
153
+
>**Debian 12, Ubuntu 22.04+**
154
+
>> Debian 12, Ubuntu 22.04 und höher
155
155
>>
156
156
>> Die Konfigurationsdatei für Ihre Additional IPs befindet sich in`/etc/netplan/`. In diesem Beispiel heißt sie `50-cloud-init.yaml`.
157
157
>>
@@ -240,8 +240,8 @@ In den folgenden Beispielen verwenden wir den Texteditor `nano`. Auf einigen Bet
240
240
>>
241
241
>> Wiederholen Sie diesen Vorgang für jede Additional IP-Adresse.
242
242
>>
243
-
> AlmaLinux (8 & 9), Rocky Linux (8 & 9)
244
-
>>**AlmaLinux (8/9), Rocky Linux (8/9)**
243
+
>**AlmaLinux / Rocky Linux**
244
+
>> AlmaLinux (8/9/10), Rocky Linux (8/9/10)
245
245
>>
246
246
>> Die Hauptkonfigurationsdatei befindet sich im Ordner `/etc/sysconfig/network-scripts/`. In diesem Beispiel ist es `ifcfg-eth0`. Überprüfen Sie den Dateinamen in Ihrem Ordner, bevor Sie Änderungen vornehmen.
247
247
>>
@@ -300,8 +300,8 @@ In den folgenden Beispielen verwenden wir den Texteditor `nano`. Auf einigen Bet
300
300
>> sudo systemctl restart NetworkManager
301
301
>>```
302
302
>>
303
-
> Fedora 42
304
-
>>**Fedora 42**
303
+
>**Fedora 42**
304
+
>> Fedora 42
305
305
>>
306
306
>> Fedora verwendet Schlüsseldateien. NetworkManager hat zuvor Netzwerkprofile im Format ifcfg in diesem Verzeichnis gespeichert: `/etc/sysconfig/network-scripts/`. Da ifcfg nicht mehr unterstützt wird, erstellt NetworkManager keine neuen Profile mehr in diesem Format. Die Konfigurationsdatei befindet sich nun in`/etc/NetworkManager/system-connections/`.
307
307
>>
@@ -367,8 +367,8 @@ In den folgenden Beispielen verwenden wir den Texteditor `nano`. Auf einigen Bet
367
367
>> sudo systemctl restart NetworkManager
368
368
>>```
369
369
>>
370
-
> cPanel
371
-
>>**cPanel**
370
+
>**cPanel**
371
+
>> cPanel
372
372
>>
373
373
>>**Schritt 1: Auf den Bereich IP-Verwaltung des WHM zugreifen**
374
374
>>
@@ -395,8 +395,8 @@ In den folgenden Beispielen verwenden wir den Texteditor `nano`. Auf einigen Bet
>> The first step is to verify your network interface name with this command:
106
106
>>
@@ -146,7 +146,7 @@ In the examples below, we will use the `nano` text editor. With some operating s
146
146
>>
147
147
>> ///
148
148
>>
149
-
>> Step 4: Restart the interface
149
+
>> **Step 4: Restart the interface**
150
150
>>
151
151
>> Apply the changes with the following command:
152
152
>>
@@ -161,15 +161,15 @@ In the examples below, we will use the `nano` text editor. With some operating s
161
161
>>
162
162
>> The best practice approach is to create a separate configuration file to set up Additional IP addresses. This way, you can easily revert the changes in case of an error.
163
163
>>
164
-
>> Step 1: Create the network configuration file
164
+
>> **Step 1: Create the network configuration file**
165
165
>>
166
166
>> In our example, our file is call `51-cloud-init.yaml`:
167
167
>>
168
168
>> ```bash
169
169
>> sudo touch /etc/netplan/51-cloud-init.yaml
170
170
>>```
171
171
>>
172
-
>> Step 2: Edit the configuration file
172
+
>> **Step 2: Edit the configuration file**
173
173
>>
174
174
>> You can verify your network interface name with this command:
175
175
>>
@@ -228,7 +228,7 @@ In the examples below, we will use the `nano` text editor. With some operating s
228
228
>>
229
229
>> Save and close the file.
230
230
>>
231
-
>> Step 3: Apply the new network configuration
231
+
>> **Step 3: Apply the new network configuration**
232
232
>>
233
233
>> You can test your configuration using this command:
234
234
>>
@@ -242,21 +242,20 @@ In the examples below, we will use the `nano` text editor. With some operating s
242
242
>> sudo netplan apply
243
243
>>```
244
244
>>
245
-
> CentOS 7, AlmaLinux (8/9), Rocky Linux (8/9)
246
-
>>
247
-
>>**CentOS 7, AlmaLinux (8/9), Rocky Linux (8/9)**
245
+
> **AlmaLinux / Rocky Linux (8/9)**
246
+
>> AlmaLinux (8/9/10), Rocky Linux (8/9/10)
248
247
>>
249
248
>> The main configuration file is located in`/etc/sysconfig/network-scripts/`. In this example it is called `ifcfg-eth0`. Before making changes, verify the actual file name in this folder.
250
249
>>
251
250
>> For each Additional IP to be configured, we create a seperate configuration file with the following parameters: `ifcfg-NETWORK_INTERFACE:ID`. Where `NETWORK_INTERFACE` is the physical interface and `ID` is the virtual network interface or ethernet alias starting with a value of 0. For example, for our interface named `eth0` the first alias is `eth0:0`, the second alias is `eth0:1`, etc...
252
251
>>
253
-
>> Step 1: Determine the interface
252
+
>>**Step 1: Determine the interface**
254
253
>>
255
254
>>```bash
256
255
>> ip a
257
256
>>```
258
257
>>
259
-
>> Step 2: Create the configuration file
258
+
>>**Step 2: Create the configuration file**
260
259
>>
261
260
>> First, create the configuration file. Replace `NETWORK_INTERFACE:ID` with your own values.
262
261
>>
@@ -287,7 +286,7 @@ In the examples below, we will use the `nano` text editor. With some operating s
287
286
>> ```
288
287
>> ///
289
288
>>
290
-
>> Step 3: Restart the interface
289
+
>>**Step 3: Restart the interface**
291
290
>>
292
291
>>```bash
293
292
>> sudo systemctl restart network
@@ -299,13 +298,12 @@ In the examples below, we will use the `nano` text editor. With some operating s
299
298
>> sudo systemctl restart NetworkManager
300
299
>>```
301
300
>>
302
-
> Fedora 42
303
-
>>
304
-
>>**Fedora 42**
301
+
>**Fedora 42**
302
+
>> Fedora 42
305
303
>>
306
304
>> Fedora now uses keyfiles. NetworkManager previously stored network profiles in ifcfg format in this directory: `/etc/sysconfig/network-scripts/`. However, the ifcfg format is now deprecated. By default, NetworkManager no longer creates new profiles in this format. The configuration file is now found in`/etc/NetworkManager/system-connections/`.
307
305
>>
308
-
>> Step 1: Create a backup
306
+
>>**Step 1: Create a backup**
309
307
>>
310
308
>> In our example, our file is called `cloud-init-eno1.nmconnection`, so we make a copy of the `cloud-init-eno1.nmconnection` file using the following command:
311
309
>>
@@ -320,7 +318,7 @@ In the examples below, we will use the `nano` text editor. With some operating s
>>> Please note that the name of the network file in our example may differ from yours. Please adapt the commands to your file name.
@@ -359,25 +357,24 @@ In the examples below, we will use the `nano` text editor. With some operating s
359
357
>>```
360
358
>> ///
361
359
>>
362
-
>> Step 3: Restart the interface
360
+
>> **Step 3: Restart the interface**
363
361
>>
364
362
>> You now need to restart your interface:
365
363
>>
366
364
>> ```bash
367
365
>> sudo systemctl restart NetworkManager
368
366
>>```
369
367
>>
370
-
> cPanel
371
-
>>
372
-
>> **cPanel**
368
+
> **cPanel**
369
+
>> cPanel
373
370
>>
374
-
>> Step 1: Access the WHM IP management section
371
+
>> **Step 1: Access the WHM IP management section**
375
372
>>
376
373
>> In the WHM control panel, click on `IP Functions`{.action} and select `Add a New IP Address`{.action} in the left-hand sidebar.
377
374
>>
378
375
>> {.thumbnail}
379
376
>>
380
-
>> Step 2: Add the Additional IP information
377
+
>> **Step 2: Add the Additional IP information**
381
378
>>
382
379
>> Enter your Additional IP in the form `xxx.xxx.xxx.xxx` into the field “New IP or IP range to add”.
383
380
>>
@@ -390,24 +387,24 @@ In the examples below, we will use the `nano` text editor. With some operating s
390
387
>> > Please note that if you have more than one IP to configure on the same block and you add them all at once, the WHM system will force you to use the subnet mask `255.255.255.0`. We do not recommend using this configuration. Instead, you need to add each IP individually in order to use the proper subnet mask `255.255.255.255`.
391
388
>> >
392
389
>>
393
-
>> Step 3: Check the current IP configuration
390
+
>> **Step 3: Check the current IP configuration**
394
391
>>
395
392
>> Back in the section `IP Functions`{.action}, click on `Show or Delete Current IP Addresses`{.action} to verify that the Additional IP address was added correctly.
0 commit comments