【Problem Description】
He need to do nottranslate traffic from Client (100.90.1.123) to server (172.30.2.1) but at thesame time he need to translate traffic from user to internet by external IP.

【Solution Description】
For customer’srequirement, we need configure an extra behavior before “classifierafter-auth-tc behavior nat-bind”. So that, it will match the behavior firstwhen access 172.30.2.1 since the traffic policy match order, then will matchthe nat behavior when access internet.
Also, the address172.30.2.1 seems be natted before ME60 which is displayed on the ME60 is185.43.190.x, so I am afraid we should configure the destination address185.43.190.x for the extra behavior.
configure an extra behavior before “classifier after-auth-tc behaviornat-bind”
acl number 6003
rule 5 permit ip sourceuser-group after-auth-ug destination ip-address 185.43.190.41 0
#
traffic classifierafter-auth-permit operator or
if-match acl 6003
#
traffic behaviorperm2
#
traffic policy web
undo classifierafter-auth-tc behavior nat-bind //we need undo it first since the traffic policy match order
classifier after-auth-permit behavior perm2 //add new policy
classifierafter-auth-tc behavior nat-bind

