Hi,
To my understanding it will exhaust all the ports for the first PAT IP address before moving to the next PAT IP address configured in the "object-group"
You could try something like this (naturally the IPs, names of objects and interfaces will be different)
object-group network SOURCE-SUBNETS
network-object <net1> <mask>
network-object <net2> <mask>
object-group network PAT-POOL
network-object host 1.1.1.1
network-object host 1.1.1.2
network-object host 1.1.1.3
nat (inside,outside) after-auto source dynamic SOURCE-SUBNETS pat-pool PAT-POOL round-robin
With this it should to my understanding use different PAT address in turns when different internal hosts connect using this NAT configuration.
Hope this helps :)
Let me know how it goes.
- Jouni