chiark / gitweb /
legal: Make a LICENSE symlink for Americans
[secnet.git] / example.conf
index d6908ff7c820c0b13b0c9e798d0e1c72b7b13f93..c7e3eb38ecebc23526ba0d5c1e2cd08afab03d63 100644 (file)
@@ -67,8 +67,8 @@ system {
 # renegotiate-time      set up a new key if we see any traffic after this time
 
 # Defaults that may be overridden on a per-site basis:
-setup-retries 10;
-setup-timeout 2000;
+#setup-retries 10;
+#setup-timeout 2000;
 
 # Use the universal TUN/TAP driver to get packets to and from the kernel,
 # through a single interface.  secnet will act as a router; it requires
@@ -115,6 +115,11 @@ netlink tun {
 #mtu 1400;
 #buffer sysbuffer(2048);
 
+# This is small enough that it fits without fragmentation into
+# the foolish wifi on Greater Anglia's now-retired Class 379s.
+# This is good because they mishandle fragmentation.
+mtu-target 1260;
+
 
 # This defines the port that this instance of secnet will listen on, and
 # originate packets on. It does not _have_ to correspond to the advertised
@@ -147,10 +152,11 @@ random randomfile("/dev/urandom",no);
 local-name "your-site-name";
 local-key rsa-private("/etc/secnet/key");
 
+# Are we a mobile site?
+#local-mobile true;
+
 # On dodgy links you may want to specify a higher maximum sequence number skew
-transform serpent256-cbc {
-       max-sequence-skew 10;
-};
+transform eax-serpent { }, serpent256-cbc { };
 
 include /etc/secnet/sites.conf
 
@@ -162,7 +168,10 @@ include /etc/secnet/sites.conf
 # If you want to communicate with all the VPN sites, you can use something
 # like the following:
 
-sites map(site,vpn/example/all-sites);
+sites map(site,all-sites);
+
+# Or with a particular VPN
+#sites map(site,vpn/Vexample/all-sites);
 
 # If you only want to communicate with a subset of the VPN sites, list
 # them explicitly:
@@ -176,3 +185,5 @@ sites map(site,vpn/example/all-sites);
 
 # sites map(site,vpn/example/location1,vpn/example/location2);
 
+# This file is placed in the public domain (insofar as possible.)
+# Authors:  Stephen Early, Ian Jackson