auto ipsec-router-test type=tunnel left=x.x.x.x # x.x.x.x = linux box public ip address right=y.y.y.y # y.y.y.y = router public ip address rightsubnet=192.168.2.0/24 # private network behind the router - host to which throughput testing was done is here. keyexchange=ike encrypt=yes authenticate=no pfs=no lifetime=8h
----------------------------
Cisco Router config:
crypto isakmp policy 1 encr 3des hash md5 authentication pre-share crypto isakmp key SECRET-VALUE address x.x.x.x crypto ipsec transform-set 3DES-MD5 esp-3des esp-md5-hmac crypto map TEST 1 ipsec-isakmp set peer x.x.x.x set transform-set 3DES-MD5 match address 101 access-list 101 permit ip 192.168.2.0 0.0.0.255 host x.x.x.x interface crypto map TEST -------------------------------------
Make sure that your router supports 3DES. Authentication is missing in this example. Use PreSharedKey authentication.
auto ipsec-router-test type=tunnel left=x.x.x.x # x.x.x.x = linux box public ip address right=y.y.y.y # y.y.y.y = router public ip address rightsubnet=192.168.2.0/24 # private network behind the router - host to which throughput testing was done is here. keyexchange=ike encrypt=yes authenticate=no pfs=no lifetime=8h
----------------------------
Cisco Router config:
crypto isakmp policy 1 encr 3des hash md5 authentication pre-share crypto isakmp key SECRET-VALUE address x.x.x.x crypto ipsec transform-set 3DES-MD5 esp-3des esp-md5-hmac crypto map TEST 1 ipsec-isakmp set peer x.x.x.x set transform-set 3DES-MD5 match address 101 access-list 101 permit ip 192.168.2.0 0.0.0.255 host x.x.x.x interface crypto map TEST -------------------------------------
Make sure that your router supports 3DES. Authentication is missing in this example. Use PreSharedKey authentication.