Skip to content

Commit

Permalink
Enable IS-IS IPv6 MT on VyOS (fixes #1184)
Browse files Browse the repository at this point in the history
  • Loading branch information
ipspace committed Sep 17, 2024
1 parent 27c1c03 commit 23014d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/module/isis.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The following table describes per-platform support of individual IS-IS features:
| Junos[^Junos] ||||||
| Nokia SR Linux |||||[](caveats-srlinux) |
| Nokia SR OS ||||||
| VyOS ||| |||
| VyOS ||| |||

[^18v]: Includes Cisco CSR 1000v and Cisco Catalyst 8000v

Expand Down
7 changes: 5 additions & 2 deletions netsim/ansible/templates/isis/vyos.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ configure
set protocols isis level {{ isis.type }}

set protocols isis dynamic-hostname

set protocols isis lsp-gen-interval 1
set protocols isis spf-interval 1
{% if isis.net is defined %}
set protocols isis net '{{ isis.net }}'
{% elif isis.area is defined %}
set protocols isis net '{{ "%s.0000.0000.%04d.00" % (isis.area,id) }}'
{% endif %}
{% if isis.af.ipv6|default(False) %}
set protocols isis topology ipv6-unicast
{% endif %}

set protocols isis interface dum0

Expand All @@ -38,7 +42,6 @@ set protocols isis interface {{ l.ifname }} bfd profile netsim
{% endif %}

{% endfor %}

# Commit, save and exit from subshell

commit
Expand Down

0 comments on commit 23014d5

Please sign in to comment.