Sun Blade 6000 Virtualized Multi-Fabric 10GbE M2 Network Express Module 사용자 설명서

 

문서 정보

머리말

관련 설명서

이 설명서에 대한 정보(PDF 및 HTML)

여러분의 의견을 환영합니다.

변경 내역

Sun Blade 6000 Virtualized Multi-Fabric 10GbE M2 NEM 사용자 설명서 개요

Sun Blade 6000 Virtualized Multi-Fabric 10GbE M2 NEM 특징

용어

특징 개요

구성 요소 개요

NEM 포트 및 LED

핫 플러그 삽입 및 제거 수행

PCIe 핫 플러그

SAS 인터페이스 핫 플러그

Virtualized M2 NEM 설치 또는 교체

NEM 설치

NEM 설치 확인

NEM 제거

NEM 교체

SFP+ 광학 송수신기 모듈 설치 및 제거

SPF+ 커넥터 케이블 연결

Virtualized M2 NEM 10기가비트 이더넷 포트를 통한 부팅

x86 블레이드 서버를 사용하여 네트워크를 통해 부팅

SPARC 블레이드 서버를 사용하여 네트워크를 통해 부팅

Solaris SPARC 또는 x86 플랫폼에서 hxge 드라이버 설치 및 구성

네트워크 호스트 파일을 구성하는 방법

hxge 장치 드라이버 매개변수 구성

hxge.conf 파일을 사용하여 매개변수를 설정하는 방법

ndd 유틸리티를 사용하여 매개변수 값을 지정하는 방법

점보 프레임 기능 구성

Linux 플랫폼에서 hxge 드라이버 설치 및 구성

Linux 플랫폼에서 드라이버 설치 및 제거

네트워크 인터페이스 구성

hxge 장치 확인 및 테스트

hxge 드라이버 구성 변경

드라이버 문제 해결

점보 프레임 구성

Windows 플랫폼에서 드라이버 설치 및 구성

Windows 플랫폼에서 드라이버 설치

점보 프레임 활성화

VMware ESX Server 플랫폼에서 드라이버 설치 및 구성

기존 ESX Server에 ESX Server 드라이버 설치

새 ESX 설치에 ESX Server 드라이버 설치

Virtual NEM M2 네트워크 어댑터 구성

점보 프레임 구성

ILOM 추가 설명서

ILOM 설명서 및 업데이트 액세스

ILOM에 연결

NEM 펌웨어 업데이트

Sun Blade Zone Manager

NEM 센서

비공개 및 페일오버 모드 활성화

핫 플러그 명령 사용

색인

hxge.conf 파일을 사용하여 매개변수를 설정하는 방법

hxge 장치 드라이버 구성 파일은 다음 디렉토리에 있습니다.

/kernel/drv/hxge.conf

  1. /kernel/drv/hxge.conf 파일에서 해당 줄에 대한 주석 처리를 해제하고 새 값을 입력하여 매개변수를 변경합니다.

    /kernel/drv/hxge.conf 파일의 내용은 다음과 같습니다. 이 파일에서는 모든 매개변수를 나열하고 설명합니다. 기본값은 hxge 드라비어 시작 시 로드됩니다.

    # cat /kernel/drv/hxge.conf
    #
    #
    # driver.conf file for Sun 10Gb Ethernet Driver (hxge)
    #
    #
    #------- Jumbo frame support ---------------------------------
    # To enable jumbo support,
    # accept-jumbo = 1;
    #
    # To disable jumbo support,
    # accept-jumbo = 0;
    #
    # Default is 0.
    #
    #
    #------- Receive DMA Configuration ----------------------------
    #
    # rxdma-intr-time
    #         Interrupts after this number of NIU hardware ticks have
    #         elapsed since the last packet was received.
    #         A value of zero means no time blanking (Default = 8).
    #
    # rxdma-intr-pkts
    #         Interrupt after this number of packets have arrived since
    #         the last packet was serviced. A value of zero indicates
    #         no packet blanking (Default = 0x20).
    #
    # Default Interrupt Blanking parameters.
    #
    # rxdma-intr-time = 0x8;
    # rxdma-intr-pkts = 0x20;
    #
    #
    #------- Classification and Load Distribution Configuration ------
    #
    # class-opt-****-***
    #         These variables define how each IP class is configured.
    #         Configuration options includes whether TCAM lookup
    #         is enabled and whether to discard packets of this class
    #
    #         supported classes:
    #         class-opt-ipv4-tcp class-opt-ipv4-udp class-opt-ipv4-sctp
    #         class-opt-ipv4-ah class-opt-ipv6-tcp class-opt-ipv6-udp
    #         class-opt-ipv6-sctp class-opt-ipv6-ah
    #         Configuration bits (The following bits will be decoded
    #         by the driver as hex format).
    #
    #
    #         0x10000:            TCAM lookup for this IP class
    #         0x20000:            Discard packets of this IP class
    #
    # class-opt-ipv4-tcp = 0x10000;
    # class-opt-ipv4-udp = 0x10000;
    # class-opt-ipv4-sctp = 0x10000;
    # class-opt-ipv4-ah = 0x10000;
    # class-opt-ipv6-tcp = 0x10000;
    # class-opt-ipv6-udp = 0x10000;
    # class-opt-ipv6-sctp = 0x10000;
    # class-opt-ipv6-ah = 0x10000;
    #
    #
    #------- FMA Capabilities ---------------------------------
    #
    # Change FMA capabilities to non-default
    #
    # DDI_FM_NOT_CAPABLE 0x00000000
    # DDI_FM_EREPORT_CAPABLE 0x00000001
    # DDI_FM_ACCCHK_CAPABLE 0x00000002
    # DDI_FM_DMACHK_CAPABLE 0x00000004
    # DDI_FM_ERRCB_CAPABLE 0x00000008
    #
    # fm-capable = 0xF;
    #
    # default is DDI_FM_EREPORT_CAPABLE | DDI_FM_ERRCB_CAPABLE = 0x5

    다음 예에서는 NEM이 해당 블레이드 시스템에 대한 TCP 트래픽을 삭제합니다. 다시 말해 hxge 드라이버는 TCP 트래픽을 수신하지 않습니다.

    class-opt-ipv4-tcp = 0x20000;

    다음 예에서는 FMA 기능이 비활성화됩니다.

    fm-capable = 0x0;
  2. 새 매개변수를 적용하려면 hxge 드라이버를 다시 로드하거나 시스템을 재부팅합니다.