Project

General

Profile

High Availability » History » Version 18

Martin Willi, 14.08.2013 12:07
Recommend a --local-node 0 clusterip rule

1 1 Martin Willi
h1. High Availability
2 1 Martin Willi
3 3 Martin Willi
{{>toc}}
4 3 Martin Willi
5 14 Tobias Brunner
Starting with the [[4.4.0|4.4.0 release]], the IKEv2 daemon experimentally supports pseudo active/active High Availability and Load Sharing capabilities using a cluster of [initially] two nodes.
6 3 Martin Willi
7 3 Martin Willi
> *The development of the High Availability functionality has been sponsored by "secunet":http://www.secunet.com.*
8 1 Martin Willi
9 1 Martin Willi
h2. Problem statement
10 1 Martin Willi
11 1 Martin Willi
The IKEv2/IPsec protocol is not well suited for operation in an active/active cluster. While it is possible to share the state of IKE_SAs over high-speed links in a cluster, sharing the kernel-maintained IPsec ESP SAs is very difficult. Due to the strict sequence numbering of ESP packets, the overhead for synchronizing ESP sequence numbers would be very high.
12 1 Martin Willi
13 14 Tobias Brunner
The IETF ipsecme working group "described the problems":http://tools.ietf.org/html/rfc6027 in more details. If it will produce a standard for a solution, it is likely that it relies on the client for state synchronization. This will, however, require an extension to the IKEv2 protocol. Clients connecting to a highly available cluster will benefit from this features only if they support this extension, existing clients (such as the one shipped with Windows 7) will not be able to take advantage of this efforts.
14 1 Martin Willi
15 1 Martin Willi
h2. Possible approaches
16 1 Martin Willi
17 2 Andreas Steffen
h3. Node-to-node synchronization
18 1 Martin Willi
19 2 Andreas Steffen
While the synchronization of IKE state including sequence numbers is realistic between two nodes, exchanging state information of an ESP security association is difficult.
20 1 Martin Willi
21 2 Andreas Steffen
Synchronizing the state for each processed IPsec packet will put a high load on the nodes. Synchronization after a certain amount of packets and/or after a certain timeout can reduce the load, but will make fail-over handling much more difficult, as we have to guess on the taking-over node how many packets the failing node has processed, but could not synchronize before it failed.
22 1 Martin Willi
23 1 Martin Willi
Another problem with such an approach is that there is no way of doing load sharing between nodes. An SA is strictly bound to a single node until the event of a failure.
24 1 Martin Willi
25 2 Andreas Steffen
h3. Client-to-cluster synchronization
26 1 Martin Willi
27 2 Andreas Steffen
Another approach to consider is requesting state information from the client. In the event of a failure, the taking-over node can request sequence numbers from the client. But this approach has the same deficiencies as previously discussed. Further, it requires extensions to the IKE protocol between client and gateway, making existing implementations incompatible with this approach.
28 1 Martin Willi
29 1 Martin Willi
h2. Functional specification
30 1 Martin Willi
31 1 Martin Willi
strongSwan uses a slightly different approach. Our solution should provide:
32 14 Tobias Brunner
* *Failure detection*: If a node fails due to power loss, hardware failures, kernel oops or daemon crashes, the node will be removed from the cluster.
33 14 Tobias Brunner
* *State synchronization*: If a node is removed due to failure or administrative purposes, the cluster should already have an up-to-date copy of the nodes state to take over.
34 14 Tobias Brunner
* *Takeover*: Node failure detection and state takeover should happen within 1-3 seconds.
35 14 Tobias Brunner
* *Transparent migration*: TCP or application sessions should not be interrupted during take-over.
36 14 Tobias Brunner
* *Load sharing*: Load should be shared across all actives nodes in a cluster.
37 14 Tobias Brunner
* *Reintegration*: A repaired node can be (re-)added to an existing cluster, taking over a part of the load.
38 14 Tobias Brunner
* *Legacy clients*: No protocol extension, any IKEv2 client should be able to benefit from High Availability if connected to a cluster.
39 1 Martin Willi
40 1 Martin Willi
Migration of clients to another node does not affect the connection, a client does usually not detect a takeover. This allows a gateway administrator to e.g. remove a node from the load sharing cluster, apply security updates, reboot and reintegrate the node. 
41 1 Martin Willi
42 1 Martin Willi
h2. Selected solution
43 1 Martin Willi
44 1 Martin Willi
The selected solution is based on the idea of "ClusterIP":http://lwn.net/Articles/108078, a Linux kernel module allowing a set of nodes to provide a service under a single virtual IP.
45 1 Martin Willi
46 1 Martin Willi
h3. How ClusterIP works
47 1 Martin Willi
48 14 Tobias Brunner
All nodes in a ClusterIP-based setup act under a single virtual IP address. The nodes spoof ARP requests with a multicast MAC address. This will make the switch forward the packet to each node in the cluster.
49 1 Martin Willi
50 1 Martin Willi
The received packet is associated to a segment by calculating a hash value of it. In the simplest setup, the source address is hashed and the hash value modulo the number of segments results in the responsible segment number. Each segment is handled by exactly one node in the cluster.
51 1 Martin Willi
52 1 Martin Willi
The node responsible for the packet will pass it to upper layers, where all others just drop the packet in the netfilter code. Depending on the hash value, e.g. TCP connections are kept on the same node. If a node fails, a remaining node will take over the segment and process packets for it.
53 1 Martin Willi
54 1 Martin Willi
h3. IPsec with ClusterIP
55 1 Martin Willi
56 1 Martin Willi
While the ClusterIP module itself is not designed to handle IPsec traffic or even act as a forwarding router, the principle of ClusterIP is. If the IKE daemons in the cluster can synchronize the IKE state and the basic IPsec SA state without sequence numbers, a modified ClusterIP module can do the rest:
57 1 Martin Willi
58 6 Martin Willi
For traffic to decrypt, the SPI of the ESP packet is included in the hash calculation, resulting in a spread of the SAs across all nodes. For SAs the local node is not responsible, it picks out a packet from time to time and uses it to advance the replay window. Sequence numbers are not mangled if a packet is not verified using the IPsec authentication algorithm, only the selectively chosen and verified packets mangle the replay window state.
59 1 Martin Willi
60 6 Martin Willi
Earlier patches included the sequence number of the packet into the segment hash calculation. This yields to the spread of multiple packets in a single SA to multiple nodes, automatically updating the replay window. But the method has the drawback of reordering packets in a flow.
61 6 Martin Willi
62 14 Tobias Brunner
For traffic to encrypt on the cluster, the SA is looked up and the hash value is fed with the SPI of the found SA. If the segment matches, the packet is further processed. If not, only the sequence number is incremented. To avoid assigning the same sequence number to different packets on multiple nodes, we currently keep the outbound flow on a single node. One could spread the outgoing packets and assign unique sequence numbers on each node, but this will introduce other problems, such as a shortened replay window.
63 1 Martin Willi
64 1 Martin Willi
h2. Kernel Implementation
65 1 Martin Willi
66 1 Martin Willi
The ClusterIP Netfilter module uses an additional PREROUTING hook to mark received packets for forwarding. Two new Netfilter hooks are included in the IPsec processing, exactly before the decryption/encryption process (XFRM_IN/XFRM_OUT).
67 1 Martin Willi
68 1 Martin Willi
<pre>
69 1 Martin Willi
                 v        PLAIN        ^
