Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing from a Frame-Relay to a Point to Point

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
I have a 1720 Cisco Router at my main office and a 1604 Cisco router at my remote office. We have a seprate Cisco 1720 router for internet access. Our company is changing from a Frame-relay to a Point to Point connection for our Wide area connection between both offices. I bought CSU/DSU Wic cards for both routers but I am not sure how to change my router configuration. Could someone post a sample of the router configuration I would need? Here are a few basics of my network:

Ethernet IP Address(Main Router): 172.20.1.30
The remote location will get internet thru our main office

Any help would be appreciated
 
Very simple here are two working configs
Router A


interface Serial0
description POINT-POINT
bandwidth 768
ip address 192.168.1.2 255.255.255.252
no ip directed-broadcast
no fair-queue
!
interface FastEthernet0
ip address 10.2.1.100 255.255.0.0
ip helper-address 10.4.1.31
no ip directed-broadcast
full-duplex
!
router eigrp 1
network 10.0.0.0
network 192.168.1.0
network 192.168.2.0
no auto-summary

router B

interface Serial0
description POINT-POINT
bandwidth 768
ip address 192.168.1.1 255.255.255.252
no ip directed-broadcast
!

interface FastEthernet0
ip address 10.1.1.100 255.255.0.0
ip helper-address 10.4.1.39
ip helper-address 10.4.1.100
no ip directed-broadcast
full-duplex
!
router eigrp 1
network 10.0.0.0
network 192.168.1.0
network 192.168.2.0
no auto-summary

bandwidth 768 was used to seperate other serial PPP!




“Reserve your right to think, for even to think wrongly is better than not to think at all”

Fisher CCNA,(CCNP-Routing)
UOP Student BSIT
[americanflag]
 
You might want to set some Encapsulation on your Serial interfaces, i.e. encapsulation hdlc, or ppp.
 
Please make sure both ends use same encapsulation (ppp in this case).
Good luck.

 
FANCYpete,

serial interfaces on cisco routers default to hdlc encap, no need to configure unless you require ppp.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top