blob: d85f74d07ce9374b0d03386a84a6663ca5d6a104 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
MACHINE_LIST = [
{
'127.0.0.1': [
{% set port_num = 200 %}
{% for mac in mac_addresses %}
{
'port': '{{ port_num }}',
'mac': '{{ mac }}',
'vlan': 0
},
{% endfor %}
]
}
]
|