vrf_import.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {% extends 'utilities/obj_import.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% load form_helpers %}
  4. {% block title %}VRF Import{% endblock %}
  5. {% block instructions %}
  6. <h4>CSV Format</h4>
  7. <table class="table">
  8. <thead>
  9. <tr>
  10. <th>Field</th>
  11. <th>Description</th>
  12. <th>Example</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr>
  17. <td>Name</td>
  18. <td>Name of VRF</td>
  19. <td>Customer_ABC</td>
  20. </tr>
  21. <tr>
  22. <td>RD</td>
  23. <td>Route distinguisher</td>
  24. <td>65000:123456</td>
  25. </tr>
  26. <tr>
  27. <td>Tenant</td>
  28. <td>Name of tenant (optional)</td>
  29. <td>ABC01</td>
  30. </tr>
  31. <tr>
  32. <td>Enforce uniqueness</td>
  33. <td>Prevent duplicate prefixes/IP addresses</td>
  34. <td>True</td>
  35. </tr>
  36. <tr>
  37. <td>Description</td>
  38. <td>Short description (optional)</td>
  39. <td>Native VRF for customer ABC</td>
  40. </tr>
  41. </tbody>
  42. </table>
  43. <h4>Example</h4>
  44. <pre>Customer_ABC,65000:123456,ABC01,True,Native VRF for customer ABC</pre>
  45. {% endblock %}