Compare commits
2 Commits
86095bd437
...
072d3812bc
| Author | SHA1 | Date |
|---|---|---|
|
|
072d3812bc | |
|
|
6ef28c7c95 |
|
|
@ -1,6 +1,6 @@
|
|||
{% macro systemsection(device) %}
|
||||
{% macro systemsection(device,name) %}
|
||||
system {
|
||||
host-name {{ device['name'] }};
|
||||
host-name {{ name }};
|
||||
root-authentication {
|
||||
encrypted-password "{{ device['config_context']['root_pw'] }}"; ## Client Higher
|
||||
}
|
||||
|
|
@ -305,6 +305,20 @@ routing-options {
|
|||
{%- endmacro %}
|
||||
|
||||
|
||||
{% macro sflowsection(device) %}
|
||||
{% if device['config_context']['sflow'] %}
|
||||
sflow {
|
||||
{% for collector in device['config_context']['sflow']['collectors'] %}
|
||||
collector {{ collector }};
|
||||
{% endfor %}
|
||||
{% for interface in device['config_context']['sflow']['interfaces'] %}
|
||||
interface {{ interface }};
|
||||
{% endfor %}
|
||||
}
|
||||
{% endif %}
|
||||
{%- endmacro %}
|
||||
|
||||
|
||||
{% macro vlanssection(vlans,device) %}
|
||||
vlans {
|
||||
{# This next line selects all of the VLANs which are configured on this device #}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{% set device=({'name':name,'device_role':device_role,'primary_ip4':primary_ip4,'rack':rack,'interfaces':interfaces,'peering_interfaces':peering_interfaces,'config_context':config_context}) %}
|
||||
{% import "juniper-macros.j2" as junos %}
|
||||
{{ junos.systemsection(device) }}
|
||||
{{ junos.systemsection(device,name) }}
|
||||
{% if device_role['name'] == 'Leaf' %}
|
||||
{{ junos.chassissection(device) }}
|
||||
{% endif %}
|
||||
|
|
@ -41,6 +41,7 @@ protocols {
|
|||
lldp {
|
||||
interface all;
|
||||
}
|
||||
{{ junos.sflowsection(device) }}
|
||||
}
|
||||
{% if device_role['name'] == 'Leaf' %}
|
||||
switch-options {
|
||||
|
|
|
|||
Loading…
Reference in New Issue