{% extends 'base/layout.html' %} {% load helpers %} {% block title %}{% if object %}Edit SSH Jumphost: {{ object.name }}{% else %}Add SSH Jumphost{% endif %}{% endblock %} {% block header %}

{% if object %}Edit SSH Jumphost: {{ object.name }}{% else %}Add SSH Jumphost{% endif %}

{% endblock %} {% block content %}
{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text }}
{% endif %} {% for error in field.errors %}
{{ error }}
{% endfor %}
{% endfor %}
Notes
  • Key File — absolute path to the private key on the server running NetBox (e.g. /opt/netbox/.ssh/id_ed25519)
  • Known Hosts File — leave blank to skip host key verification (useful for first-time setup; not recommended for production)
  • The NetBox RQ worker process must have read access to the key file
{% endblock %}