mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
- Introduces a new `vpn` app with the following models: - Tunnel - TunnelTermination - IKEProposal - IKEPolicy - IPSecProposal - IPSecPolicy - IPSecProfile
22 lines
554 B
Markdown
22 lines
554 B
Markdown
# IPSec Profile
|
|
|
|
An [IPSec](https://en.wikipedia.org/wiki/IPsec) profile defines an [IKE policy](./ikepolicy.md), [IPSec policy](./ipsecpolicy.md), and IPSec mode used for establishing an IPSec tunnel.
|
|
|
|
## Fields
|
|
|
|
### Name
|
|
|
|
The unique user-assigned name for the profile.
|
|
|
|
### Mode
|
|
|
|
The IPSec mode employed by the profile: Encapsulating Security Payload (ESP) or Authentication Header (AH).
|
|
|
|
### IKE Policy
|
|
|
|
The [IKE policy](./ikepolicy.md) associated with the profile.
|
|
|
|
### IPSec Policy
|
|
|
|
The [IPSec policy](./ipsecpolicy.md) associated with the profile.
|