Hi

Normally you would see a /30 (255.255.255.252) mask on a outside interface.
Instead use something that has a few more host IPs available on the
interface, i.e. /28 (255.255.255.240) which will give you 14 host IPs with
12 available after the interfaces are addressed.

I do not know if this is the recommend method from Cisco or not, but I am
using it without any problems at all.

Here is short example:

Int S0
    ip add 12.168.10.1 255.255.255.240 (far side would be 12.168.10.2
255.255.255.240 leaving 3-14 available)
    ip nat outside

int E0
    ip add 192.168.10.1 255.255.255.0
    ip nat inside

ip nat inside source list 19 interface S0 overload (this will overload the
12.168.10.1 address and allow internal users access via 1 IP)
ip nat inside source static tcp 192.168.10.6 80 12.168.10.3 80 extendable
ip nat inside source static tcp 192.168.10.7 80 12.168.10.4 80 extendable
    (and so on)
ip nat inside source static tcp 192.168.10.17 80 12.168.10.14 80 extendable

ip access-list 19
    permit 192.168.10.0 0.0.0.255

HTH
--
John Hardman, CCNP MCSE+I



""Brian Lodwick"" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Adele,
>   If you were talking about NAT how would the data ever get to the correct
> destination in translation if you were able to overload the port with
> multiple IP's and able to overload the IP with multiple ports?
>
> John,
>   How would you be configuring what you are talking about?
>
> >>>Brian
>
>
> >From: "John Hardman" <[EMAIL PROTECTED]>
> >Reply-To: "John Hardman" <[EMAIL PROTECTED]>
> >To: [EMAIL PROTECTED]
> >Subject: Re: Port Assignment with Static IP
> >Date: Sat, 11 Nov 2000 10:02:41 -0700
> >
> >Hi
> >
> >I assume you are talking about NAT/PAT, as your post is a little short on
> >info.
> >
> >Anyway, think about it for a minute, how would it possible for one IP to
> >have two of the same port? So what you need to do is have a subnet on
your
> >outside interface that has enough IPs in it so that you can assign
multiple
> >identical ports on the outside interface.
> >
> >HTH
> >--
> >John Hardman, CCNP MCSE+I
> >
> >
> >
> >"Adele Galus" <[EMAIL PROTECTED]> wrote in message
> >[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > > Need the professionals here:
> > >
> > > Why is it, that you can not assign more than one Static IP Address to
> > > the same
> > > port number???  I have to configure this router on Monday.  Thank you.
> > >
> > > _________________________________
> > > FAQ, list archives, and subscription info:
> >http://www.groupstudy.com/list/cisco.html
> > > Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
> > >
> >
> >
> >_________________________________
> >FAQ, list archives, and subscription info:
> >http://www.groupstudy.com/list/cisco.html
> >Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
>
> _________________________________________________________________________
> Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
>
> Share information about yourself, create your own public profile at
> http://profiles.msn.com.
>
> _________________________________
> FAQ, list archives, and subscription info:
http://www.groupstudy.com/list/cisco.html
> Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]
>


_________________________________
FAQ, list archives, and subscription info: http://www.groupstudy.com/list/cisco.html
Report misconduct and Nondisclosure violations to [EMAIL PROTECTED]

Reply via email to