Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

  1. Login to the switch en go to the configuration mode.
  2. Enter VLAN database: Switch(config)#  vlan database
  3. Create VLAN: Switch(config-vlan)#  vlan 2
  4. Back to config mode: Switch(config-vlan)#  exit
  5. Enter VLAN 2 interface config: Switch(config)#  interface vlan 2
  6. Name the VLAN: Switch(config-if)# name iSCSI
  7. Back to enable mode: Switch(config-if)# end
  8. Verify: Switch# show vlan

Enable iSCSI Auto-Configuration

  1. Enter the configuration mode and type: Switch(config): iscsi enable
  2. You will be asked if you want to continue and the Flow Control will be enabled on all interfaces. Answer with Yes.
  3. Now you need save your settings and reload the switch: Switch# write memory
  4. Reload the switch: Switch# reload
  5. After the reload, verify iSCSI settings with Switch# show iscsi

Assign the interfaces to the iSCSI VLAN

...

  1. Select multiple interfaces: Switch(config)# interface range gigabitethernet 1/0/1-10
  2. Add interfaces to VLAN 2: Switch(config-if-range)# switchport access vlan 2
  3. Force gigabit connection for all iSCSI ports:
  4. Switch(config-if-range)# no negotiation
  5. Switch(config-if-range)# speed 1000
  6. Save your settings: Switch# write memory
  7. You view the configuration with: Switch# show run

Repeat the steps above for the interfaces on switch 2, use interface range gigabitethernet 2/0/1-10 command to select port 1 to 10 on switch 2. It's also a good idea to shutdown the unused ports on the switches for security reasons.

...