Closes #9816: VPN tunnel support (#14276)

- Introduces a new `vpn` app with the following models:
    - Tunnel
    - TunnelTermination
    - IKEProposal
    - IKEPolicy
    - IPSecProposal
    - IPSecPolicy
    - IPSecProfile
This commit is contained in:
Jeremy Stretch
2023-11-27 16:17:15 -05:00
committed by GitHub
parent 975a647d9a
commit 6678880db5
58 changed files with 5656 additions and 10 deletions

9
netbox/vpn/apps.py Normal file
View File

@@ -0,0 +1,9 @@
from django.apps import AppConfig
class VPNConfig(AppConfig):
name = 'vpn'
verbose_name = 'VPN'
def ready(self):
from . import search