summaryrefslogtreecommitdiff
path: root/data/templates/pppoe/peer.tmpl
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-05-01 20:27:07 +0200
committerChristian Poessinger <christian@poessinger.com>2022-05-01 20:27:07 +0200
commit644a0fe475b137185ada36a6b7a0ca43259f1d0a (patch)
tree06a8b3b0987d4584f59479a43e9e9cd999a09100 /data/templates/pppoe/peer.tmpl
parent4400d11709a86fddf63a98cadc4241776afa3e35 (diff)
downloadvyos-1x-644a0fe475b137185ada36a6b7a0ca43259f1d0a.tar.gz
vyos-1x-644a0fe475b137185ada36a6b7a0ca43259f1d0a.zip
pppoe: T4353: fix Jinja2 linting errors
Diffstat (limited to 'data/templates/pppoe/peer.tmpl')
-rw-r--r--data/templates/pppoe/peer.tmpl82
1 files changed, 0 insertions, 82 deletions
diff --git a/data/templates/pppoe/peer.tmpl b/data/templates/pppoe/peer.tmpl
deleted file mode 100644
index d6d63debf..000000000
--- a/data/templates/pppoe/peer.tmpl
+++ /dev/null
@@ -1,82 +0,0 @@
-### Autogenerated by interfaces-pppoe.py ###
-{{ '# ' ~ description if description is vyos_defined else '' }}
-
-# Require peer to provide the local IP address if it is not
-# specified explicitly in the config file.
-noipdefault
-
-# Don't show the password in logfiles:
-hide-password
-
-# Standard Link Control Protocol (LCP) parameters:
-lcp-echo-interval 20
-lcp-echo-failure 3
-
-# RFC 2516, paragraph 7 mandates that the following options MUST NOT be
-# requested and MUST be rejected if requested by the peer:
-# Address-and-Control-Field-Compression (ACFC)
-noaccomp
-
-# Asynchronous-Control-Character-Map (ACCM)
-default-asyncmap
-
-# Override any connect script that may have been set in /etc/ppp/options.
-connect /bin/true
-
-# Don't try to authenticate the remote node
-noauth
-
-# Don't try to proxy ARP for the remote endpoint. User can set proxy
-# arp entries up manually if they wish. More importantly, having
-# the "proxyarp" parameter set disables the "defaultroute" option.
-noproxyarp
-
-# Unlimited connection attempts
-maxfail 0
-
-plugin rp-pppoe.so {{ source_interface }}
-{% if access_concentrator is vyos_defined %}
-rp_pppoe_ac '{{ access_concentrator }}'
-{% endif %}
-{% if service_name is vyos_defined %}
-rp_pppoe_service '{{ service_name }}'
-{% endif %}
-
-persist
-ifname {{ ifname }}
-ipparam {{ ifname }}
-debug
-mtu {{ mtu }}
-mru {{ mtu }}
-
-{% if authentication is vyos_defined %}
-{{ 'user "' + authentication.user + '"' if authentication.user is vyos_defined }}
-{{ 'password "' + authentication.password + '"' if authentication.password is vyos_defined }}
-{% endif %}
-
-{{ "usepeerdns" if no_peer_dns is not vyos_defined }}
-
-{% if ipv6 is vyos_defined %}
-+ipv6 {{ 'ipv6cp-use-ipaddr' if ipv6.address.autoconf is vyos_defined }}
-{% else %}
-noipv6
-{% endif %}
-
-{% if connect_on_demand is vyos_defined %}
-demand
-# See T2249. PPP default route options should only be set when in on-demand
-# mode. As soon as we are not in on-demand mode the default-route handling is
-# passed to the ip-up.d/ip-down.s scripts which is required for VRF support.
-{% if 'auto' in default_route %}
-defaultroute
-{{ 'defaultroute6' if ipv6 is vyos_defined }}
-{% elif 'force' in default_route %}
-defaultroute
-replacedefaultroute
-{{ 'defaultroute6' if ipv6 is vyos_defined }}
-{% endif %}
-{% else %}
-nodefaultroute
-noreplacedefaultroute
-{{ 'nodefaultroute6' if ipv6 is vyos_defined }}
-{% endif %}