summaryrefslogtreecommitdiff
path: root/data/templates/proxy-ndp
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-08-18 09:30:33 +0200
committerChristian Poessinger <christian@poessinger.com>2021-08-18 09:30:33 +0200
commitc9ad82ef583a1f44f84c7e69124f2a5d868da857 (patch)
tree96d1ed93f23cae6e92a3dac47ed59b11487a0eb1 /data/templates/proxy-ndp
parentbd2669f36c2e5a211b9147c50c98155c385bfae7 (diff)
downloadvyos-1x-c9ad82ef583a1f44f84c7e69124f2a5d868da857.tar.gz
vyos-1x-c9ad82ef583a1f44f84c7e69124f2a5d868da857.zip
nat66: ndppd: T2518: rename Jinja2 template folder to match common naming convention
Diffstat (limited to 'data/templates/proxy-ndp')
-rw-r--r--data/templates/proxy-ndp/ndppd.conf.tmpl44
1 files changed, 0 insertions, 44 deletions
diff --git a/data/templates/proxy-ndp/ndppd.conf.tmpl b/data/templates/proxy-ndp/ndppd.conf.tmpl
deleted file mode 100644
index 502dab5b8..000000000
--- a/data/templates/proxy-ndp/ndppd.conf.tmpl
+++ /dev/null
@@ -1,44 +0,0 @@
-########################################################
-#
-# autogenerated by nat66.py
-#
-# The configuration file must define one upstream
-# interface.
-#
-# For some services, such as nat66, because it runs
-# stateless, it needs to rely on NDP Proxy to respond
-# to NDP requests.
-#
-# When using nat66 source rules, NDP Proxy needs
-# to be enabled
-#
-########################################################
-
-{% set global = namespace(ndppd_interfaces = [],ndppd_prefixs = []) %}
-{% if source is defined and source.rule is defined and source.rule is not none %}
-{% for rule, config in source.rule.items() if config.disable is not defined %}
-{% if config.outbound_interface is defined %}
-{% if config.outbound_interface not in global.ndppd_interfaces %}
-{% set global.ndppd_interfaces = global.ndppd_interfaces + [config.outbound_interface] %}
-{% endif %}
-{% if config.translation is defined and config.translation.address is defined and config.translation.address | is_ip_network %}
-{% set global.ndppd_prefixs = global.ndppd_prefixs + [{'interface':config.outbound_interface,'rule':config.translation.address}] %}
-{% endif %}
-{% endif %}
-{% endfor %}
-{% endif %}
-
-{% for interface in global.ndppd_interfaces %}
-proxy {{ interface }} {
- router yes
- timeout 500
- ttl 30000
-{% for map in global.ndppd_prefixs %}
-{% if map.interface == interface %}
- rule {{ map.rule }} {
- static
- }
-{% endif %}
-{% endfor %}
-}
-{% endfor %}