c7ea3470ed
[swss]: Generate config files for Everflow and IPinIP from minigraph - Add Everflow DST IP to minigraph file - Extend minigraph.py to support Everflow - Add templates file for Everflow and IPinIP configuration - Add config.sh for swss docker to generate config files
20 lines
534 B
Django/Jinja
20 lines
534 B
Django/Jinja
[
|
|
{
|
|
"TUNNEL_DECAP_TABLE:IPINIP_TUNNEL" : {
|
|
"tunnel_type":"IPINIP",
|
|
"src_ip":"{{ minigraph_lo_interfaces[0]['addr'] }}",
|
|
"dst_ip":"{{ minigraph_lo_interfaces[0]['addr'] }}",
|
|
{% if minigraph_hwsku in [ 'ACS-MSN2700', 'ACS-MSN2410', 'ACS-MSN2100' ] %}
|
|
"dscp_mode":"uniform",
|
|
"ecn_mode":"standard",
|
|
{% else %}
|
|
"dscp_mode":"pipe",
|
|
"ecn_mode":"copy_from_outer",
|
|
{% endif %}
|
|
"ttl_mode":"pipe"
|
|
},
|
|
"OP": "SET"
|
|
}
|
|
]
|
|
|