|
|
FAQ
Search
Memberlist
Usergroups
Register
Profile
Private messages
Log in
|
|
| Author |
Message |
Ciscohater Guest
|
Posted: Thu Oct 25, 2007 9:11 pm Post subject: Configure 1800 Router with ethernet connection |
|
|
We no longer will be using our T1 connection we now have a dedicated
lan connecting to the web. I am new to Cisco routers. How do i
configure this Router with my settings.
Internet Provider gave me the following info and I am not sure how i
can configure it. So i am a bit confused.
Example......
External IP Address 10.1.111.34
Subnet 255.255.255.252
Gateway 10.1.111.33
DNS 127.0.0.1
Internal IP Address 10.1.55.161
Subnet 255.255.255.224
Thanks |
|
| Back to top |
|
 |
|
|
Trendkill Guest
|
Posted: Thu Oct 25, 2007 9:43 pm Post subject: Re: Configure 1800 Router with ethernet connection |
|
|
On Oct 25, 12:11 pm, Ciscohater <smd...@gmail.com> wrote:
| Quote: | We no longer will be using our T1 connection we now have a dedicated
lan connecting to the web. I am new to Cisco routers. How do i
configure this Router with my settings.
Internet Provider gave me the following info and I am not sure how i
can configure it. So i am a bit confused.
Example......
External IP Address 10.1.111.34
Subnet 255.255.255.252
Gateway 10.1.111.33
DNS 127.0.0.1
Internal IP Address 10.1.55.161
Subnet 255.255.255.224
Thanks
|
configuration terminal
interface fastethernet<mod/port> (example, 1/0, you can get this from
show ip interface brief)
ip address 10.1.111.34 255.255.255.252
description External
no shut
!
interface fastethernet<mod/port>
ip address 10.1.55.161 255.255.255.224
description internal
no shut
!
Your clients will need to be configured with the gateway, and your
default route (presuming this network does not have any other segments
that need to exchange routes, is:
ip aroute 0.0.0.0 0.0.0.0 10.1.111.33 |
|
| Back to top |
|
 |
Trendkill Guest
|
Posted: Thu Oct 25, 2007 9:58 pm Post subject: Re: Configure 1800 Router with ethernet connection |
|
|
On Oct 25, 12:43 pm, Trendkill <jpma...@gmail.com> wrote:
| Quote: | On Oct 25, 12:11 pm, Ciscohater <smd...@gmail.com> wrote:
We no longer will be using our T1 connection we now have a dedicated
lan connecting to the web. I am new to Cisco routers. How do i
configure this Router with my settings.
Internet Provider gave me the following info and I am not sure how i
can configure it. So i am a bit confused.
Example......
External IP Address 10.1.111.34
Subnet 255.255.255.252
Gateway 10.1.111.33
DNS 127.0.0.1
Internal IP Address 10.1.55.161
Subnet 255.255.255.224
Thanks
configuration terminal
interface fastethernet<mod/port> (example, 1/0, you can get this from
show ip interface brief)
ip address 10.1.111.34 255.255.255.252
description External
no shut
!
interface fastethernet<mod/port
ip address 10.1.55.161 255.255.255.224
description internal
no shut
!
Your clients will need to be configured with the gateway, and your
default route (presuming this network does not have any other segments
that need to exchange routes, is:
ip aroute 0.0.0.0 0.0.0.0 10.1.111.33
|
Oops - ip route (not ip aroute) |
|
| Back to top |
|
 |
|
|