From: Tom on
Can someone help explain how I can forward ports, such as 80, from a
public DHCP address, to an Internal LAN address?

Because my public IP changes often I'm not sure how I can NAT that to
an internal LAN ip such as 192.168.1.103 port 80.

Currently my router is setup like so to NAT outside:

ip nat inside source list 1 interface FastEthernet1 overload

But not sure how I can take the DHCP assigned IP/port to an internal
IP.

Thanks?
From: Morph on
In the message
<bf529ba4-d512-45a4-801b-21a1c873c06a(a)z28g2000yqh.googlegroups.com> Tom
wrote:

| Can someone help explain how I can forward ports, such as 80, from a
| public DHCP address, to an Internal LAN address?
|
| Because my public IP changes often I'm not sure how I can NAT that to
| an internal LAN ip such as 192.168.1.103 port 80.
|
| Currently my router is setup like so to NAT outside:
|
| ip nat inside source list 1 interface FastEthernet1 overload
|
| But not sure how I can take the DHCP assigned IP/port to an internal
| IP.

ip nat inside source static tcp 192.168.1.103 80 interface FastEthernet1
80 extendable
From: Tom on
On Aug 8, 3:08 am, Morph <morph.n...(a)g.m.a.i.l> wrote:
> In the message
> <bf529ba4-d512-45a4-801b-21a1c873c...(a)z28g2000yqh.googlegroups.com> Tom
> wrote:
>
> | Can someone help explain how I can forward ports, such as 80, from a
> | public DHCP address, to an Internal LAN address?
> |
> | Because my public IP changes often I'm not sure how I can NAT that to
> | an internal LAN ip such as 192.168.1.103 port 80.
> |
> | Currently my router is setup like so to NAT outside:
> |
> | ip nat inside source list 1 interface FastEthernet1 overload
> |
> | But not sure how I can take the DHCP assigned IP/port to an internal
> | IP.
>
> ip nat inside source static tcp 192.168.1.103 80 interface FastEthernet1
> 80 extendable

Thanks for quick reply, but...seems extendable is seen as invalid
input. Maybe IOS?

Thor(config)#ip nat inside source static tcp 192.168.1.103 80 int f1
80 ?
<cr>

Thor(config)#$de source static tcp 192.168.1.103 80 int f1 80
ext ?
% Unrecognized command
ip nat inside source static tcp 192.168.1.103 80 int f1 80 extendable

^
12.3(8r)YH12 release fc1

From: Tom on
On Aug 8, 8:21 am, Tom <tdenham...(a)gmail.com> wrote:
> On Aug 8, 3:08 am, Morph <morph.n...(a)g.m.a.i.l> wrote:
>
>
>
> > In the message
> > <bf529ba4-d512-45a4-801b-21a1c873c...(a)z28g2000yqh.googlegroups.com> Tom
> > wrote:
>
> > | Can someone help explain how I can forward ports, such as 80, from a
> > | public DHCP address, to an Internal LAN address?
> > |
> > | Because my public IP changes often I'm not sure how I can NAT that to
> > | an internal LAN ip such as 192.168.1.103 port 80.
> > |
> > | Currently my router is setup like so to NAT outside:
> > |
> > | ip nat inside source list 1 interface FastEthernet1 overload
> > |
> > | But not sure how I can take the DHCP assigned IP/port to an internal
> > | IP.
>
> > ip nat inside source static tcp 192.168.1.103 80 interface FastEthernet1
> > 80 extendable
>
> Thanks for quick reply, but...seems extendable is seen as invalid
> input.  Maybe IOS?
>
> Thor(config)#ip nat inside source static tcp 192.168.1.103 80 int f1
> 80 ?
>   <cr>
>
> Thor(config)#$de source static tcp 192.168.1.103 80 int f1 80
> ext ?
> % Unrecognized command
> ip nat inside source static tcp 192.168.1.103 80 int f1 80 extendable
>
> ^
> 12.3(8r)YH12 release fc1

Not sure what's up, but under initial config I was able to enter the
line with extendable, however after finalizing my config that last arg
was no longer available, so appear that something in my config is
changing so that I can not use this line?

Would it be due to using DHCP or maybe my config to NAT outside for my
LAN?

It's odd that it was available at first then as I was ready to enter
the line after initial config that it was no longer available.
From: Tom on
On Aug 8, 11:36 am, Tom <tdenham...(a)gmail.com> wrote:
> On Aug 8, 8:21 am, Tom <tdenham...(a)gmail.com> wrote:
>
>
>
> > On Aug 8, 3:08 am, Morph <morph.n...(a)g.m.a.i.l> wrote:
>
> > > In the message
> > > <bf529ba4-d512-45a4-801b-21a1c873c...(a)z28g2000yqh.googlegroups.com> Tom
> > > wrote:
>
> > > | Can someone help explain how I can forward ports, such as 80, from a
> > > | public DHCP address, to an Internal LAN address?
> > > |
> > > | Because my public IP changes often I'm not sure how I can NAT that to
> > > | an internal LAN ip such as 192.168.1.103 port 80.
> > > |
> > > | Currently my router is setup like so to NAT outside:
> > > |
> > > | ip nat inside source list 1 interface FastEthernet1 overload
> > > |
> > > | But not sure how I can take the DHCP assigned IP/port to an internal
> > > | IP.
>
> > > ip nat inside source static tcp 192.168.1.103 80 interface FastEthernet1
> > > 80 extendable
>
> > Thanks for quick reply, but...seems extendable is seen as invalid
> > input.  Maybe IOS?
>
> > Thor(config)#ip nat inside source static tcp 192.168.1.103 80 int f1
> > 80 ?
> >   <cr>
>
> > Thor(config)#$de source static tcp 192.168.1.103 80 int f1 80
> > ext ?
> > % Unrecognized command
> > ip nat inside source static tcp 192.168.1.103 80 int f1 80 extendable
>
> > ^
> > 12.3(8r)YH12 release fc1
>
> Not sure what's up, but under initial config I was able to enter the
> line with extendable, however after finalizing my config that last arg
> was no longer available, so appear that something in my config is
> changing so that I can not use this line?
>
> Would it be due to using DHCP or maybe my config to NAT outside for my
> LAN?
>
> It's odd that it was available at first then as I was ready to enter
> the line after initial config that it was no longer available.

I'm beginning to think this syntax is not correct:

ip nat inside source static tcp 192.168.1.103 80 interface
FastEthernet1
80 extendable

Any other suggestions ?

Thanks.