Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 311 Bytes

Readme.md

File metadata and controls

13 lines (9 loc) · 311 Bytes

WORK IN PROGRSS!

netbox-vpn-plugin

Manage Vpn Connections for Tenants in Netbox.

Adding Test Data via NBSHELL

  • device = Device.objects.get(pk=1)
  • tenant = Tenant.objects.get(pk=1)
  • from netbox_vpn_plugin.models import *
  • vpn = VpnList(gegenstelle="abc",orginator=device,tenant=tenant)
  • vpn.save()