Changes between Version 12 and Version 13 of Installation/Nodes
- Timestamp:
- Jul 23, 2011 8:22:09 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Installation/Nodes
v12 v13 66 66 === Switch Interconnects === 67 67 68 If 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): 68 69 70 {{{ 71 insert 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(); 74 insert 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 }}} 69 78 79 We also need to add an entry to the wires table for these two switches: 80 81 {{{ 82 insert into wires set 83 node_id1='hp1',card1=2,port1=23, 84 node_id2='hp2',card2=1,port2=5, 85 type='Trunk'; 86 }}} 70 87 71 88 === Setting up Switch Stacks ===