I just set up two vyos router for DMVPN with the documented guide, but I’m unable to get the VPN up because of a seemingly proposal mismatch.
Both proposals in the config are the same, but the charon always uses proposals I don’t even have configured. See the log of the hub below.
Both routers are running version 1.2.6-S1.
Jan 15 23:50:48 vpngw01 charon[2789]: 10[CFG] received proposals: IKE:AES_CBC_128/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_2048, IKE:AES_CBC_256/HMAC_SHA2_256_128/PRF_HMAC_SHA2_256/MODP_2048
Jan 15 23:50:48 vpngw01 charon[2789]: 10[CFG] configured proposals: IKE:AES_CBC_256/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_1024, IKE:3DES_CBC/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_1024, IKE:3DES_CBC/HMAC_SHA1_96/PRF_HMAC_SHA1/MODP_1024
This is the configured IKE and ESP Proposal on the Hub:
esp-group ESP-HUB {
compression disable
lifetime 28800
mode tunnel
pfs dh-group14
proposal 1 {
encryption aes128
hash sha1
}
proposal 2 {
encryption aes256
hash sha256
}
}
ike-group IKE-HUB {
close-action none
ikev2-reauth no
key-exchange ikev1
lifetime 3600
proposal 1 {
dh-group 14
encryption aes128
hash sha1
}
proposal 2 {
dh-group 14
encryption aes256
hash sha256
}
}
Any ideas what could cause this issue?