2017-10-05 01:35:43 -05:00
|
|
|
[supervisord]
|
|
|
|
logfile_maxbytes=1MB
|
|
|
|
logfile_backups=2
|
|
|
|
nodaemon=true
|
|
|
|
|
|
|
|
[program:start.sh]
|
|
|
|
command=/usr/bin/start.sh
|
|
|
|
priority=1
|
|
|
|
autostart=true
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
|
|
|
|
[program:rsyslogd]
|
|
|
|
command=/usr/sbin/rsyslogd -n
|
|
|
|
priority=2
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
|
|
|
|
{# If our configuration has VLANs... #}
|
|
|
|
{% if VLAN %}
|
|
|
|
{# Count how many VLANs require a DHCP relay agent... #}
|
|
|
|
{% set num_relays = { 'count': 0 } %}
|
|
|
|
{% for vlan_name in VLAN %}
|
|
|
|
{% if VLAN[vlan_name]['dhcp_servers'] %}
|
|
|
|
{% set _dummy = num_relays.update({'count': num_relays.count + 1}) %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{# If one or more of the VLANs require a DHCP relay agent... #}
|
|
|
|
{% if num_relays.count > 0 %}
|
|
|
|
[group:isc-dhcp-relay]
|
|
|
|
programs=
|
2019-06-03 16:26:45 -05:00
|
|
|
{%- set add_preceding_comma = { 'flag': False } %}
|
|
|
|
{% for vlan_name in VLAN %}
|
|
|
|
{% if VLAN[vlan_name]['dhcp_servers'] %}
|
|
|
|
{% if add_preceding_comma.flag %},{% endif %}
|
|
|
|
{% set _dummy = add_preceding_comma.update({'flag': True}) %}
|
2017-10-05 01:35:43 -05:00
|
|
|
isc-dhcp-relay-{{ vlan_name }}
|
|
|
|
{%- endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
{# Create a program entry for each DHCP relay agent instance #}
|
2019-06-03 16:26:45 -05:00
|
|
|
{% for vlan_name in VLAN %}
|
|
|
|
{% if VLAN[vlan_name]['dhcp_servers'] %}
|
2017-10-05 01:35:43 -05:00
|
|
|
[program:isc-dhcp-relay-{{ vlan_name }}]
|
2019-06-03 16:26:45 -05:00
|
|
|
{# We treat this VLAN as a downstream interface (-id), as we only want to listen for requests #}
|
|
|
|
command=/usr/sbin/dhcrelay -d -m discard -a %%h:%%p %%P --name-alias-map-file /tmp/port-name-alias-map.txt -id {{ vlan_name }}
|
|
|
|
{#- We treat all other interfaces as upstream interfaces (-iu), as we only want to listen for replies #}
|
|
|
|
{% for (name, prefix) in VLAN_INTERFACE %}
|
|
|
|
{% if prefix | ipv4 and name != vlan_name %} -iu {{ name }}{% endif -%}
|
|
|
|
{% endfor %}
|
|
|
|
{% for (name, prefix) in INTERFACE %}
|
|
|
|
{% if prefix | ipv4 %} -iu {{ name }}{% endif -%}
|
|
|
|
{% endfor %}
|
|
|
|
{% for (name, prefix) in PORTCHANNEL_INTERFACE %}
|
|
|
|
{% if prefix | ipv4 %} -iu {{ name }}{% endif -%}
|
|
|
|
{% endfor %}
|
|
|
|
{% for dhcp_server in VLAN[vlan_name]['dhcp_servers'] %} {{ dhcp_server }}{% endfor %}
|
2017-10-05 01:35:43 -05:00
|
|
|
|
|
|
|
priority=3
|
|
|
|
autostart=false
|
|
|
|
autorestart=false
|
|
|
|
stdout_logfile=syslog
|
|
|
|
stderr_logfile=syslog
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|