diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-01-14 21:58:29 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2015-01-14 21:58:29 +0100 |
commit | ba3afc50b3819694f009adc6db5a966f524242f6 (patch) | |
tree | 569dac7ae57076b864788b296dade9a77a6e63cf /doc/examples/openwrt/fastd.config | |
parent | 0a69b958bdfd8da663577be2be557a1bc319cd12 (diff) | |
download | fastd-ba3afc50b3819694f009adc6db5a966f524242f6.tar fastd-ba3afc50b3819694f009adc6db5a966f524242f6.zip |
Update OpenWrt scripts
Diffstat (limited to 'doc/examples/openwrt/fastd.config')
-rw-r--r-- | doc/examples/openwrt/fastd.config | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/examples/openwrt/fastd.config b/doc/examples/openwrt/fastd.config index e2c6db6..7b13fc8 100644 --- a/doc/examples/openwrt/fastd.config +++ b/doc/examples/openwrt/fastd.config @@ -31,8 +31,9 @@ config fastd sample_config # list bind '[::]:1337' # "method null" uses no encryption or MAC - # "method xsalsa20-poly1305" uses the XSalsa20 encryption ad the Poly1305 MAC - list method 'xsalsa20-poly1305' + # "method salsa2012+umac" uses the Salsa20/12 encryption and the UMAC message authentication code + # See the fastd documentation for the other supported encryption methods + list method 'salsa2012+umac' # "mode tap" will create an ethernet tunnel (tap device), # "mode tun" will create an IP tunnel (tun device). @@ -152,5 +153,8 @@ config peer_group sample_group # Configures an additional peer directory for this group # list config_peer_dir '/etc/fastd/sample_config/peers2' + # Methods set in the peer group override the ones configured in the parent group or globally +# list method 'null' + # Limits the maximum number of connections to peers in this group (optional) # option peer_limit 5 |