Link to home
Start Free TrialLog in
Avatar of chainfear
chainfear

asked on

BGP peering

I need to peer with several routers of my peering members using BGP. All peer members are connected to a Cisco 2960G. All peer members are using mixture of hardware. At my side, I am using 7200 Cisco router. We are all getting one cat6 connection to this Cisco 2960G. All of the peer members are given one IP. Altogether, we are getting one class C to be used.

My questions:
1. How do I configure the Cisco 2960G for both IPV4 and IPV6?
2. Is it possible to do this without having 2 cables from each peer member?

Thx
Avatar of John Meggers
John Meggers
Flag of United States of America image

In answer to your first question, I'm almost positive the 2960G does not support IPv6.  Cisco 2900 series switches are only layer 2 and don't support L3 functions such as routing, etc.  If you need a mixture of L2 and L3 functionality on the same switch, you need to move into the 3xxx switches such as the 3750.

Sorry, I don't understand your topology well enough to answer question #2.  You say "all of the peer members are given one IP" -- does that mean NAT is being used, or something else?   Maybe you can provide a drawing of some kind to make it more clear.  
The 2960G does supprt IPv6 and IPv4, but only from a management perspective. It does not contain a RIB/FIB, etc and will not support any routing protocols.

http://www.cisco.com/en/US/docs/switches/lan/catalyst2960/software/release/12.2_44_se/configuration/guide/swipv6.html

You will need at least: 12.2(40)SE, with the latest being 12.2(55)SE

1. How do I configure the Cisco 2960G for both IPV4 and IPV6?
listed below

2. Is it possible to do this without having 2 cables from each peer member?
yes, this is called Dual stack allowing an IPv4 and IPv6 on the same vlan/physical interface. See below.


configure terminal
sdm prefer dual-ipv4-and-ipv6
end
reload

Once reload completes, verify config:

 show sdm prefer

Now you can configure an IP address on your management vlan interface:

interface vlan 1
 ip address 172.16.100.1 255.255.255.0
 no keepalive
 ipv6 address 2001:0f8:cafe::1/64
 no shut
end


Billy
Avatar of chainfear
chainfear

ASKER

Hi,

Thanks for your replies. Please refer attached image.

I don't plan to do any routing on the 2960G. It is just a switch to connect all of other routers. For IPV4, I don't think I need to configure the 2960G. I can just ping from Router A to Router B and do BGP (is this correct?). However, how do I do this for both IPV4 and IPV6?

these lines need to be configured on the 2960G?

configure terminal
sdm prefer dual-ipv4-and-ipv6
end
reload


  User generated image
Please list he ios image version you have: show version
On boh routers
I am not supposed to access the router. I am only supposed to configure the 2960G. I just need to allow all routers can communicate BGP peering on IPV4 and IPV6.

Thanks for the help!
ASKER CERTIFIED SOLUTION
Avatar of rfc1180
rfc1180
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This is done if you have 2 cables, isn't it? Is it possible to do this if each router only got one cable to the 2960G?

Thanks
Not sure what you mean by 2 cables, you need 2 cables for the physical2 connection to each of the routers (Router A and C); you however, do not need 2 physical cables for each of the protocols, IPv4 and IPv6. The idea is to dual stack on the same physical interface for all your layer 3 devices. With this being said, all you need is 1 cable from Router A to the Switch (For IPv4 and IPv6) , 1 cable from Router C to the Switch (For IPv4 and IPv6) and 1 cable from Router C to the Switch (For IPv4 and IPv6).


Billy
OK thanks a lot Billy....
Sorry, another question. Is it possible to separate the MRTG graph for both IPv4 and IPv6?
>Sorry, another question. Is it possible to separate the MRTG graph for both IPv4 and IPv6?
sorry, not sure what you mean by this. You either are going to poll via IPv4 or IPv6, you get the same information.
What I mean is, am I able to get bandwidth utilization for both IPv4 and IPv6 traffics for all ports that are connected to all the routers separately? One IPv4 graph, one IPv6 graph. Possible?