JavaScript is required to for searching.
Skip Navigation Links
Exit Print View
Sun Blade 6000 Virtualized Multi-Fabric 10GbE M2 Network Express Module User's Guide     Sun Blade 6000 Virtualized Multi-Fabric 10GbE M2 Network Express Module Documentation Library
search filter icon
search icon

Document Information

Using This Documentation

Related Books

About This Documentation (PDF and HTML)

We Welcome Your Comments

Change History

Overview of Sun Blade 6000 Virtualized Multi-Fabric 10GbE M2 NEM User's Guide

Features of the Sun Blade 6000 Virtualized Multi-Fabric 10GbE M2 NEM

Terminology

Features Overview

Components Overview

NEM Ports and LEDs

Performing Hot Plug Insertion and Removal

PCIe Hot Plug

SAS Interface Hot Plug

Installing or Replacing the Virtualized M2 NEM

Installing a NEM

Verifying NEM Installation

Removing a NEM

Replacing a NEM

Installing and Removing SFP+ Optical Transceiver Modules

Cabling the SPF+ Connectors

Booting Over the Virtualized M2 NEM 10-Gigabit Ethernet Port

Booting over the Network With an x86 Blade Server

Booting over the Network With a SPARC Blade Server

Installing and Configuring the hxge Driver on a Solaris SPARC or x86 Platform

How to Configure the Network Host Files

Configuring the hxge Device Driver Parameters

How to Set Parameters Using the hxge.conf File

How to Specify Parameter Values Using the ndd Utility

Configuring the Jumbo Frames Feature

Installing and Configuring the hxge Driver on a Linux Platform

Installing and Removing the Driver on a Linux Platform

Configuring the Network Interface

Checking and Testing the hxge Device

Changing the hxge Driver Configuration

Troubleshooting the Driver

Configuring Jumbo Frames

Installing and Configuring Drivers on a Windows Platform

Installing Drivers on a Windows Platform

Enabling Jumbo Frames

Installing and Configuring Drivers on a VMware ESX Server Platform

Installing the ESX Server Drivers on an Existing ESX Server

Installing the ESX Server Drivers With a New ESX Installation

Configuring the Virtual NEM M2 Network Adapters

Configuring Jumbo Frames

ILOM Supplement

Accessing ILOM Documentation and Updates

Connecting to ILOM

Updating the NEM Firmware

Sun Blade Zone Manager

NEM Sensors

Enabling Private and Failover Mode

Using Hot Plug Commands

Fixing Problems with Oracle ILOM Using the Preboot Menu

Index

How to Specify Parameter Values Using the ndd Utility

This section describes how to modify and display parameter values using the ndd utility.

Before you use the ndd utility to get or set a parameter for a hxge device, you must specify the device instance for the utility.

  1. Use the ifconfig command to identify the instance associated with hxge device.
    # ifconfig -a
    hxge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 192.168.1.29 netmask ffffff00 broadcast 192.168.1.255
    ether 0:14:4f:62:1:3
  2. List all of the parameters supported by the hxge driver.
    # ndd -get /dev/hxge0 ?
    ?                             (read only)instance                      (read only)
    rxdma_intr_time               (read and write)
    rxdma_intr_pkts               (read and write)
    class_opt_ipv4_tcp            (read and write)
    class_opt_ipv4_udp            (read and write)
    class_opt_ipv4_ah             (read and write)
    class_opt_ipv4_sctp           (read and write)
    class_opt_ipv6_tcp            (read and write)
    class_opt_ipv6_udp            (read and write)
    class_opt_ipv6_ah             (read and write)
    class_opt_ipv6_sctp           (read and write)
     

    Note that read only parameters cannot be changed.

  3. Display the value of a parameter.

    The following is an example for the rxdma_intr_time parameter:

    # ndd -get /dev/hxge0 rxdma_intr_time
    8
  4. Modify the value of a parameter.

    The following is an example for the rxdma_intr_time parameter. It changes the rxdma_intr_time parameter from 0x8 to 0x10:

    # ndd -set /dev/hxge0 rxdma_intr_time 0x10
    # ndd -get /dev/hxge0 rxdma_intr_time
    10