############################################################################ # (C) Copyright 2003-2006 Hewlett-Packard Development Company, L.P. # @(#)B.11.31_LR # hpietherconf : contains configuration values for HP iether 100BT/Gigabit # ethernet interfaces # # HP_IETHER_INTERFACE_NAME Name of interface (lan0, lan1...) # # HP_IETHER_VMTU Change the virtual maximum transmission unit (in # bytes) for the TCP Segmentation Offload (TSO) # feature. Valid values are 0 or 32160. # Set to 0 to disable TSO (Default) # Set to 32160 to enable TSO. Note that transmit # checksum offload (HP_IETHER_SEND_CKO) must be # enabled for TCP Segmentation (TSO) offload to be # enabled. # # HP_IETHER_ITR_MODE Change interrupt spacing. Set it to -1 to enable # automatic dynamic tuning in the driver. Set it to # value 'n' (between 0 and 65535) for an interrupt # spacing of (n * 256) nanoseconds. # Default: -1. Min: -1. Max: 65535 # # HP_IETHER_STATION_ADDRESS Station address of interface # configured through lanadmin(1m) # Prefixed with "0x". # # HP_IETHER_SPEED Change the speed/duplexity for 100Base-T or # 1000Base-T cards. # Valid values are: 10hd 10fd 100hd 100fd auto_on # # HP_IETHER_MTU Change the size of maximum transmission unit. # Valid values are: 257-1500 for 10/100Mbps and # 257-9000 for 1Gbps # # HP_IETHER_FLOW_CONTROL Enable or Disable the card's flow control # By default, it is always enabled # Enable = ON or 1 # Disable = OFF or 0 # # HP_IETHER_AUTONEG Enable or Disable auto negotiation for 1000Base-SX # By default this mode is always enabled # Enable = ON or 1 # Disable = OFF or 0 # Note that you can disable autoneg for 100Base-T or # 1000Base-T by setting HP_IETHER_SPEED. # To set autoneg on for 100Base-T or 1000Base-T set # HP_IETHER_SPEED to "auto_on" # # HP_IETHER_SEND_COAL_TICKS Change the number of send coalesced ticks # in units of 1.024 microseconds. # Default: 150 (i.e., 150*1.024 microseconds). # Minimum: 0 # Maximum: 65535 (i.e., 65535*1.024 microseconds). # # HP_IETHER_RECV_COAL_TICKS Change the number of receive coalesced ticks # in units of 1.024 nanoseconds. # Default: 0 # Minimum: 0 # Maximum: 65535 (i.e., 65535*1.024 nanoseconds). # # HP_IETHER_SEND_MAX_BUFS Change the number of send buffer descriptors # to send at one time. # Default: 10. Min: 1. Max: 64. # # HP_IETHER_RECV_MAX_BUFS Change the number of receive buffer descriptors # to send at one time. # Default: 1. Min: 1. Max: 64. # # HP_IETHER_SEND_CKO Enable/Disable hardware TCP/UDP (IPv4) # checksum offload on transmit. Note that # disabling transmit checksum offload will # also disable the TCP Segmentation (TSO) # offload feature. # Enable = ON, # Disable = OFF. (default) # # HP_IETHER_RECV_CKO Enable/Disable hardware TCP/UDP (IPv4) # checksum offload on receive. # Enable = ON, # Disable = OFF. (default) # # HP_IETHER_DIAG_THRESH Set the inbound packet rate threshold # (in packets per second) below which # the driver internal diagnostic for # hardware fault detection will be enabled. # The driver internal diagnostics will be # activated when the packet rate on the # interface drops below this threshold. # 0 : Default, disables driver diagnostic # 1-100000 : Enables diagnostic and sets # : the threshold to the given value. # -1 : Enables diagnostic and allows # : the driver to automatically determine # : the threshold. # # The interface name, major number, card instance and nmid may be # obtained from the lanscan(1m) command. # # All options are set through the lanadmin(1m) command. # ############################################################################ ############################################################################ # The HP_IETHER_INIT_ARGS are reserved by HP. They are NOT user changable. HP_IETHER_INIT_ARGS="HP_IETHER_STATION_ADDRESS HP_IETHER_SPEED HP_IETHER_MTU HP_IETHER_FLOW_CONTROL HP_IETHER_AUTONEG HP_IETHER_SEND_COAL_TICKS HP_IETHER_RECV_COAL_TICKS HP_IETHER_SEND_MAX_BUFS HP_IETHER_RECV_MAX_BUFS HP_IETHER_VMTU HP_IETHER_ITR_MODE" HP_IETHER_INTERFACE_NAME[0]= HP_IETHER_STATION_ADDRESS[0]= HP_IETHER_SPEED[0]= HP_IETHER_MTU[0]= HP_IETHER_FLOW_CONTROL[0]= HP_IETHER_AUTONEG[0]= HP_IETHER_SEND_COAL_TICKS[0]= HP_IETHER_RECV_COAL_TICKS[0]= HP_IETHER_SEND_MAX_BUFS[0]= HP_IETHER_RECV_MAX_BUFS[0]= HP_IETHER_VMTU[0]= HP_IETHER_ITR_MODE[0]= HP_IETHER_SEND_CKO[0]= HP_IETHER_RECV_CKO[0]= HP_IETHER_DIAG_THRESH[0]= # End of hpietherconf configuration file