I have a static nat that looks like this:
static (inside,outside) 10.218.224.144 10.218.224.144 netmask 255.255.255.248
I need static nats for this:
static (inside,outside) 10.219.86.73 10.218.224.149 netmask 255.255.255.255
static (inside,outside) 10.219.86.74 10.218.224.150 netmask 255.255.255.255
but since the first static nat above covers 10.218.224.145-151 (151 is broadcast) I cannot use the needed addresses
I believe I should remove the first one and
set a series of them, leaving out the .149 and .150 which are not being used by a client anyway:
static (inside,outside) 10.218.224.145 10.218.224.145 netmask 255.255.255.255
static (inside,outside) 10.218.224.146 10.218.224.146 netmask 255.255.255.255
and so on...
what say you?