This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Astaro 5.2 VPN with Cisco 2600 Router

Hello,

I am able to complete Phase 1 (Main Mode) IPSEC negotiation, but Phase 2 ("quick mode") will not complete.  From the Cisco debug logs, I can see that it fails due to "proxies not supported"....

I have searched the forums, and I found someone with the exact problem I had, but no one ever responded.  I have also seen posts by others who say they have completed *many* CiscoAstaro VPN tunnels, but they neglected to post a working sample configuration.

Here are the Astaro Policy (custom) settings:

ISAKMP Settings
============

IKE Mode:                       Main Mode
Encryption Algorithm:        AES 128bit
Authentication Algorithm:   SHA1 160bit
IKE DH Group:                  DH Group 2 (MODP1024)
SA Lifetime (secs):           86400


IPSEC Settings
===========

IPSec Mode:                    Tunnel
IPSEC Protocol:                ESP
Encryption Algorithm:        AES 128bit
Enforce Algorithms:           Off
Authentication Algorithm:   SHA1 160bit
SA Lifetime (secs):           3600
PFS:                              No PFS
Compression:                   Off


Here are the Cisco IOS Router Settings:

crypto isakmp policy 1
 encr aes
 authentication pre-share
 group 2

crypto isakmp key privatekey123! address 14.126.64.43 no-xauth

crypto ipsec transform-set myset esp-aes esp-sha-hmac 

crypto map aptmap 1 ipsec-isakmp 
 set peer 14.126.64.43
 set transform-set myset
 match address 110


If anyone can see a problem with any of this, or provide a sample working config (cleaned, of course) from your own stash, then it would be greatly appreciated!  Once again, the IKE Main Mode is complete.  However, Phase two fails....  No detailed error messages exist on the Astaro side.

Thank you....

-WW


This thread was automatically locked due to age.
Parents
  • Did you setup the crypto map under the external interface ?

    I found a very old 3DES working example from the old astaro faq ! [:)]


    !
    version 12.2
    service timestamps debug uptime
    service timestamps log uptime
    no service password-encryption
    !
    hostname Router
    !
    boot system flash:c3620-ik9s-mz.122-5.bin
    enable password ******
    !
    ip subnet-zero
    !
    !
    !
    ip ssh time-out 120
    ip ssh authentication-retries 3
    !
    crypto isakmp policy 1
    encr 3des
    hash md5
    authentication pre-share
    group 2
    crypto isakmp key ****** address 212.212.212.212
    !
    !
    crypto ipsec transform-set 3DES-MD5 esp-3des esp-md5-hmac
    !
    crypto map TEST 1 ipsec-isakmp
    set peer 212.212.212.212
    set transform-set 3DES-MD5
    set pfs group2
    match address 101
    !
    call rsvp-sync
    !
    !
    !
    !
    !
    !
    !
    !
    interface Ethernet0/0
    no ip address
    shutdown
    half-duplex
    !
    interface Ethernet0/1
    ip address 192.168.10.1 255.255.255.0
    half-duplex
    !
    interface Ethernet0/2
    no ip address
    shutdown
    half-duplex
    !
    interface Ethernet0/3
    no ip address
    shutdown
    half-duplex
    !
    interface Ethernet1/0
    ip address 212.212.212.211 255.255.255.0
    half-duplex
    crypto map TEST
    !
    ip classless
    ip route 0.0.0.0 0.0.0.0 212.212.212.212
    ip http server
    ip pim bidir-enable
    !
    access-list 101 permit ip 192.168.10.0 0.0.0.255 host 212.212.212.212
    access-list 101 permit ip 192.168.10.0 0.0.0.255 192.168.2.0 0.0.0.255
    !
    dial-peer cor custom
    !
    !
    !
    !
    !
    line con 0
    line aux 0
    line vty 0 4
    password ******
    login
    !
    end
  • How embarrassing.....

    I was so focused on the debugs that I neglected a basic element of the configuration. "Not seeing the forest for the trees." [:)]  That's many hours that I'll chalk up to "experience".

    Thank you very much!  Everything is working as expected.

    --WW
  • To clarify.... Yes, adding the crypto map under the external interface "helped". ;-)
Reply Children
No Data