70 1 Martin Willi
    +------------------------------------------------+
71 1 Martin Willi
    |            |                     |             |
72 1 Martin Willi
    |     +--------------+      +--------------+     |
73 1 Martin Willi
    |  4. |  PREROUTING  |      |   DECRYPT    |  3. |
74 1 Martin Willi
    |     +--------------+      +--------------+     |
75 1 Martin Willi
    |            |                     ^             |
76 1 Martin Willi
    |            v                     |             |
77 1 Martin Willi
    |     +--------------+      +--------------+     |
78 1 Martin Willi
    |  5. |   XFRM_OUT   |      |   XFRM_IN    |  2. |
79 1 Martin Willi
    |     +--------------+      +--------------+     |
80 1 Martin Willi
    |            |                     ^             |
81 1 Martin Willi
    |            v           ^         | ESP/AH      |
82 1 Martin Willi
    |     +--------------+   |  +--------------+     |
83 1 Martin Willi
    |  6. |   ENCRYPT    |   +--|    INPUT     |  1. |
84 1 Martin Willi
    |     +--------------+      +--------------+     |
85 1 Martin Willi
    |            |                     |             |
86 1 Martin Willi
    +------------------------------------------------+
87 1 Martin Willi
                 v       CRYPTED       ^
88 1 Martin Willi
</pre>
89 1 Martin Willi
90 14 Tobias Brunner
# AH, ESP and UDP-Encapsulated ESP packets are all accepted. Other traffic is subject to the ClusterIP selection algorithm based on the source IP address (e.g. IKE traffic).
91 1 Martin Willi
# Undecrypted IPsec traffic gets dropped using a ClusterIP algorithm, based on the IPsec SA.
92 6 Martin Willi
# Decryption process is done on the responsible node only. Non-responsible nodes pick every n-th packet and verify it to update the replay window state.
93 1 Martin Willi
# Traffic is received on ClusterIP multicast MAC and must be tagged as unicast traffic to advance through IP forwarding.
94 1 Martin Willi
# After IPsec policy lookup, unencrypted traffic gets dropped using a ClusterIP algorithm, based on IPsec SA. Outgoing sequence numbers are assigned before the packed drop, this will keep outgoing sequence numbers in sync on all nodes.
95 1 Martin Willi
# Encryption process is done on the responsible node only.
96 1 Martin Willi
97 17 Martin Willi
Original patches are available for the "XFRM input/output hooks":http://wiki.strongswan.org/attachments/111/0001-Netfilter-hooks-before-XFRM-input-and-output-process.patch and to the "ClusterIP module":http://wiki.strongswan.org/attachments/120/0002-Extended-the-CLUSTERIP-module-to-use-it-on-a-IPSec-g.patch that allows ClusterIP to work with IPsec.
98 13 Martin Willi
The patches currently break the Netfilter ABI, iptables needs "a patch":http://wiki.strongswan.org/attachments/121/0001-Added-XFRM-hooks-to-iptables-headers.patch to work on top of a patched kernel.
99 4 Martin Willi
100 17 Martin Willi
For patches against newer kernels, have a look at the "tags of our Linux git tree":http://git.strongswan.org/?p=linux-dumm.git;a=tags. A "newer patchset":http://git.strongswan.org/?p=linux-dumm.git;a=shortlog;h=refs/heads/ha-3.8 does not break the Netfilter ABI anymore, avoiding the need for patching userland iptables.
101 15 Martin Willi
102 1 Martin Willi
h2. IKE daemon implementation
103 1 Martin Willi
104 1 Martin Willi
A separate high availability plugin implemented for the IKEv2 daemon charon is responsible for state synchronization between the nodes in a cluster and simple monitoring functionality. It is currently designed for two nodes, but will be extended to synchronize larger clusters in the future.
105 4 Martin Willi
106 14 Tobias Brunner
To enable the high availability plugin, build strongSwan with @--enable-ha@.
107 1 Martin Willi
108 1 Martin Willi
h3. Daemon hooks
109 1 Martin Willi
110 1 Martin Willi
The plugin registers itself at several hooks in the daemon. These hooks are used for notifications about SA state changes and push information to the plugin. The following hooks are used:
111 1 Martin Willi
* ike_keys(): receives IKE key material (DH, nonces, proposals)
112 1 Martin Willi
* ike_updown()/ike_rekey(): monitor state changes of IKE SAs
113 1 Martin Willi
* message(): used to update IKE message IDs
114 1 Martin Willi
* child_keys(): receives CHILD key material
115 1 Martin Willi
* child_state_change(): monitor state changes of CHILD SAs
116 1 Martin Willi
117 1 Martin Willi
The plugin registers its hook functions at the daemon bus. These hooks are sufficient to synchronize all IKE- and CHILD SAs with all the state required to do a fail-over of IKE and ESP SAs.
118 1 Martin Willi
119 1 Martin Willi
h3. Synchronization messages
120 1 Martin Willi
121 1 Martin Willi
The hook functions collect the required synchronization data and prepare messages to be sent to other nodes in the cluster. Messages are sent in unencrypted UDP datagrams, sent and received on port 4510. As these messages contain sensitive key material, securing the messages by IPsec is recommended.
122 1 Martin Willi
123 1 Martin Willi
No packet acknowledge/retransmit scheme is currently implemented, the cluster needs a reliable network with very few packet losses. It might be necessary to use a more reliable transport protocol in the future, especially if nodes start to drop packets due to an overloaded CPU.
124 1 Martin Willi
125 1 Martin Willi
Messages contain a protocol version, a message type and different attributes. The following synchronization message types are currently defined:
126 14 Tobias Brunner
* _IKE_ADD_: A new IKE_SA has been established. This message contains all information to derive key material. If the message contains a REKEY attribute, the IKE_SA inherits all required parameters from the old SA.
127 14 Tobias Brunner
* _IKE_UPDATE_: Update IKE_SA with newer information (e.g. Identities when authentication is complete).
128 14 Tobias Brunner
* _IKE_MID_INITIATOR_: Update the initiators IKE message ID.
129 14 Tobias Brunner
* _IKE_MID_RESPONDER_: Update the responders IKE message ID.
130 14 Tobias Brunner
* _IKE_DELETE_: Delete an established IKE_SA.
131 14 Tobias Brunner
* _CHILD_ADD_: CHILD_SA has been established, contains keying material.
132 14 Tobias Brunner
* _CHILD_DELETE_: CHILD_SA has been deleted.
133 1 Martin Willi
134 1 Martin Willi
h3. State synchronization
135 1 Martin Willi
136 1 Martin Willi
Received synchronization messages are parsed, mirrored IKE and CHILD_SAs are created from this information. Mirrored CHILD_SAs do not differ from normally exchanged ones; they are installed in the kernel and handle packets if ClusterIP feels responsible for it.
137 1 Martin Willi
138 1 Martin Willi
IKE_SAs are installed in a special PASSIVE state. They do not handle traffic, but accept state changes from sync messages only. PASSIVE IKE_SAs are managed in the IKE_SA manager as any other SA and are accessible through e.g. "ipsec statusall".
139 1 Martin Willi
140 12 Martin Willi
Key derivation is repeated on mirrored SAs the same way as it is done on the real SAs. This allows the reuse of existing installation routines and the HA plugin to be very unobtrusive. 
141 1 Martin Willi
142 1 Martin Willi
h3. Control messages
143 1 Martin Willi
144 1 Martin Willi
In addition to the synchronization messages, the HA plugin uses control messages to notify about segment changes and optionally messages for simple monitoring functions:
145 14 Tobias Brunner
* _SEGMENT_DROP_: List of segments the sending node is dropping responsibility.
146 14 Tobias Brunner
* _SEGMENT_TAKE_: List of segments the sending node is taking responsibility.
147 14 Tobias Brunner
* _STATUS_: Heartbeat message containing a list of segments the sending node is responsible.
148 14 Tobias Brunner
* _RESYNC_: Request for resynchronization of a list of segments.
149 1 Martin Willi
150 14 Tobias Brunner
The take/drop messages are sent to notify other nodes about changes done by the daemon automatically, or the administrator manually. The receiving node will automatically do the opposite action to handle all segments exactly once.
151 1 Martin Willi
152 14 Tobias Brunner
If heartbeat monitoring is enabled, the STATUS message is periodically sent. This allows to detect the activity of the remote node and take over segments the remote node is not serving. It also implements node failure detection for simple errors.
153 1 Martin Willi
154 14 Tobias Brunner
If a replacement of a failing node is installed, reintegration of the node can be sped up by sending the resynchronization message. The active node
155 1 Martin Willi
will start resyncing all SAs, allowing the administrator to rebalance the load distribution in the cluster afterwards.
156 1 Martin Willi
157 1 Martin Willi
h3. Failover
158 1 Martin Willi
159 1 Martin Willi
In the failover case, responsibility for complete ClusterIP segments are moved from one node to another. Responsibility for a segment can be enabled or disabled on each node. For this purpose, the plugin uses the same hashing algorithm to calculate responsibility based on the source IP address.
160 1 Martin Willi
161 1 Martin Willi
If a segment is activated, the plugin searches for IKE_SAs in this segment and sets the state of all PASSIVE IKE_SAs to ESTABLISHED. No further action is required: The daemon handles the IKE_SA as every other one and sends out synchronization messages for state changes.
162 1 Martin Willi
163 14 Tobias Brunner
On segment deactivation, the plugin searches for IKE_SAs in the ESTABLISHED state in these segments and sets the state to PASSIVE.
164 1 Martin Willi
165 1 Martin Willi
CHILD_SAs are completely unaffected from activation and deactivation: They are always active and handle traffic assigned by ClusterIP.
166 1 Martin Willi
167 1 Martin Willi
h3. Reintegration
168 1 Martin Willi
169 1 Martin Willi
To reintegrate a failed node into a cluster, the node needs state information from scratch. If all the required state has been synced, the reintegrated node can be used as failover node again. Segments can be activated on the reintegrated node only after all required state has been exchanged.
170 1 Martin Willi
171 14 Tobias Brunner
Each node caches IKE_SA specific messages locally for all IKE_SAs currently active. If a different node wants to reintegrate, the active node pushes the message cache to the new node. This allows the reintegrated node to reestablish the state for all IKE_SAs.
172 1 Martin Willi
173 12 Martin Willi
Synchronizing CHILD_SAs is not possible using the cache, as the messages do not contain sequence number information managed in the kernel. To reintegrate a node, the active node initiates rekeying on all CHILD_SAs. The new CHILD_SA will be synchronized, starting with fresh sequence numbers in the kernel. CHILD_SA rekeying is inexpensive, as it usually does not include a DH exchange.
174 1 Martin Willi
175 16 Martin Willi
h2. Building HA plugin
176 16 Martin Willi
177 16 Martin Willi
The HA plugin must be enabled during _./configure_. The plugin must use the same hashing algorithm for segment calculation as the kernel (jhash). This algorithm has changed for Linux 2.6.37, and may change in the future. To use the correct version of jhash, build strongSwan against the kernel headers of the kernel you're actually running strongSwan on:
178 16 Martin Willi
179 16 Martin Willi
<pre>
180 16 Martin Willi
./configure --enable-ha --with-linux-headers=/path/to/target/kernel/include/linux
181 16 Martin Willi
</pre>
182 16 Martin Willi
183 1 Martin Willi
h2. Configuration
184 1 Martin Willi
185 1 Martin Willi
Configuration is done in two places. The necessary virtual IPs and the ClusterIP rules are installed manually. This is explicitly not done by the daemon, as the rules must stay active after daemon shutdown or error conditions.
186 1 Martin Willi
187 12 Martin Willi
The HA plugin requires a configuration matching to the installed ClusterIP rules. All nodes in the cluster need an identical connection configuration, but _may_ use different credentials (i.e. different private keys and certificates to authenticate the cluster node).
188 1 Martin Willi
189 1 Martin Willi
h3. ClusterIP
190 1 Martin Willi
191 1 Martin Willi
The configuration of the extended ClusterIP module is similar to a default ClusterIP setup. For a traffic forwarding IPsec gateway, a cluster usually
192 1 Martin Willi
needs an internal virtual IP/MAC and an external virtual IP/MAC on each node.
193 1 Martin Willi
194 1 Martin Willi
<pre>
195 1 Martin Willi
ip address add 192.168.0.200/24 dev eth0
196 1 Martin Willi
iptables -A INPUT -i eth0 -d 192.168.0.200 -j CLUSTERIP --new \
197 1 Martin Willi
   --hashmode sourceip --clustermac 01:00:5e:00:00:20 \
