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!

Help on config

Status
Not open for further replies.

mikeleahy

Technical User
Joined
Jan 12, 2005
Messages
266
Location
IE
hi

we are implementing a leased line and i got a config from our ISP for our 2811. The config is below, i am aware that i have to config the ethernet interface etc, is there anything else to do, under the rip version 2 folder shoudl i advertise our local subnet as well as the 159.xxx.xxx.xxx
and do i need a static route to send all data out through the serial interface. thanks in advance

Configlet #1, Job ID 9483 (Created: 2006-02-21 15:41:47)

!
interface Serial0
description By VPNSC: Job Id# = 9483 (BS3883454) ibs cookestown ind est

encapsulation ppp
ip address 159.134.142.166 255.255.255.252
!
router rip
version 2
redistribute connected metric 1
redistribute static metric 1
network 159.134.0.0
no auto-summary

!
! Enable LFI Link Fragmentation and Interleaving on Serial link to fragment large packets.
! See Cisco website for more details.
!
interface Multilink1
ip address 159.134.142.166 255.255.255.252
ppp multilink
ppp multilink fragment-delay 10
ppp multilink interleave
multilink-group 1
ip rtp header-compression iphc-format
!
interface Serial0
encapsulation ppp
ppp multilink
multilink-group 1
!

router rip
address-family ipv4 vrf V2999:IBS2
exit-address-family

router bgp 5466
address-family ipv4 vrf V2999:IBS2
default-information originate
exit-address-family
 
shouldnt have to....

As you are redistributing any connected subnets in RIPv2 and any static routes.

You will need to add a default route if this is your gateway router...

something along the lines of..

ip route 0.0.0.0 0.0.0.0 serial0

or

ip route 0.0.0.0 0.0.0.0 (next hop)
 
yeah, thanks for that. just as i thought
 
Martin is correct, a default route ip route 0.0.0.0 0.0.0.0 ser0 should be added.

----------------------
Cisco Forum | News
 
can someone give me some indication of what the following does:

router rip
address-family ipv4 vrf V2999:IBS2
exit-address-family

router bgp 5466
address-family ipv4 vrf V2999:IBS2
default-information originate
exit-address-family

if rip v 2 is being used, why are these lines there

 
...i guess you already got the answer to this..
...was it something on the lines of your service provider is plugging you into there mpls cloud..
....A VRF is a per-site forwarding table. Every site to which the PE router is attached is associated with one of these tables. A particular packet's IP destination address is looked up in a particular VRF only if that packet has arrived directly from a site that is associated with that table...above copied from google definition lookup..

CCNP,CCSP,MCSE,Sec+,Net+,A+...
 
its sorted now. basic static route is all i needed. i am studying for the routing exam in the ccnp. did you find it easy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top