{% extends 'base.html' %} {% block content %}
| LSP UUID | SRP | LSP | Path | Association List |
|---|---|---|---|---|
| {{ lsp.lsp_uuid }} | {{ lsp.srp }} |
{{ lsp.lsp.split('[')[1].split(']')[0].split(',')[0] }}
{% set before_lsp_identifiers = lsp.lsp[5:].split('lspIdentifiers_tlv=')[0] %}{# Remove "LSP [" from the beginning #}
{% for subfield in before_lsp_identifiers.split(',') %}
{{ subfield }}
{% endfor %}
{% set lsp_content = lsp.lsp[:-1].split('IPv4LSPIdentifiersTLV ')[1] %}
lspIdentifiers_tlv=IPv4LSPIdentifiersTLV:
{% for subfield in lsp_content.split(',') %}
{{ subfield }}
{% endfor %}
|
{{ lsp.path.split('[')[1].split(']')[0].split(',')[0] }}
{% set path_content = lsp.path[6:-1] %} {# Remove "Path [" from the beginning and "]" from the end #}
{% for subfield in path_content.split(',') %}
{{ subfield }}
{% endfor %}
|
Association List{{ lsp.associationlist }}
|
No LSP data available.
{% endif %} {% endblock %}