|
Posted by guercio@_toglimi_gmail.com on July 9, 2008, 8:06 am
If you were Registered and logged in, you could reply and use other advanced thread options
> Does anyone have a sample BGP config for a 3700 series router they would =
be
> willing to share? =A0Still trying google but not finding much.
Do you mean external bgp for an autonomous system?
if you want a non transit configuration it's like this:
ip as-path access-list 10 permit ^$
ip as-path access-list 20 permit ^REMOTEASNUMBER_
route-map out permit 10
match as-path 10
route-map in permit 20
match as-path 20
router bgp YOURASNUMBER
bgp log-neighbor-changes
neighbor REMOTEPEERIP remote-as REMOTEASNUMBER
!
address-family ipv4
neighbor REMOTEPEERIP route-map in in
neighbor REMOTEPEERIP route-map out out
no auto-summary
no synchronization
network YOURNETWORK
exit-address-family
'ao
Guercio
|