{% extends '_base.html' %} {% load render_table from django_tables2 %} {% load form_helpers %} {% block title %}IP Address Import{% endblock %} {% block content %}

IP Address Import

{% csrf_token %} {% render_form form %}
Cancel

CSV Format

Field Description Example
Address IPv4 or IPv6 address 192.0.2.42/24
VRF VRF route distinguisher (optional) 65000:123
Tenant Name of tenant (optional) ABC01
Status Current status Active
Device Device name (optional) switch12
Interface Interface name (optional) ge-0/0/31
Is Primary If "true", IP will be primary for device (optional) True
Description Short description (optional) Management IP

Example

192.0.2.42/24,65000:123,ABC01,Active,switch12,ge-0/0/31,True,Management IP
{% endblock %}