cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1448
Views
0
Helpful
4
Replies

site to site ipsec vpn with noncisco routers

Giga Tsverava
Level 1
Level 1

hello,

i am trying to connect cisco 2911 router with noncisco routers (HP, TPlink) using site-to-site ipsec vpn  with crypto-maps.

the problem is that vpn traffic shows "#send errors" if command "crypto isakmp identity dn" is used (we are using it for certificate based authentication for cisco vpn clients). when i delete the command, vpn works fine with noncisco devices.

please can you advice if there is any option on cisco ios to solve the problem.

 

thanks

giga

1 Accepted Solution

Accepted Solutions

okay,

 

try using isakmp profile, something like below:

 

crypto isakmp profile test
   match identity address 1.1.1.1 255.255.255.255

 

now under crypto map call the isakmp profile as below:

crypto map test 1 ipsec-isakmp test

 

-Altaf

 

View solution in original post

4 Replies 4

ajiddima
Level 1
Level 1

Hi,

 

Can you try using this command instead of the above:

 

crypto isakmp identity auto

Hi,

thank for reply

unfortunately ios doesn't have AUTO command, it has only ADDRESS, DN and HOSTNAME . 

 

giga

 

okay,

 

try using isakmp profile, something like below:

 

crypto isakmp profile test
   match identity address 1.1.1.1 255.255.255.255

 

now under crypto map call the isakmp profile as below:

crypto map test 1 ipsec-isakmp test

 

-Altaf

 

thanks Altaf, you gave me right way for problem solution.

this configuration of crypto isakmp profile works fine for me: 

crypto isakmp profile test
 
 keyring test
  self-identity address
  match identity address x.x.x.x 255.255.255.255

 

giga