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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

GRE tunnels on Cisco 2691's

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
I have an upcoming project implementing GRE tunnels between 2 Cisco 2691 routers. One is in San Antonio and one is in South Carolina. The routers are recently released and I was curious of any prexisting setups out there. All info is greatly apprciated. Thanks
 
The information seems to be incomplete, we dont know what kind of Interface you are using for the connectivity between two sites?

Supposing a Serial Interface connectivity:

South Carolina Router
!Ommited Configuration

interface Loopback0
description LOOPBACK ADDRESS
ip address xxx.xxx.xxx.xxx yyy.yyy.yyy.yyy
!
interface Tunnel01
Description Interface towards San Antanio
bandwidth 10000
ip unnumbered Serial0
tunnel source Serial0
tunnel destination zzz.zzz.zzz.zzz
!
interface Ethernet0/0
ip address xx1.xx1.xx1.xx1 yy1.yy1.yy1.yy1
no ip redirects
no ip unreachables
no ip proxy-arp
no ip mroute-cache
!
interface Serial0
ip address xx2.xx2.xx2.xx2 yy2.yy2.yy2.yy2
!
ip route 0.0.0.0 0.0.0.0 Serial0

****************************************************************
San Antanio Router
!Ommited Configuration

interface Loopback0
description LOOPBACK ADDRESS
ip address xx3.xx3.xx3.xx3 yy3.yy3.yy3.yy3
!
interface Tunnel01
Description Interface towards South Carolina
bandwidth 10000
ip unnumbered Serial0
tunnel source Serial0
tunnel destination xx2.xx2.xx2.xx2
!
interface Ethernet0/0
ip address aa1.aa1.aa1.aa1 bb1.bb1.bb1.bb1
no ip redirects
no ip unreachables
no ip proxy-arp
no ip mroute-cache
!
interface Serial0
ip address zzz.zzz.zzz.zzz zz2.zz2.zz2.zz2
!
ip route 0.0.0.0 0.0.0.0 Serial0


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top