Hi,
trying to establish a normal IPsec Tunnel between a Peplink Dome Pro with dynamic IP (Telekom.Simcard) and a Cisco Router C8200 with static public IP.
Cant use DynDNS cause of security reasons…
Cant figuere out a working configuration tryied it with Crypto Map dynamic Peer no chance it wont work.
Can anybody advise me or send me a propper how to?
1Love
Alexander
here is my configuration for Cisco C8200
a) Access-List für VPN-Traffic
ip access-list extended VPN-TRAFFIC
permit ip 0.0.0.0 255.255.255.255
b) IKEv2 Proposal und Policy
crypto ikev2 proposal IKEV2_PROPOSAL
encryption aes-cbc-256
integrity sha256
group 14
crypto ikev2 policy IKEV2_POLICY
proposal IKEV2_PROPOSAL
c) IKEv2 Keyring (mit dynamischem Peer)
Die Adresse 0.0.0.0 akzeptiert beliebige Initiatoren
crypto ikev2 keyring IKEV2_KEYRING
peer PEPLINK
address 0.0.0.0 0.0.0.0
pre-shared-key <GEHEIMER_PSK>
d) IKEv2 Profile mit statischer Peer-ID
Optional: Mit match identity remote fqdn kann eine feste Peer-ID verwendet werden, die auf beiden Seiten identisch sein muss.
crypto ikev2 profile IKEV2_PROFILE
match identity remote address 0.0.0.0 0.0.0.0
identity local address <CISCO_PUBLIC_IP>
authentication remote pre-share
authentication local pre-share
keyring local IKEV2_KEYRING
e) IPsec Transform Set und Profile
crypto ipsec transform-set TS esp-aes 256 esp-sha256-hmac
mode tunnel
crypto ipsec profile IPSEC_PROFILE
set transform-set TS
set ikev2-profile IKEV2_PROFILE
f) Crypto Map
crypto map VPN-MAP 10 ipsec-isakmp
set peer peplink.test dynamic
set transform-set TS
set ikev2-profile IKEV2_PROFILE
match address VPN-TRAFFIC
interface <WAN_INTERFACE>
crypto map VPN-MAP