Vorrei sostituire questo server con un bel Cisco 2811.. arrivo ad un bel punto in cui riesco a far salire l'ISAMP ma poi non mi funziona l'IPSEC.
Io purtroppo non posso fare dei tunnel, pertanto come posso associare differenti VPN ? Devo utilizzare le loopback immagino...
In questo momento una VPN attiva su linux è la seguente:
Codice: Seleziona tutto
conn VPNCLIENTE
left=IPINTERNOSERVERNATTATO
leftid=IPINTERNOSERVERNATTATO
leftnexthop=IPGATEWAY
right=IPPUBBLICOCLIENTE
rightid=192.168.177.253
rightsubnet=172.16.102.0/24
authby=secret
auth=esp
pfs=yes
Codice: Seleziona tutto
IPINTERNOSERVERNATTATO 192.168.177.253 : PSK "CHIAVE"

Codice: Seleziona tutto
crypto isakmp policy 1
encr 3des
hash md5
authentication pre-share
group 2
lifetime 3600
crypto isakmp key CHIAVE address IPPUBBLICOCLIENTE
!
!
crypto ipsec transform-set 3DES-MD5 esp-3des esp-md5-hmac
crypto ipsec transform-set 3DES-SHA esp-3des esp-sha-hmac
!
!
c
crypto map VPNWELTRA local-address FastEthernet0/1
crypto map VPNWELTRA 1 ipsec-isakmp
set peer IPPUBBLICOCLIENTE
set transform-set 3DES-MD5
set pfs group2
match address vpn-static1
ip access-list extended vpn-static1
permit ip 172.16.20.0 0.0.0.255 172.16.102.0 0.0.0.255
permit ip 172.16.100.0 0.0.0.255 172.16.102.0 0.0.0.255
permit ip 172.31.0.0 0.0.0.255 172.16.102.0 0.0.0.255
!
in cosa sto sbagliando?
Ciao e grazie per le eventuali risposte