I'm trying to connect a cisco 931 (with VPN license enabled) to a Palo Alto (PA) Global Connect VPN Server by trying to create an IPSec VPN Tunnel.
I feel I'm missing something here:
The following example shows how to configure IPsec remote-access type with RSA authentication on the router:
Below are the examples I'm trying with no success to connect the router to the PA.
The following example shows how to configure IPsec remote-access type with RSA authentication on the router:
Router# configure terminal
Router(config)# crypto isakmp profile remote-access-cert
Router(config-ipsec-pf)# set peer address 10.0.1.200
Router(config-ipsec-pf)# match address remote-access
Router(config-ipsec-pf)# xauth-identity justin xauth-password cisco123
Router(config-ipsec-pf)# policy authentication rsa-sig
Router(config-ipsec-pf)# passphrase 123456
Router(config-ipsec-pf)# exit
Router(config)#
The following example shows how to configure IPsec remote-access type with PSK authentication on the router:
Router# configure terminal
Router(config)# crypto isakmp profile remote-access-psk
Router(config-ipsec-pf)# set peer address 10.0.1.200
Router(config-ipsec-pf)# self-identity user-fqdn access
Router(config-ipsec-pf)# initiate mode aggressive
Router(config-ipsec-pf)# match address remote-access
Router(config-ipsec-pf)# policy authentication pre-share
Router(config-ipsec-pf)# pre-share-key cisco123
Router(config-ipsec-pf)# xauth-identity justin xauth-password cisco123
Router(config-ipsec-pf)# exit
Router(config)#
The following example shows how to configure IPsec site-to-site type with RSA authentication on the router:
Router# configure terminal
Router(config)# crypto isakmp profile site2site-cert
Router(config-ipsec-pf)# set peer address 10.0.1.200
Router(config-ipsec-pf)# match address site-to-site 192.168.30.0 255.255.255.0 192.168.20.0 255.255.255.0
Router(config-ipsec-pf)# initiate mode main
Router(config-ipsec-pf)# policy authentication rsa-sig
Router(config-ipsec-pf)# passphrase 123456
Router(config-ipsec-pf)# exit
Router(config)#
The following example shows how to configure IPsec site-to-site type with PSK authentication on the router:
Router# configure terminal
Router(config)# crypto isakmp profile site2site-psk
Router(config-ipsec-pf)# set peer address 10.0.1.200
Router(config-ipsec-pf)# match address site-to-site 192.168.30.0 255.255.255.0 192.168.20.0 255.255.255.0
Router(config-ipsec-pf)# initiate mode main
Router(config-ipsec-pf)# policy authentication pre-share
Router(config-ipsec-pf)# pre-share-key cisco123
Router(config-ipsec-pf)# exit
Router(config)#
I feel like I'm missing a config somewhere in attempting to make this tunnel work.
Is there another configuration line I need to connect to Global Connect?
Thank you.