I have an ipsec tunnel IP is changing from mythical 200.200.200.182 to 200.200.200.254.
Is it possible to change the .182 ip in below config via the CLI to .254 and have the site-to-site vpn continue to work?
crypto map asafw 6 match address outside_6_cryptomap_1
crypto map asafw 6 set pfs
crypto map asafw 6 set peer 200.200.200.182
crypto map asafw 6 set transform-set ESP-AES-128-MD5
crypto map asafw 6 set security-association lifetime seconds 28800
crypto map asafw 6 set security-association lifetime kilobytes 4608000
tunnel-group 200.200.200.182 type ipsec-l2l
tunnel-group 200.200.200.182 ipsec-attributes
pre-shared-key dummyPresharekey
Will doing a :
no crypto map asafw 6 set peer 200.200.200.182
crypto map asafw 6 set peer 200.200.200.254
and
no tunnel-group 200.200.200.182 type ipsec-l2l
tunnel-group 200.200.200.254 type ipsec-l2l
tunnel-group 200.200.200.254 ipsec-attributes
pre-shared-key dummyPresharekey
achive what I am looking to accomplish?