Changes between Version 12 and Version 13 of Installation/Nodes


Ignore:
Timestamp:
Jul 23, 2011 8:22:09 PM (13 years ago)
Author:
jhickey
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation/Nodes

    v12 v13  
    6666=== Switch Interconnects ===
    6767
     68If your installation has more than one switch, we need to tell the database about it so that vlan trunking can be enabled and so that it doesn't try to oversubscribe the link.  We created interface types earlier in this document.  Let's say we have hp1 and hp2 which are connected by a single 1GbE link.  hp2 module A, port 5 is connected to hp1 module B, port 23.  We need to add two lines to the interfaces table (note that current_speed is in Mbits now):
    6869
     70{{{
     71insert into interfaces set
     72          node_id='hp1',card=2,port=23,mac='000000000000',iface='B/23',role='other',
     73          current_speed='1000',interface_type='trunk_1GbE',uuid=UUID();
     74insert into interfaces set
     75          node_id='hp2',card=1,port=5,mac='000000000000',iface='A/5',role='other',
     76          current_speed='1000',interface_type='trunk_1GbE',uuid=UUID();
     77}}}
    6978
     79We also need to add an entry to the wires table for these two switches:
     80
     81{{{
     82insert into wires set
     83          node_id1='hp1',card1=2,port1=23,
     84          node_id2='hp2',card2=1,port2=5,
     85          type='Trunk';
     86}}}
    7087
    7188=== Setting up Switch Stacks ===