diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-04 11:08:50 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-04 11:17:50 +0200 |
commit | 2e1562fb02e7a2b45e84c0b8d861d149bfa890d2 (patch) | |
tree | 520fdfacce938fd8e37c7e2ff0faf3027cfa3c57 /data/templates/wwan/peer.tmpl | |
parent | 943eca2844b04c737f66f76fee663d40e23c2ccd (diff) | |
download | vyos-1x-2e1562fb02e7a2b45e84c0b8d861d149bfa890d2.tar.gz vyos-1x-2e1562fb02e7a2b45e84c0b8d861d149bfa890d2.zip |
wwan: T1988: move Jinja2 templates to data/templates folder
This makes the actual code which generates the configs much more human
readable.
Diffstat (limited to 'data/templates/wwan/peer.tmpl')
-rw-r--r-- | data/templates/wwan/peer.tmpl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/data/templates/wwan/peer.tmpl b/data/templates/wwan/peer.tmpl new file mode 100644 index 000000000..7de1c8764 --- /dev/null +++ b/data/templates/wwan/peer.tmpl @@ -0,0 +1,30 @@ +### Autogenerated by interfaces-wirelessmodem.py ###
+
+{% if description %}
+# {{ description }}
+{% endif %}
+ifname {{ intf }}
+ipparam "{{ intf }} {{ metric }}"
+linkname {{ intf }}
+{% if name_server -%}
+usepeerdns
+{%- endif %}
+# physical device
+/dev/{{ device }}
+lcp-echo-failure 0
+115200
+debug
+logfile {{ logfile }}
+nodefaultroute
+ipcp-max-failure 4
+ipcp-accept-local
+ipcp-accept-remote
+noauth
+crtscts
+lock
+persist
+{% if on_demand -%}
+demand
+{%- endif %}
+
+connect '/usr/sbin/chat -v -t6 -f {{ chat_script }}'
|