Browse code

Version 2.1_rc20

git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@5023 e7ae566f-a301-0410-adde-c780ea21d3b5

james authored on 2009/10/02 07:13:26
Showing 2 changed files
... ...
@@ -1,6 +1,56 @@
1 1
 OpenVPN Change Log
2 2
 Copyright (C) 2002-2009 OpenVPN Technologies, Inc. <sales@openvpn.net>
3 3
 
4
+2009.10.01 -- Version 2.1_rc20
5
+
6
+* Fixed a bug introduced in 2.1_rc17 (svn r4436) where using the
7
+  redirect-gateway option by itself, without any extra parameters,
8
+  would cause the option to be ignored.
9
+
10
+* Fixed build problem when ./configure --disable-server is used.
11
+
12
+* Fixed ifconfig command for "topology subnet" on FreeBSD (Stefan Bethke).
13
+
14
+* Added --remote-random-hostname option.
15
+
16
+* Added "load-stats" management interface command to get global server
17
+  load statistics.
18
+
19
+* Added new ./configure flags:
20
+
21
+  --disable-def-auth      Disable deferred authentication
22
+  --disable-pf            Disable internal packet filter
23
+
24
+* Added "setcon" directive for interoperability with SELinux (Sebastien
25
+  Raveau).
26
+
27
+* Optimized PUSH_REQUEST handshake sequence to shave several seconds
28
+  off of a typical client connection initiation.
29
+
30
+* The maximum number of "route" directives (specified in the config
31
+  file or pulled from a server) can now be configured via the new
32
+  "max-routes" directive.
33
+
34
+* Eliminated the limitation on the number of options that can be pushed
35
+  to clients, including routes.  Previously, all pushed options needed
36
+  to fit within a 1024 byte options string.
37
+
38
+* Added --server-poll-timeout option : when polling possible remote
39
+  servers to connect to in a round-robin fashion, spend no more than
40
+  n seconds waiting for a response before trying the next server.
41
+
42
+* Added the ability for the server to provide a custom reason string
43
+  when an AUTH_FAILED message is returned to the client.  This
44
+  string can be set by the server-side managment interface and read
45
+  by the client-side management interface.
46
+
47
+* client-kill management interface command, when issued on server, will
48
+  now send a RESTART message to client.
49
+  This feature is intended to make UDP clients respond the same as TCP
50
+  clients in the case where the server issues a RESTART message in
51
+  order to force the client to reconnect and pull a new options/route
52
+  list.
53
+
4 54
 2009.07.16 -- Version 2.1_rc19
5 55
 
6 56
 * In Windows TAP driver, refactor DHCP/ARP packet injection code to
... ...
@@ -1,5 +1,5 @@
1 1
 dnl define the OpenVPN version
2
-define(PRODUCT_VERSION,[2.1_rc19e])
2
+define(PRODUCT_VERSION,[2.1_rc20])
3 3
 dnl define the TAP version
4 4
 define(PRODUCT_TAP_ID,[tap0901])
5 5
 define(PRODUCT_TAP_WIN32_MIN_MAJOR,[9])