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

Simple GRE Config

Status
Not open for further replies.
Joined
Mar 15, 2005
Messages
141
Location
US
Could anyone post a simple GRE config, the way its supposed to look on both routers?
 
Just an example using frame-relay...

Router A:

interface s0/0
description Frame-relay connection to B
bandwidth 1544
encapsulation frame-relay ietf
no ip address
no frame-relay inverse-arp
no shut
!
interface s0/0.123 point-to-point
description PVC #1 to B - Frame-relay 64k connection DL123456
bandwidth 64
ip address 10.0.128.1 255.255.255.252
no ip redirects
no ip unreachables
no ip proxy-arp
frame-relay interface-dlci 123
!
interface Tunnel123
bandwidth 64
ip address 10.0.128.5 255.255.255.252
ip tcp adjust-mss 1436
tunnel source serial0/0.123
tunnel destination 10.0.128.2
tunnel key 1234
!

Router B:

interface s0/0
description Frame-relay connection to A
bandwidth 1544
encapsulation frame-relay ietf
no ip address
no frame-relay inverse-arp
no shut
!
interface s0/0.123 point-to-point
description PVC #1 to A - Frame-relay 64k connection DL123456
bandwidth 64
ip address 10.0.128.2 255.255.255.252
no ip redirects
no ip unreachables
no ip proxy-arp
frame-relay interface-dlci 123
!
interface Tunnel123
bandwidth 64
ip address 10.0.128.6 255.255.255.252
ip tcp adjust-mss 1436
tunnel source serial0/0.123
tunnel destination 10.0.128.1
tunnel key 1234
!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top