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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cat6500 MSM

Status
Not open for further replies.

werm

MIS
Dec 15, 1999
2
0
0
US
<br>
Does anyone have a quick-start to enable and config a MSM module for the 6500?<br>
<br>
Thanks in advance.<br>

 
I thought I'd ask if you got this working before I went to the trouble of entering what will probably turn out to be a long answer.<br>

 
This is a new MSM. For an in-use switch. <br>
<br>
<br>
If you have time to reply or just point me to some good pointers elsewhere it would help.<br>
<br>
Thanks...
 
Sorry, I know this is like a month late, but just in case you haven't<br>
gotten it working yet here is some config stuff that should work.<br>
<br>
All of the usual disclaimers apply. You may or may not problems with this<br>
configuration. I welcome anyone to correct me where I may have made<br>
errors. I take no responsibility for any damages of any kind. If this<br>
doesn't work perhaps I forgot something, so post they problems you are <br>
having and I'll try to look at it (hopefully a whole lot faster this<br>
time.)<br>
<br>
In this example I'll explain how to route between two VLANS VLAN 1 and<br>
VLAN 2. We will use Cisco's ISL trunking. In our example the MSM is in slot 2 and a<br>
24 port 100FX module is in slot 4 with ports 1-12 in vlan 1 and 13-24 in <br>
vlan 2.<br>
<br>
#########################<br>
On the switch you should need something like:<br>
<br>
#vtp<br>
set vtp domain ChooseSomething<br>
set vtp mode server<br>
<br>
set vlan 1 name subnet1<br>
set vlan 2 name subnet2<br>
set vlan 1 4/1-12<br>
set vlan 2 4/13-24<br>
set module enable 2<br>
set vlan 1 2/1-4<br>
set port enable 2/1-4<br>
set trunk 2/1 nonegotiate isl 1-1005<br>
set trunk 2/2 nonegotiate isl 1-1005<br>
set trunk 2/3 nonegotiate isl 1-1005<br>
set trunk 2/4 nonegotiate isl 1-1005<br>
set port channel 2/1-4 mode on<br>
<br>
#########################<br>
On the MSM you should have something like:<br>
<br>
!<br>
interface Port-channel1<br>
no ip address<br>
no ip directed-broadcast<br>
hold-queue 300 in<br>
!<br>
interface Port-channel1.1<br>
encapsulation isl 1<br>
ip address 192.168.1.254 255.255.255.0<br>
no ip redirects<br>
no ip directed-broadcast<br>
!<br>
interface Port-channel1.2<br>
encapsulation isl 2<br>
ip address 192.168.2.254 255.255.255.0<br>
no ip redirects<br>
no ip directed-broadcast<br>
!<br>
interface GigabitEthernet0/0/0<br>
no ip address<br>
no ip directed-broadcast<br>
no negotiation auto<br>
channel-group 1<br>
!<br>
interface GigabitEthernet1/0/0<br>
no ip address<br>
no ip directed-broadcast<br>
no negotiation auto<br>
channel-group 1<br>
!<br>
interface GigabitEthernet3/0/0<br>
no ip address<br>
no ip directed-broadcast<br>
no negotiation auto<br>
channel-group 1<br>
!<br>
interface GigabitEthernet4/0/0<br>
no ip address<br>
no ip directed-broadcast<br>
no negotiation auto<br>
channel-group 1<br>
!<br>
router eigrp 1<br>
network 192.168.1.0<br>
network 192.168.2.0<br>
!<br>
!<br>
ip classless<br>
!<br>
no scheduler allocate<br>

 
Does anyone experience any problem related to EIGRP link <br>flapping?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top