I have an android smartphone (4.3/KitKat) and I'm trying to use the integrated VPN to connect to my home network with L2TP/IPSec RSA.
I've been messing with this for a while now, but I seem to keep hitting a wall. This is my most recent /var/log/syslog
http://pastebin.com/9EXHpwuP
For the longest time, I had assumed this was the culprit:
Code:
racoon: INFO: NAT-D payload #1 doesn't match
racoon: INFO: NAT detected: PEER
However,
this guide shows a syslog where the same error occurs, but their connection works, so I think it might be something else.
I'm running Debian Squeeze, with the following racoon.conf
Code:
log debug;
path certificate "/etc/racoon/certs";
remote anonymous {
exchange_mode main;
my_identifier fqdn "OMITTED";
certificate_type x509 "server.crt" "server.key";
ca_type x509 "ca.crt";
generate_policy on;
passive on;
nat_traversal force;
dpd_delay_20;
proposal {
encryption_algorithm aes;
hash_algorithm md5;
authentication_method rsasig;
dh_group modp1024;
}
}
sainfo anonymous {
encryption_algorithm aes, 3des;
authentication_algorithm hmac_sha1, hmac_md5;
compression_algorithm deflate;
}
I've also tried setting nat_traversal to on, but that also didn't help.
I used to have this working with my tablet (Cynogen Mod), but I've forgotten most of what I did to get it working. Would someone else be able to point me toward the settings I'd need? I've been scouring the web for as many guides and tutorials as I can, and they've all sort of muddled together in my head at this point.