03-26-2011 10:14 AM - edited 03-11-2019 01:13 PM
What does the following mean, and how can I fix it:
WARNING: The IP address, xxx.172.214.193, of the 'outside' interface overlaps with
the static defined by:
'static (inside, outside) xxx.172.214.193 10.2.28.3 netmask 255.255.255.255'.
TRY THIS: Re-check the interface IP addresses and 'static' statements
Thanks,
Thomas
Solved! Go to Solution.
03-26-2011 10:20 AM
jack6109518 wrote:
What does the following mean, and how can I fix it:
WARNING: The IP address, xxx.172.214.193, of the 'outside' interface overlaps with
the static defined by:
'static (inside, outside) xxx.172.214.193 10.2.28.3 netmask 255.255.255.255'.
TRY THIS: Re-check the interface IP addresses and 'static' statementsThanks,
Thomas
Thomas
It simply means you are trying to use the same IP for a static translation as you have assigned to the outside interface.
If you want to NAT all ports to 10.2.28.3 then you need another public IP to use. However if you only wanted to NAT certain ports then you can do ie.
lets say 10.2.28.3 is a web server and a mail server -
static (inside,outside) tcp xxx.172.214.193 25 10.2.28.3 25 <-- for mail
static (inside,outside) tcp xxx.172.214.193 80 10.2.28.3 80 <-- for http
Jon
03-26-2011 10:30 AM
your example is fine but instead of the IP of the interface type the word "interface"
static (inside,outside) tcp interface 25 10.2.28.3 25
03-26-2011 10:20 AM
jack6109518 wrote:
What does the following mean, and how can I fix it:
WARNING: The IP address, xxx.172.214.193, of the 'outside' interface overlaps with
the static defined by:
'static (inside, outside) xxx.172.214.193 10.2.28.3 netmask 255.255.255.255'.
TRY THIS: Re-check the interface IP addresses and 'static' statementsThanks,
Thomas
Thomas
It simply means you are trying to use the same IP for a static translation as you have assigned to the outside interface.
If you want to NAT all ports to 10.2.28.3 then you need another public IP to use. However if you only wanted to NAT certain ports then you can do ie.
lets say 10.2.28.3 is a web server and a mail server -
static (inside,outside) tcp xxx.172.214.193 25 10.2.28.3 25 <-- for mail
static (inside,outside) tcp xxx.172.214.193 80 10.2.28.3 80 <-- for http
Jon
03-26-2011 10:30 AM
your example is fine but instead of the IP of the interface type the word "interface"
static (inside,outside) tcp interface 25 10.2.28.3 25
03-26-2011 10:54 AM
Paul,
Thank you for responding. Just wanted to know how using the word "interface" as opposed to the ip address of the interface would benefit me in this scenario. Would this fix my issue?
Thanks again,
Thomas
03-26-2011 02:05 PM
It should be with the keyword interface wirh the ip might not work
Sent from Cisco Technical Support iPhone App
03-26-2011 10:58 AM
Jon,
Thank you for responding. Here's another similar one that I don't understand. It seems like the static statmement is translating an inside address to the same inside address. How can I fix this?
WARNING: The IP address, xxx.172.214.193, of the 'outside' interface overlaps with
the static defined by:
'static (inside, outside) 10.2.28.0 10.2.28.0 netmask 255.255.255.255'
Thanks,
Thomas
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide