I have an RB1200 and trying to setup IPSec VPN to a WatchGuard. Everything seems to be setup correctly, except when the tunnel tries to get established, I see the bellow in the logs:
Request for establishing IPsec-SA was queued due to no phase 1 found.
Phase2 negociation failed due to time up waiting for phase1. ESP
The watchguard is setup correctly with the Phase1 and Phase2 and allowed gateway (mikrotik)
The configuration on the two routers doesn’t match, at least for the phase 1 configuration. Double check everything. If you need a second/third/fourth pair of eyes on that post the configurations here.
That means the phase 1 proposals each router has configured don’t have a match between them, so they can’t pick one and stop negotiating. At least one phase 1 proposal must match exactly.
I guess “no proposal chosen” could also apply to there not being a matching phase 2 policy. It depends on the device generating the log.
modp768 is a Diffie-Hellman group (DH1), and has nothing to do with SHA1, which is a hashing algorithm.
It really would be easiest if you just posted the configuration from both devices.
Phase 1 is configured under “/ip ipsec peer”. These settings must match:
authentication method
DH group
encryption algorithm
exchange mode
hash algorithm
it’s best practice to make the DPD and lifetime settings match also
NAT-T must be enabled on both sides if there is a NAT router between the two peers
Phase 1 is used to authenticate the peers to one another and generate the keying material for phase 2. It has nothing to do with actually encrypting any traffic between the two peers - it’s just for setting that up as the next step.
Phase 2 is configured under “/ip ipsec proposal” and is linked to under “/ip ipsec policy”. These settings must match, and they have NOTHING to do with the settings in phase 1:
IPsec protocol
mode (tunnel or transport)
authentication method
encryption method
PFS (DH) group
it’s best practice to make the lifetime match
Again: It really would be easiest if you just posted the configuration from both devices.