diff options
author | Sanket Shah <sanket.shah@elitecore.com> | 2011-08-30 15:23:03 +0200 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2011-08-30 15:23:03 +0200 |
commit | 4c6e4209662b2a4147cde16c2144a253a7430a49 (patch) | |
tree | d949349b4bcedd9a759897272c32c1e68d67ef83 /net | |
parent | c6675233f9015d3c0460c8aab53ed9b99d915c64 (diff) | |
download | linux-3.10-4c6e4209662b2a4147cde16c2144a253a7430a49.tar.gz linux-3.10-4c6e4209662b2a4147cde16c2144a253a7430a49.tar.bz2 linux-3.10-4c6e4209662b2a4147cde16c2144a253a7430a49.zip |
netfilter: nf_ct_pptp: fix DNATed PPTP connection address translation
When both the server and the client are NATed, the set-link-info control
packet containing the peer's call-id field is not properly translated.
I have verified that it was working in 2.6.16.13 kernel previously but
due to rewrite, this scenario stopped working (Not knowing exact version
when it stopped working).
Signed-off-by: Sanket Shah <sanket.shah@elitecore.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nf_conntrack_pptp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/nf_conntrack_pptp.c b/net/netfilter/nf_conntrack_pptp.c index 2fd4565144d..31d56b23b9e 100644 --- a/net/netfilter/nf_conntrack_pptp.c +++ b/net/netfilter/nf_conntrack_pptp.c @@ -364,6 +364,7 @@ pptp_inbound_pkt(struct sk_buff *skb, break; case PPTP_WAN_ERROR_NOTIFY: + case PPTP_SET_LINK_INFO: case PPTP_ECHO_REQUEST: case PPTP_ECHO_REPLY: /* I don't have to explain these ;) */ |