diff options
author | Johannes Matheis <jomat+alpinebuild@jmt.gr> | 2015-02-08 13:25:10 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2015-02-09 08:50:18 +0200 |
commit | 93bf317ffed831452c69550b0179e2ded06aac7b (patch) | |
tree | ef91836c54fd3cfdd0a2adf4fe28791131fe9cb8 /testing/fastd/fastd.conf | |
parent | 706bcdda878579d42b4ec845892e2c2ee589611b (diff) | |
download | aports-93bf317ffed831452c69550b0179e2ded06aac7b.tar.bz2 aports-93bf317ffed831452c69550b0179e2ded06aac7b.tar.xz |
testing/fastd: new aport
Fast and Secure Tunneling Daemon
https://projects.universe-factory.net/projects/fastd
[tteras: fixed dependencies]
Diffstat (limited to 'testing/fastd/fastd.conf')
-rw-r--r-- | testing/fastd/fastd.conf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/testing/fastd/fastd.conf b/testing/fastd/fastd.conf new file mode 100644 index 0000000000..9553d4c6d1 --- /dev/null +++ b/testing/fastd/fastd.conf @@ -0,0 +1,34 @@ +# To run multiple fastd instances, copy this file to /etc/fastd/example.conf, +# create a symlink /etc/init.d/fastd.example -> fastd +# and initialize the tunnel by issuing: rc-service fastd.example start + +# See also: http://fastd.readthedocs.org/en/v17/manual/config.html + +# Log warnings and errors to stderr +log level warn; + +# Log everything to syslog +#log to syslog level debug; + +# Set the interface name +interface "mesh-vpn"; + +# Support salsa2012+umac and null methods, prefer salsa2012+umac +method "salsa2012+umac"; + +# Sets the handshake protocol; at the moment only ec25519-fhmqvc is supported. +protocol "ec25519-fhmqvc"; + +# Bind to a fixed port, IPv4 only +bind 0.0.0.0:10000; + +# Secret key generated by `fastd --generate-key` +secret ""; + +# Set the interface MTU for TAP mode with xsalsa20/aes128 over IPv4 with a base MTU of 1492 (PPPoE) +# (see MTU selection documentation) +mtu 1428; + +# Include peers from the directory 'peers' +include peers from "peers"; + |