cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
628
Views
0
Helpful
5
Replies

interface overlaps with the static defined by:

Thomas Reiling
Level 1
Level 1

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

2 Accepted Solutions

Accepted Solutions

Jon Marshall
Hall of Fame
Hall of Fame

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' statements

Thanks,

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

View solution in original post

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

View solution in original post

5 Replies 5

Jon Marshall
Hall of Fame
Hall of Fame

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' statements

Thanks,

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

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

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

It should be with the keyword interface wirh the ip might not work

Sent from Cisco Technical Support iPhone App

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

Review Cisco Networking for a $25 gift card