If you have two wan links configured can how can you achieve the following.
1. Outside Interface - PAT all traffic except for inside network 172.20.0.0/16
2. Ousdside2 Interface - PAT all and deny all other traffice from the inside network 172.20.0.0/16
will something like this work?
access-list WEB permit tcp 172.20.0.0 255.255.0.0 0.0.0.0 0.0.0.0 eq 80
access-list Other permit tcp 172.20.0.0 255.255.0.0 0.0.0.0 0.0.0.0 eq any (??????)
nat (inside) 1 access-list WEB
nat (inside) 2 access-list Other
global (outside) 1 199.199.199.3 255.255.255.192
global (outside) 2 199.199.199.4 255.255.255.192
But how can you say to PAT all other traffice other than go through global (outside) 2???
1. Outside Interface - PAT all traffic except for inside network 172.20.0.0/16
2. Ousdside2 Interface - PAT all and deny all other traffice from the inside network 172.20.0.0/16
will something like this work?
access-list WEB permit tcp 172.20.0.0 255.255.0.0 0.0.0.0 0.0.0.0 eq 80
access-list Other permit tcp 172.20.0.0 255.255.0.0 0.0.0.0 0.0.0.0 eq any (??????)
nat (inside) 1 access-list WEB
nat (inside) 2 access-list Other
global (outside) 1 199.199.199.3 255.255.255.192
global (outside) 2 199.199.199.4 255.255.255.192
But how can you say to PAT all other traffice other than go through global (outside) 2???