Compare commits

..

No commits in common. "072d3812bc2db8fedc27ae110575683dc87dcaf1" and "86095bd437caf45c95d98d6185b28121cd7f439e" have entirely different histories.

2 changed files with 3 additions and 18 deletions

View File

@ -1,6 +1,6 @@
{% macro systemsection(device,name) %} {% macro systemsection(device) %}
system { system {
host-name {{ name }}; host-name {{ device['name'] }};
root-authentication { root-authentication {
encrypted-password "{{ device['config_context']['root_pw'] }}"; ## Client Higher encrypted-password "{{ device['config_context']['root_pw'] }}"; ## Client Higher
} }
@ -305,20 +305,6 @@ routing-options {
{%- endmacro %} {%- 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) %} {% macro vlanssection(vlans,device) %}
vlans { vlans {
{# This next line selects all of the VLANs which are configured on this device #} {# This next line selects all of the VLANs which are configured on this device #}

View File

@ -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}) %} {% 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 %} {% import "juniper-macros.j2" as junos %}
{{ junos.systemsection(device,name) }} {{ junos.systemsection(device) }}
{% if device_role['name'] == 'Leaf' %} {% if device_role['name'] == 'Leaf' %}
{{ junos.chassissection(device) }} {{ junos.chassissection(device) }}
{% endif %} {% endif %}
@ -41,7 +41,6 @@ protocols {
lldp { lldp {
interface all; interface all;
} }
{{ junos.sflowsection(device) }}
} }
{% if device_role['name'] == 'Leaf' %} {% if device_role['name'] == 'Leaf' %}
switch-options { switch-options {