Symantec logo

Running an optional system check for LLT

Run this check to ensure the proper setup of LLT.

 To run an optional system check for LLT

  1. Log in as root user.
  2. Navigate to the directory containing the installation program:

    # cd /cdrom/storage_foundation_for_oracle_rac

  3. Launch the SF Oracle RAC configuration menu:

    # ./installsfrac -configure

    By default, the installsfrac program uses SSH for remote communication. However, to use RSH, specify the -rsh option with the installsfrac program.

    # ./installsfrac -rsh -configure

  4. Enter the system names.

    Enter the system names separated by spaces on whcih to configure SFRAC: galaxy nebula

  5. From the main menu, select Check systems for SFRAC **INSTRUCTIONS ONLY **.
  6. Select Check LLT links **INSTRUCTIONS ONLY**.
  7. The installer lists the conditions for LLT links for each of the cluster systems and shows example commands for checking and changing settings. You must log in to each cluster system to make the checks. For example:

    ...........................................

    Before continuing, login to all cluster nodes and check LLT links.Each LLT link must:

    * Not share a subnet with other LLT links on that system.

    * Have speed and autonegotiate settings matching the switch

    port

    * Have same jumbo frame settings

    * Must have unique MAC addresses

    Example:

    ..............................................................

Auto-negotiation, media speed, and jumbo frame settings
on private NICs

For optimal LLT (Low Latency Transport) communication among the cluster nodes, the interface cards on each node must use the same media speed settings. Also, the settings for switches or hubs used for the interconnects must match that of the interface cards. Incorrect settings can cause poor network performance or even network failure.

Guidelines for Auto-negotiation, media speed, and jumbo frame settings for LLT interconnects:

Displaying and setting the Ethernet media speed

The following paragraphs describe displaying information about the current settings for interface cards and how to modify them if necessary.

 To display and set the Ethernet auto-negotiation setting and the media speed

  1. Use the ndd command with the appropriate options.
    1. To find auto-negotiation setting, enter:

      # /usr/sbin/ndd -get /dev/<device_name> adv_autoneg_cap

      If the output is 1, auto-negotiation is set; if it is 0, it is not set. To set, enter:

      # /usr/sbin/ndd -set /dev/<device_name> adv_autoneg_cap 1

    2. To find the speed, enter:

      # /usr/sbin/ndd -get /dev/<device_name> link_speed

      If the output is 1, link speed is 100 Mbps, if it is 0, it is 10 Mbps. To set to 100 Mbps, enter:

      # /usr/sbin/ndd/-set /dev/<device_name> link_speed 1

    3. To find the link mode, duplex or half-duplex, enter:

      # /usr/sbin/ndd -get /dev/<device_name> link_mode

      If the output is 1, it is set to full duplex, if it is 0, it is set to half-duplex. To set to full duplex, enter:

      # /usr/sbin/ndd -set /dev/<device_name> link_mode 1

    4. To find out the jumbo frame setting for the device, enter:

      # /usr/sbin/ndd -get /dev/<device_name> accept-jumbo

      If the output is 1, jumbo frames are set; if it is 0, jumbo frames are not set. To set, enter:

      # /usr/sbin/ndd -set /dev/<device_name> accept-jumbo 1