198 18 Martin Willi
   --total-nodes 2 --local-node 0
199 1 Martin Willi
</pre>
200 1 Martin Willi
201 1 Martin Willi
This example installs the virtual IP 192.168.0.200 on interface eth0 and adds a corresponding ClusterIP rule. ClusterIP rules are always added to the INPUT chain. To get the same result for segment responsibility calculation in the kernel and the HA plugin, the sourceip hashmode and a hash init value of 0 must be used (default).
202 1 Martin Willi
203 1 Martin Willi
The _total-nodes_ option must match the configuration of the HA plugin, and all nodes require the same virtual IP/MAC and ClusterIP configuration.
204 1 Martin Willi
205 18 Martin Willi
ClusterIP requires the _local-node_ option to be present. While the HA plugin reassigns segment responsibility during daemon startup, it is recommended to use zero, so a node booting up does not process any packets until the HA plugin tells it to do so.
206 1 Martin Willi
207 1 Martin Willi
h3. HA plugin
208 1 Martin Willi
209 14 Tobias Brunner
The HA plugin configuration is handled in the [[strongswan.conf]] file.
210 1 Martin Willi
211 1 Martin Willi
<pre>
212 1 Martin Willi
charon {
213 1 Martin Willi
    # ...
214 8 Martin Willi
  plugins {
215 1 Martin Willi
    ha {
216 8 Martin Willi
      local = 10.0.0.2
217 8 Martin Willi
      remote = 10.0.0.1
218 8 Martin Willi
      segment_count = 2
219 8 Martin Willi
      # secret = s!ronG-P5K-s3cret
220 8 Martin Willi
      fifo_interface = yes
221 8 Martin Willi
      monitor = yes
222 8 Martin Willi
      resync = yes
223 1 Martin Willi
    }
224 8 Martin Willi
  }
225 1 Martin Willi
}
226 1 Martin Willi
</pre>
227 1 Martin Willi
228 1 Martin Willi
The _local_ and _remote_ addresses are used to send and receive sync messages, _segment_count_ defines the number of segments to use.
229 1 Martin Willi
230 9 Martin Willi
If a _secret_ option is specified, the nodes automatically establish a pre-shared key authenticated IPsec tunnel for HA sync and control messages (experimental).
231 1 Martin Willi
232 9 Martin Willi
The segment responsibility administration interface is enabled with the _fifo_interface_ option. The _monitor_ parameter enables the heartbeat based remote node monitoring, the _resync_ option enables automatic state resynchronization if a node joins the cluster. The heartbeat can be configured using the _heartbeat_delay_ and the _heartbeat_timeout_ options.
233 8 Martin Willi
234 8 Martin Willi
h3. Address pools
235 8 Martin Willi
236 8 Martin Willi
Using an address pool to assign virtual IP addresses to clients is a little more complicated in a cluster. Using a central database based pool should be no problem, as long as you have a fail-save MySQL database cluster.
237 8 Martin Willi
238 14 Tobias Brunner
In-memory address pools do not provide any synchronization: you don't want to assign the same address from two different nodes to different clients. One option would be to split up a e.g. 10.0.2.0/23 pool in a 10.0.2.0/24 and a 10.0.3.0/24 pool, and use each pool on one node. But this approach has its limitations: If a node goes down and gives away an IKE_SA, the pool state is lost. If it reintegrates into the cluster and takes over the same IKE_SA, the virtual IP will be in use again. But the reset pool will not reflect this fact and may reassign the same address to another client.
239 8 Martin Willi
240 14 Tobias Brunner
As an alternative, [[4.4.1|strongSwan 4.4.1]] provides a HA enabled in-memory address pool. It is simple to configure, but only hands out addresses the local node is responsible for (using segment calculations). Further, it reserves addresses in the pool for IKE_SAs handled by a different node.
241 8 Martin Willi
242 14 Tobias Brunner
To configure an HA enabled in-memory address pool, add a _pools_ subsection and define the required pools. Use exactly the _same_ pool configuration on both nodes, there is no need to split up the pools with the HA enabled implementation!
243 8 Martin Willi
244 8 Martin Willi
<pre>
245 8 Martin Willi
# ...
246 8 Martin Willi
    ha {
247 8 Martin Willi
      # ...
248 8 Martin Willi
      pools {
249 8 Martin Willi
        sales = 10.0.1.0/24
250 8 Martin Willi
        finance = 10.0.2.0/24
251 8 Martin Willi
      }
252 8 Martin Willi
    }
253 8 Martin Willi
</pre>
254 8 Martin Willi
255 14 Tobias Brunner
To use the pools, reference them in an [[ipsec.conf]] connection section:
256 8 Martin Willi
257 8 Martin Willi
<pre>
258 8 Martin Willi
  rightsourceip=%sales
259 8 Martin Willi
</pre>
260 1 Martin Willi
261 1 Martin Willi
h3. Administrating segment responsibility
262 1 Martin Willi
263 1 Martin Willi
Changing the segment responsibility is done for the daemon, where it will propagate the changes in segment responsibility to the kernel.
264 1 Martin Willi
265 1 Martin Willi
The HA plugin uses a very similar interface for segment control as ClusterIP. Instead of a proc entry, it uses a FIFO located at _/var/run/charon.ha_ .
266 1 Martin Willi
Echoing +1/-1 will activate/deactivate responsibility for segment 1, while an additional command *3 will enforce a resynchronization by triggering a rekey of all SAs in segment 3.
267 10 Martin Willi
268 10 Martin Willi
h2. Kernel/IPtables patches