aports/testing/fastd/fastd.conf
Johannes Matheis 93bf317ffe testing/fastd: new aport
Fast and Secure Tunneling Daemon
https://projects.universe-factory.net/projects/fastd

[tteras: fixed dependencies]
2015-02-09 08:50:18 +02:00

35 lines
962 B
Plaintext

# 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";