cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
3877
Views
10
Helpful
3
Replies

Add a IP to Encryption domain/interesting traffic

Arif
Level 1
Level 1

Hi, I am instructed that add a specific IP to Encryption domain/interesting traffic. But I don't know how ?

How can I add specific IP to that. Thanks...

1 Accepted Solution

Accepted Solutions

Deepak Kumar
VIP Alumni
VIP Alumni

Hi,

If this VPN is already running then you will must find a Crypto-map and one ACL is also applied in the Crypto-map with configuration command "Match address,,,,,,,". (,,, ACL number or name).

 

See here a example:

 

ip access-list extended VPN-TRAFFIC  <ACL>
10 permit ip <Local LAN Subnet> any

11 permit ip <source IP/Subnet>  <Destinatio  IP/Subnet>  <Add this new entry>

!
!
crypto map IPSEC-SITE-TO-SITE-VPN 10 ipsec-isakmp  <Crypto MAP>
match address VPN-TRAFFIC  <ACL applied in Crypto-MAP>
set peer <WAN IP of remote end>
set transform-set MY-SET

 

Note: ACL name/Number or Crypto map may be different in your configuration. 

 

If you are not sure then please share running configuration. You may also denied the Same subnet source and destination subnet in your  NAT acl.

 

Regards,

Deepak Kumar

 

 

 

 

Regards,
Deepak Kumar,
Don't forget to vote and accept the solution if this comment will help you!

View solution in original post

3 Replies 3

Look at the corresponding "crypto map" configuration there you find a referenced ACL "match address ..." that specifies which traffic should be protected with this VPN. Just add another line with the new traffic needs.

Deepak Kumar
VIP Alumni
VIP Alumni

Hi,

If this VPN is already running then you will must find a Crypto-map and one ACL is also applied in the Crypto-map with configuration command "Match address,,,,,,,". (,,, ACL number or name).

 

See here a example:

 

ip access-list extended VPN-TRAFFIC  <ACL>
10 permit ip <Local LAN Subnet> any

11 permit ip <source IP/Subnet>  <Destinatio  IP/Subnet>  <Add this new entry>

!
!
crypto map IPSEC-SITE-TO-SITE-VPN 10 ipsec-isakmp  <Crypto MAP>
match address VPN-TRAFFIC  <ACL applied in Crypto-MAP>
set peer <WAN IP of remote end>
set transform-set MY-SET

 

Note: ACL name/Number or Crypto map may be different in your configuration. 

 

If you are not sure then please share running configuration. You may also denied the Same subnet source and destination subnet in your  NAT acl.

 

Regards,

Deepak Kumar

 

 

 

 

Regards,
Deepak Kumar,
Don't forget to vote and accept the solution if this comment will help you!

Thanks for your detailed informations...