Differences between revisions 3 and 4
Revision 3 as of 2014-07-01 19:47:07
Size: 774
Editor: PieterSmit
Comment: Mark code
Revision 4 as of 2014-07-01 19:48:09
Size: 789
Editor: PieterSmit
Comment: fix code blocks.
Deletions are marked like this. Additions are marked like this.
Line 17: Line 17:
{{{
Line 23: Line 24:
}}}
Line 24: Line 26:
{{{
Line 29: Line 32:
!
}}}

IPSEC

IPSEC encryption related links.

Sample Cisco Config

crypto isakmp policy 10 
   hash sha 
   authentication pre-share 
   crypto isakmp key vpnkey address 10.0.0.2

!!# Phase Two #!!

crypto ipsec transform-set vpnset esp-aes esp-sha-hmac 
   exit 
crypto map vpnset 10 ipsec-isakmp 
   set peer 10.0.0.2 
   set transform-set vpnset 
   match address 100

!!#Apply to outside int #!!

int ??
    !ip address 10.0.0.1
    crypto map vpnset
access-list 100 permit ip 10.10.10.0 0.0.0.255 10.20.0.0 0.0.0.255
ip route 0.0.0.0 0.0.0.0 192.168.16.1

...


CategorySecurity

IpSec (last edited 2017-11-08 19:17:26 by PieterSmit)