Link to home
Start Free TrialLog in
Avatar of chadd25
chadd25

asked on

Cisco 1720 Config quetsion

We just had a 128K frame installed.  I need to configure my Cisco 1720 w wic it and need some assistance. AT&T is handling security and will only allow the approprate IP's down the pipe.  They are wireless modems in the field.   AT&T has give me this info (certain details changed for obvious reasons)

Serial port should be = 166.a.b.c
DLCI = 392

LAN address = 166.a.d.e

I need to be able to map to 3 servers on the inside.  Server 1 = 1.1.1.1   server 2 = 2.2.2.2  server 3 = 3.3.3.3

My inital config is this.

interface serial 0/1 point-to-point
ip address 166.a.b.c 255.255.255.252
ip nat outside
no ip mroute cache
frame-relay interface-dlci 392
!


Does this look correct?  How do I do my nating?  Any help appreciated...
Avatar of Les Moore
Les Moore
Flag of United States of America image

If the frame is point-to-point dlci, your serial interface should look like this:

interface serial 0/1
 no ip address
 service-module t1 timeslots 1-2  <--- sets the T1 wic for 128k
 encapsulation frame-relay
!
interface serial 0/1.1 point-to-point
 ip address 166.a.b.c 255.255.255.252
 frame-relay interface-dlci 392
 ip nat outside
!
interface FastEthernet 0
 ip address 1.1.1.x 255.255.255.0
 ip nat inside
!

Assuming that your servers are located somewhere on the inside of the Ethernet interface:

ip nat inside source static <local ip> <global ip>
example:
ip nat inside source static 1.1.1.1 166.a.d.e
ip nat inside source static 2.2.2.2 166.a.d.f
ip nat inside source static 3.3.3.3 166.a.d.g

Avatar of chadd25
chadd25

ASKER

Yes, my servers are located on the inside of my network.  

AT&T sent me an e-mail here it is:

The IP address of your router's Serial port will be 166.a.b.c with a subnet mask of 255.255.255.252 .  The Ethernet LAN Network Address is 166.a.d.24 with a subnet mask of 255.255.255.248.  So this will allow you to use an IP address on the router's Ethernet port of 166.a.d.25 and you can use IP addresses of x.x.x.26 through x.x.x.30 for the servers you will be using for this implementation.
 
You can use NAT to tie the 166.a.d.24 network IP addresses, to servers,etc. on your current network.

Based on this info, what needs to be done?  What you have sent so far looks great!!!  I really appreciate it.  Contractor want over $600 to setup...  How is timing done?
ASKER CERTIFIED SOLUTION
Avatar of Les Moore
Les Moore
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of chadd25

ASKER

Will I need to use addresses 166.a.d.24 and 166.a.d.25 anywhere?

This will not be used as an internet connection for internal network users.  We have a cable modem that people go out on to browse the web.  This router will just terminate the 128K frame and allow mobile users to connect via their wireless modems to our internal Citrix servers.  Knowing that, I am assuming that I do not need the access list you mention..

Thanks..
Address .24 is the network address and can't be used.
You can use .25 for another server static if you want, and you still have .29 and .30 reserved for future use if you need them.
No need for the access-list or pool if you're not using it for access from internal users.