Sponsored Content
Operating Systems Solaris HBA data traffic monitor in Solaris 10. Post 302730583 by uxravi on Tuesday 13th of November 2012 08:55:33 AM
Old 11-13-2012
HBA data traffic monitor in Solaris 10.

Hi All
We have T4-4 Server with 2 HBA configured for SAN connectivity. We want to monitor Data traffice going through these HBA. On other AIX system we have that capability with nmon. Following screen shows nmon HBA monitoring can we achieve same in Solaris 10.

+----------------------------------------------------------------------------------------------------------------------------------
+-topas_nmon--2=Top-Child-CPU----Host=secdv1-----Refresh=2 secs---08:51.45-----------------------------------------------------+
| Fibre-Channel-Adapter -----------------------------------------------------------------------------------------------------------|
| Adapter Receive Transmit -Requests- --Size KB-- |
|Number Name KB/s KB/s In Out In Out |
| 1 fcs0 0.6 0.0 2.5 0.0 0.2 0.0 |
| 2 fcs1 0.6 2.0 2.5 0.5 0.2 4.0 |
| 3 fcs2 0.6 2.0 2.5 0.5 0.2 4.0 |
| 4 fcs3 0.6 2.0 2.5 0.5 0.2 4.0 |
| Totals 0.0 0.0 MB/s 9.9 1.5 |
|----------------------------------------------------------------------------------------------------------------------------------|
| |

---------- Post updated at 08:55 AM ---------- Previous update was at 08:52 AM ----------

+-----------------------------------------------------------------------------------------
+-topas_nmon--2=Top-Child-CPU----Host=secdv1-----Refresh=2 secs---08:51.45-------------------------------------+
| Fibre-Channel-Adapter -----------------------------------------------------------------------------------------------------------|
| Adapter Receive Transmit -Requests- --Size KB-- |
|Number Name KB/s KB/s In Out In Out |
| 1 fcs0 0.6 0.0 2.5 0.0 0.2 0.0 |
| 2 fcs1 0.6 2.0 2.5 0.5 0.2 4.0 |
| 3 fcs2 0.6 2.0 2.5 0.5 0.2 4.0 |
| 4 fcs3 0.6 2.0 2.5 0.5 0.2 4.0 |
| Totals 0.0 0.0 MB/s 9.9 1.5 |
|---------------------------------------------------------------------------------------|
| |
 

8 More Discussions You Might Find Interesting

1. Solaris

How to get HBA details in Solaris 9 ?

Hi , How can I collect information about any Hardware , specially HBA (Host Bus Adapter) .... I tried prtdiag but it is not shoing the HBA details. Regards (4 Replies)
Discussion started by: adel8483
4 Replies

2. UNIX for Advanced & Expert Users

How do I know which HBA cards' hardware I have (on Solaris 10) ?

Hi, I'm trying to determine which HBA cards are installed on my Solaris 10 (Sun-Fire-V240) machine. The relevant data I have is below, but from it I cannot ascertain for sure if I have Emulex 10000 or 11000 HBA cards. Can anyone suggest how to determine my HBA hardware ? Thanks, Ron. ... (3 Replies)
Discussion started by: ronbarak
3 Replies

3. Solaris

How do I know which HBA cards' hardware I have (on Solaris 10) ?

Hi, I'm trying to determine which HBA cards are installed on my Solaris 10 (Sun-Fire-V240) machine. The relevant data I have is below, but from it I cannot ascertain for sure if I have Emulex 10000 or 11000 HBA cards. Can anyone suggest how to determine my HBA hardware ? Thanks, Ron. ... (4 Replies)
Discussion started by: ronbarak
4 Replies

4. Solaris

hba speed Solaris 9

Hello, In Solaris 10 I can use fcinfo to find what speed the hba ports are running at, am I able to find this out using Solaris 9? I have tried a few variations on luxadm but cant find anything relevant. Thanks. (1 Reply)
Discussion started by: Actuator
1 Replies

5. Red Hat

How to monitor network device traffic using MRTG?

How to monitor network device traffic using MRTG? How can I add network devices in MRTG configuration to monitor? (2 Replies)
Discussion started by: manalisharmabe
2 Replies

6. Solaris

Tracing node to a particular HBA in Solaris 9

I have one disk that is reporting I/O errors but the same LUN mounted on a different node is able to access it without issue, is there a way to identify which HBA is being used for the LUN without swapping each out at a time? (4 Replies)
Discussion started by: thmnetwork
4 Replies

7. UNIX for Advanced & Expert Users

Linux bridged firewall - monitor traffic & block IP

Hi All, I successfully configured a DEBIAN Lenny bridged firewall using ebtables. The bridged interface is br0. The ethernet interface are eth0 & eth1 respectively. All the traffic are transparently passing my firewall but i need to find & block temporarily the bandwidth abusers. Can... (1 Reply)
Discussion started by: coolatt
1 Replies

8. IP Networking

I would like to monitor network traffic for a computer on my network

My son does homework on a school laptop. I was thinking about setting up a gateway on my home network, so that I can monitor web traffic and know if he is doing his homework without standing over his shoulder. Ideally I would like to use the Raspberry Pi Model b that I already have. However, I... (15 Replies)
Discussion started by: gandolf989
15 Replies
tran_getcap(9E) 						Driver Entry Points						   tran_getcap(9E)

NAME
tran_getcap, tran_setcap - get/set SCSI transport capability SYNOPSIS
#include <sys/scsi/scsi.h> int prefixtran_getcap(struct scsi_address *ap, char *cap, int whom); int prefixtran_setcap(struct scsi_address *ap, char *cap, int value, int whom); INTERFACE LEVEL
Solaris architecture specific (Solaris DDI). PARAMETERS
ap Pointer to the scsi_address(9S) structure. cap Pointer to the string capability identifier. value Defines the new state of the capability. whom Specifies whether all targets or only the specified target is affected. DESCRIPTION
The tran_getcap() and tran_setcap() vectors in the scsi_hba_tran(9S) structure must be initialized during the HBA driver's attach(9E) to point to HBA entry points to be called when a target driver calls scsi_ifgetcap(9F) and scsi_ifsetcap(9F). tran_getcap() is called to get the current value of a capability specific to features provided by the HBA hardware or driver. The name of the capability cap is the NULL terminated capability string. If whom is non-zero, the request is for the current value of the capability defined for the target specified by the scsi_address(9S) structure pointed to by ap; if whom is 0, all targets are affected; else, the target specified by the scsi_address structure pointed to by ap is affected. tran_setcap() is called to set the value of the capability cap to the value of value. If whom is non-zero, the capability should be set for the target specified by the scsi_address(9S) structure pointed to by ap; if whom is 0, all targets are affected; else, the target specified by the scsi_address structure pointed to by ap is affected. It is recommended that HBA drivers do not support setting capabilities for all targets, that is, whom is 0. A device may support only a subset of the defined capabilities. Refer to scsi_ifgetcap(9F) for the list of defined capabilities. HBA drivers should use scsi_hba_lookup_capstr(9F) to match cap against the canonical capability strings. RETURN VALUES
tran_setcap() must return 1 if the capability was successfully set to the new value, 0 if the HBA driver does not support changing the capability, and -1 if the capability was not defined. tran_getcap() must return the current value of a capability or -1 if the capability was not defined. SEE ALSO
attach(9E), scsi_hba_attach(9F), scsi_hba_lookup_capstr(9F), scsi_ifgetcap(9F), scsi_address(9S), scsi_hba_tran(9S) Writing Device Drivers SunOS 5.10 30 Aug 1995 tran_getcap(9E)
All times are GMT -4. The time now is 10:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy