ich versuche seit ein paar Tagen einen Racoon-Client mit einer LANCOM DSL/I-1611 Office zu verbinden. Allerdings scheiterte ich bisher immer in IKE-Phase 2.
trace # vpn-status sagt das:
Meine racoon.conf sieht so aus:[VPN-Status] 2010/08/31 08:29:02,020
IKE info: Phase-2 failed for peer MY_VPN: no rule matches the phase-2 ids 192.168.2.0/255.255.255.0 <-> 10.10.1.0/255.255.255.0
IKE log: 082902.000000 Default message_negotiate_sa: no compatible proposal found
IKE log: 082902.000000 Default dropped message from a.b.c.d port 501 due to notification type NO_PROPOSAL_CHOSEN
IKE info: dropped message from peer MY_VPN a.b.c.d port 501 due to notification type NO_PROPOSAL_CHOSEN
[VPN-Status] 2010/08/31 08:29:02,040
VPN: Error: IPSEC-R-No-rule-matched-IDs (0x3201) for MY_VPN (a.b.c.d)
Meine ipsec.conf sieht so aus:path pre_shared_key "/etc/racoon/psk.txt";
remote the.remote.host.ip {
exchange_mode aggressive;
my_identifier fqdn "me.dyndns.org";
proposal {
encryption_algorithm 3des;
hash_algorithm sha1;
authentication_method pre_shared_key;
dh_group modp1024;
}
}
sainfo address 192.168.2.0/24[any] any address 10.10.1.0/24[any] any {
pfs_group 2;
encryption_algorithm 3des;
authentication_algorithm hmac_md5;
compression_algorithm deflate;
}
Ich bin mir nicht sicher, aber könntes es daran liegen das die Lancom-Box die vom Client vorgeschlagene Regel nicht kennt?#!/bin/setkey -f
# Flush SAD and SPD
flush;
spdflush;
# Richtlinien
spdadd 192.168.2.0/24 10.10.1.0/24 any -P out ipsec
esp/tunnel/192.168.2.100-the.remote.host.ip/require;
spdadd 10.10.1.0/24 192.168.2.0/24 any -P in ipsec
esp/tunnel/the.remote.host.ip-192.168.2.100/require;
Diese wird hier definiert:IKE info: Phase-2 failed for peer MY_VPN: no rule matches the phase-2 ids 192.168.2.0/255.255.255.0 <-> 10.10.1.0/255.255.255.0
Hoffe jemand kann mir helfen.sainfo address 192.168.2.0/24[any] any address 10.10.1.0/24[any] any {
pfs_group 2;
encryption_algorithm 3des;
authentication_algorithm hmac_md5;
compression_algorithm deflate;
}
Vielen Dank im Vorraus.
Und freundliche Grüße