Skip to content

Commit e4a88b2

Browse files
[MWAN] IKE ID patch (cloudflare#25048)
* refined text * refined command * refined text
1 parent 87ca0e1 commit e4a88b2

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

src/content/docs/magic-wan/configuration/common-settings/custom-ike-id-ipsec.mdx

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ sidebar:
55
order: 6
66
---
77

8+
import { CURL } from "~/components";
9+
810
Magic WAN customers can configure a custom IKE ID for their IPsec tunnels. Customers that are using Magic WAN and a VeloCloud SD-WAN device together should utilize this option to create a high availability configuration.
911

1012
:::note
@@ -13,10 +15,13 @@ This feature is only available via API. There are no configuration options for a
1315

1416
VeloCloud has a high availability mechanism that allows customers to specify one set of IKE parameters (like IKE ID) and multiple remote IPs. Customers create an IKE ID, and then assign the same custom IKE ID to their primary IPsec tunnel and their backup IPsec tunnel. FQDN is the only supported type for custom IKE IDs.
1517

16-
Magic WAN customers can set a custom IKE ID for an IPsec tunnel using the following API call. Customers will need to fill in the appropriate values for <account_id>, <tunnel_id>, and the FQDN wildcard before running the API call.
18+
Magic WAN customers can set a custom IKE ID for an IPsec tunnel using the following API call. Customers will need to fill in the appropriate values for `<account_id>`, `<tunnel_id>`, and the FQDN wildcard before running the API call.
1719

18-
```txt
19-
% cloudflared access curl
20-
https://conduit-api.cfdata.org/accounts/<account_id>/ipsec_tunnels/<tunnel_id>
21-
-XPUT -d '{"custom_remote_identities": {"fqdn_id": "*.<account_id>.custom.ipsec.cloudflare.com"}}'
22-
```
20+
<CURL
21+
url="https://api.cloudflare.com/client/v4/accounts/ACCOUNT_ID/ipsec_tunnels/TUNNEL_ID"
22+
method="PATCH"
23+
json={{
24+
"custom_remote_identities":
25+
{"fqdn_id": "<your_custom_label>.<account_id>.custom.ipsec.cloudflare.com"}
26+
}}
27+
/>

0 commit comments

Comments
 (0)