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
Copy file name to clipboardExpand all lines: tutorials/how-to-set-up-nat-for-cloud-networks/01.de.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,8 @@ Das Gateway sollte die IP des NAT-Servers sein, auf dem wir Masquerading konfigu
115
115
116
116
**Um den Client-Server zu konfigurieren,** müssen wir nur eine Standardroute hinzufügen.
117
117
118
+
> Um Probleme mit dem DHCP-Client zu vermeiden, deinstalliere oder deaktiviere `hc-utils` wie [hier](https://docs.hetzner.com/de/networking/networks/server-configuration#auto-konfigurationspaket-deinstallieren-oder-deaktivieren) erklärt.
119
+
118
120
- Zum Beispiel so:
119
121
120
122
```bash
@@ -206,6 +208,8 @@ Für die Konfiguration von Debian und Ubuntu wird in diesem Tutorial `vim` verwe
206
208
207
209
-**Auf dem Client-Server**
208
210
211
+
> Um Probleme mit dem DHCP-Client zu vermeiden, deinstalliere oder deaktiviere `hc-utils` wie [hier](https://docs.hetzner.com/de/networking/networks/server-configuration#auto-konfigurationspaket-deinstallieren-oder-deaktivieren) erklärt.
212
+
209
213
Da die Route auch persistent sein soll, bearbeiten wir die folgende Datei:
210
214
211
215
```bash
@@ -287,6 +291,8 @@ Für die Konfiguration von Debian und Ubuntu wird in diesem Tutorial `vim` verwe
287
291
288
292
- **Auf dem Client-Server**
289
293
294
+
> Um Probleme mit dem DHCP-Client zu vermeiden, deinstalliere oder deaktiviere `hc-utils` wie [hier](https://docs.hetzner.com/de/networking/networks/server-configuration#auto-konfigurationspaket-deinstallieren-oder-deaktivieren) erklärt.
295
+
290
296
Da die Route auch persistent sein soll, bearbeiten wir die folgende Datei:
291
297
292
298
> Führen Sie `ifconfig` aus, um den Namen vom Interface zu prüfen und ersetzen Sie falls nötig `enp7s0` mit `ens10`.
@@ -357,6 +363,8 @@ Für die Konfiguration von Debian und Ubuntu wird in diesem Tutorial `vim` verwe
357
363
358
364
- **Auf dem Client-Server**
359
365
366
+
> Um Probleme mit dem DHCP-Client zu vermeiden, deinstalliere oder deaktiviere `hc-utils` wie [hier](https://docs.hetzner.com/de/networking/networks/server-configuration#auto-konfigurationspaket-deinstallieren-oder-deaktivieren) erklärt.
367
+
360
368
Erstellen Sie die Datei:
361
369
362
370
```bash
@@ -431,11 +439,7 @@ Für die Konfiguration von Debian und Ubuntu wird in diesem Tutorial `vim` verwe
431
439
432
440
- **Auf dem Client-Server**
433
441
434
-
> CentOS Stream 8 / 9, Rocky Linux 8 / 9 und Fedora 36 / 37 benötigen zusätzlich:
435
-
> ```bash
436
-
> yum remove hc-utils -y
437
-
> ```
438
-
> Dies gilt auch für andere Methoden zum Hinzufügen einer Route zum Betriebssystem.
442
+
> Um Probleme mit dem DHCP-Client zu vermeiden, deinstalliere oder deaktiviere `hc-utils` wie [hier](https://docs.hetzner.com/de/networking/networks/server-configuration#auto-konfigurationspaket-deinstallieren-oder-deaktivieren) erklärt.
439
443
440
444
Erstellen Sie die Datei:
441
445
@@ -523,6 +527,7 @@ Wenn Sie die Routen nicht manuell hinzufügen möchten, können Sie beim Erstell
523
527
append: true
524
528
525
529
runcmd:
530
+
- apt remove -y hc-utils
526
531
- reboot
527
532
```
528
533
@@ -579,6 +584,7 @@ Wenn Sie die Routen nicht manuell hinzufügen möchten, können Sie beim Erstell
579
584
append: true
580
585
581
586
runcmd:
587
+
- apt remove -y hc-utils
582
588
- reboot
583
589
```
584
590
@@ -636,6 +642,7 @@ Wenn Sie die Routen nicht manuell hinzufügen möchten, können Sie beim Erstell
Copy file name to clipboardExpand all lines: tutorials/how-to-set-up-nat-for-cloud-networks/01.en.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -115,6 +115,8 @@ The gateway should be the IP address of the NAT server on which you configure ma
115
115
116
116
**To configure the client servers**, we only need to add a default route.
117
117
118
+
> To avoid issues with the DHCP client, make sure `hc-utils` is disabled or deinstalled as explained [here](https://docs.hetzner.com/networking/networks/server-configuration#uninstalling-or-deactivating-the-auto-configuration-package).
119
+
118
120
- For example, like this:
119
121
120
122
```bash
@@ -206,6 +208,8 @@ The example commands below for Debian and Ubuntu use `vim`, which can be install
206
208
207
209
-**On the client servers**
208
210
211
+
> To avoid issues with the DHCP client, make sure `hc-utils` is disabled or deinstalled as explained [here](https://docs.hetzner.com/networking/networks/server-configuration#uninstalling-or-deactivating-the-auto-configuration-package).
212
+
209
213
Since we also want the route to be persistent, we edit the following file:
210
214
211
215
```bash
@@ -287,6 +291,8 @@ The example commands below for Debian and Ubuntu use `vim`, which can be install
287
291
288
292
- **On the client servers**
289
293
294
+
> To avoid issues with the DHCP client, make sure `hc-utils` is disabled or deinstalled as explained [here](https://docs.hetzner.com/networking/networks/server-configuration#uninstalling-or-deactivating-the-auto-configuration-package).
295
+
290
296
Since we also want the route to be persistent, we edit the following file:
291
297
292
298
> Run `ifconfig` to check the interface name and replace `enp7s0` with `ens10` if needed.
@@ -357,6 +363,8 @@ The example commands below for Debian and Ubuntu use `vim`, which can be install
357
363
358
364
- **On the client servers**
359
365
366
+
> To avoid issues with the DHCP client, make sure `hc-utils` is disabled or deinstalled as explained [here](https://docs.hetzner.com/networking/networks/server-configuration#uninstalling-or-deactivating-the-auto-configuration-package).
367
+
360
368
Create the file:
361
369
362
370
```bash
@@ -431,11 +439,7 @@ The example commands below for Debian and Ubuntu use `vim`, which can be install
431
439
432
440
- **On the client servers**
433
441
434
-
> CentOS Stream 8 / 9, Rocky Linux 8 / 9, and Fedora 36 / 37 additionally require:
435
-
> ```bash
436
-
> yum remove hc-utils -y
437
-
> ```
438
-
> This also goes for other methods to add a route to the OS.
442
+
> To avoid issues with the DHCP client, make sure `hc-utils` is disabled or deinstalled as explained [here](https://docs.hetzner.com/networking/networks/server-configuration#uninstalling-or-deactivating-the-auto-configuration-package).
439
443
440
444
Create the file:
441
445
@@ -523,6 +527,7 @@ If you don't want to setup the routes manually, you can use cloud-init and add t
523
527
append: true
524
528
525
529
runcmd:
530
+
- apt remove -y hc-utils
526
531
- reboot
527
532
```
528
533
@@ -581,6 +586,7 @@ If you don't want to setup the routes manually, you can use cloud-init and add t
581
586
append: true
582
587
583
588
runcmd:
589
+
- apt remove -y hc-utils
584
590
- reboot
585
591
```
586
592
@@ -638,6 +644,7 @@ If you don't want to setup the routes manually, you can use cloud-init and add t
0 commit comments