Hi,
I'm working on the IPv6 BGP part of the lab and I did the solution a bit different then the book and I'm looking for feedback.
My solution
router bgp 200
address-family ipv6 unicast
neighbor 2001:CC1E:1:0::3 remote-as 300
Book solution:
router bgp 200
neighbor 2001:CC1E:1::3 remote-as 300
address-family ipv6
neighbor 2001:CC1E:1::3 activate
In my solution I get a "no neighbor 2001:CC1E:1::3 activate" under the main section of bgp (I believe this to be the IPv4 global part of bgp). The requirements at this point all have to do with IPv6 and not with IPv4 so by skiping the active part under the main bgp section am I missing anything or doing something wrong?
AndyL