mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 12:06:53 -06:00

- Introduces a new `vpn` app with the following models: - Tunnel - TunnelTermination - IKEProposal - IKEPolicy - IPSecProposal - IPSecPolicy - IPSecProfile
26 lines
636 B
Markdown
26 lines
636 B
Markdown
# IKE Policies
|
|
|
|
An [Internet Key Exhcnage (IKE)](https://en.wikipedia.org/wiki/Internet_Key_Exchange) policy defines an IKE version, mode, and set of [proposals](./ikeproposal.md) to be used in IKE negotiation. These policies are referenced by [IPSec profiles](./ipsecprofile.md).
|
|
|
|
## Fields
|
|
|
|
### Name
|
|
|
|
The unique user-assigned name for the policy.
|
|
|
|
### Version
|
|
|
|
The IKE version employed (v1 or v2).
|
|
|
|
### Mode
|
|
|
|
The IKE mode employed (main or aggressive).
|
|
|
|
### Proposals
|
|
|
|
One or more [IKE proposals](./ikeproposal.md) supported for use by this policy.
|
|
|
|
### Pre-shared Key
|
|
|
|
A pre-shared secret key associated with this policy (optional).
|