So i got a new job and i'm going back through my old text books to just refresh my memory a bit..
Doing some BGP stuff in dynamips with the following topology
AS65100 AS65101 AS65102
R1---------------------R2-------R3--------------------R4
R2-------R3
(there are two links between R2 and R3 for redundancy)
EIGRP is running between R2 and R3
R1 Config:
interface Serial1/0
ip address 172.16.1.1 255.255.255.0
interface Loopback9
ip address 192.168.15.1 255.255.255.0
router bgp 65100
no synchronization
bgp log-neighbor-changes
network 192.168.15.0
neighbor 172.16.1.2 remote-as 65101
no auto-summary
!
ip route 0.0.0.0 0.0.0.0 172.16.1.2
R2 Config
interface Loopback1
ip address 192.168.2.2 255.255.255.255
interface Serial1/0
ip address 172.16.1.2 255.255.255.0
interface Serial1/2
ip address 10.1.1.1 255.255.255.0
interface Serial1/3
bandwidth 256
ip address 10.2.2.1 255.255.255.0
router eigrp 10
network 10.1.1.0 0.0.0.255
network 10.2.2.0 0.0.0.255
network 172.16.0.0
network 192.168.2.2 0.0.0.0
auto-summary
!
router bgp 65101
no synchronization
bgp log-neighbor-changes
neighbor 172.16.1.1 remote-as 65100
neighbor 192.168.3.3 remote-as 65101
neighbor 192.168.3.3 update-source Loopback1
neighbor 192.168.3.3 next-hop-self
no auto-summary
R3 Config
interface Loopback1
ip address 192.168.3.3 255.255.255.255
interface Serial1/2
ip address 10.1.1.2 255.255.255.0
interface Serial1/3
bandwidth 256
ip address 10.2.2.2 255.255.255.0
interface Serial1/4
ip address 192.168.1.1 255.255.255.0
router eigrp 10
network 10.1.1.0 0.0.0.255
network 10.2.2.0 0.0.0.255
network 192.168.1.0
network 192.168.3.3 0.0.0.0
auto-summary
!
router bgp 65101
no synchronization
bgp log-neighbor-changes
neighbor 192.168.1.2 remote-as 65102
neighbor 192.168.2.2 remote-as 65101
neighbor 192.168.2.2 next-hop-self
no auto-summary
R4 Config
interface Loopback20
ip address 20.20.20.20 255.255.255.255
interface Serial1/4
ip address 192.168.1.2 255.255.255.0
router bgp 65102
no synchronization
bgp log-neighbor-changes
network 20.20.20.20 mask 255.255.255.255
neighbor 192.168.1.1 remote-as 65101
ip route 0.0.0.0 0.0.0.0 192.168.1.1
So i have full connectivity between all the routers, R1 can ping the 20.20.20.20 loopback on R4.
I'm just not sure if i should be advertising the 172.16.0.0 and 192.168.1.0 into EIGRP on the two routers in AS65101.
If they are not advertised into EIGRP then i don't have connectivity between AS65100 and AS65102.
I'm probably forgetting something as it has been a while since i have looked at BGP but yea just wondering if my setup is correct.
cheers.