-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
394509b
commit 1a84bcb
Showing
6 changed files
with
99 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
You only need to take this step if any of your VMs has been created | ||
before setting up the network peering. In this case, refresh | ||
the Dynamic Host Configuration Protocol (DHCP) lease for a relevant | ||
network interface to get new routes. | ||
|
||
:::warning | ||
A peering connection between an Aiven VPC and VMs created before the | ||
peering setup won't work unless you refresh the DHCP lease for a | ||
relevant network interface. | ||
::: | ||
|
||
To refresh the DHCP lease for a network interface, run the following | ||
commands: | ||
|
||
1. To clear the existing DHCP lease | ||
|
||
```bash | ||
dhclient -r NETWORK_INTERFACE_NAME | ||
``` | ||
|
||
1. To request a renewal of the DHCP lease | ||
|
||
```bash | ||
dhclient NETWORK_INTERFACE_NAME | ||
``` |