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!

VSP 4000 stack ?

Status
Not open for further replies.

nortavaya

Technical User
Sep 20, 2006
415
0
0
MA
Hello team,

Does the VSP 4450 switches cores supports stack ? if so how to configure this stack between two VSP 4450 ?

I went through the doc, but no thing found regarding stack configuration, like ERS series (3500, 5000...etc)

I want to stack this two Switches, and then connect with other Switches in the building through Fiber, by configuring MLT trunk...

please any help ?

Thank you
 
VSP 4450 don't support stacking.

You can just daisy chain them together. If you purchase an advanced licence you can cluster them with SMLT.
 
thank you andy88

Can link to them using only vIST ? if so does any licence on VSP required

If you have some configuration example or steps, please don't hesitate to share them

Thank you
 
Use Fabric (SPB and IS-IS)


# BOOT CONFIGURATION
#


spbm
spbm ethertype 0x8100


#Ports 49 and 50 Trunks
interface GigabitEthernet 1/49
encapsulation dot1q
exit

interface GigabitEthernet 1/50
encapsulation dot1q
exit

#
# ISIS SPBM CONFIGURATION
#

router isis
spbm 1
spbm 1 nick-name xx.xx.xx # SPB ID Number (We Use Location.Rack.Switch)
spbm 1 b-vid 4051-4052 primary 4051 #4051-4052 are arbitrary VLANs for passing SPB/IS-IS Data
exit



interface GigabitEthernet 1/49
default-vlan-id 0
no shutdown
isis
isis spbm 1
isis enable
no spanning-tree mstp force-port-state enable
no spanning-tree mstp msti 62 force-port-state enable
exit

interface GigabitEthernet 1/50
default-vlan-id 0
no shutdown
isis
isis spbm 1
isis enable
no spanning-tree mstp force-port-state enable
no spanning-tree mstp msti 62 force-port-state enable
exit

router isis
sys-name "VSP4450"
is-type l1
system-id XXXX.YYYY.ZZZZ #Expanded From the Previous SPB ID
manual-area 10.0001 #Made All of our SBP Area switches 10.0001
exit
router isis enable

 
Thank you guys, I have use vIST link to build a cluster between two VSP:


On the second Switch, record ISIS system ID:

# show isis system-id

On the first Switch, enter SMLT peer System-ID

# router isis
# spbm 10 smlt-peer-system-id b0ad.aa42.9c84
# exit

# mlt 10 enable
# mlt 10 member 1/15,1/16
# mlt 10 encapsulation dot1q

# interface mlt 10
# isis
# isis spbm 10
# isis enable
# exit

# interface gigabitEthernet 1/15-1/16
# no spanning-tree mstp force-port-state enable
# no shutdown

# vlan create 4042 name vIST type port-mstprstp 1
# vlan i-sid 4042 100031

# interface Vlan 4042
# ip address 10.10.31.1 255.255.255.252
# exit

# virtual-ist peer-ip 10.10.31.2 vlan 4042
# router isis enable

Validate vIST Configuration is working:

# show virtual-ist

here I can show my IST is UP and sync

thank you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top