Sponsored Content
Full Discussion: Status of NIC
Top Forums Shell Programming and Scripting Status of NIC Post 302314140 by Neo on Thursday 7th of May 2009 12:59:26 PM
Old 05-07-2009
ifconfig


Did you consider to search the forums before asking such basic question?
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Couldn't open status file /var/samba/STATUS.LCK

I believe i have most of samba configured right but i get this error each time time try to run it. I was given suggestion that i touch the file, i did, but i still cannot rid myself of this error. Any suggestions (2 Replies)
Discussion started by: macdonto
2 Replies

2. UNIX for Dummies Questions & Answers

NIC The Status Down but I can ping the localhost??!!

Hello, hi guys I don't know what is the problem with my NIC I can ping the Localhost (LOOPBACK) but when I run a scripts to check the NIC statuse it's shown the NIC DOWN sooo what could be the problem and what is the best way to start trouplshooting the NIC in SUN-SOLARIS. Regards, Karim ... (3 Replies)
Discussion started by: geoquest
3 Replies

3. Shell Programming and Scripting

NIC status bash shell

Hi can someone tell me what command i can use to find the NIC status im using the bash shell. I'v tried ifconfig -a but this comes back as command not found. (3 Replies)
Discussion started by: warlock129
3 Replies

4. Solaris

x86 Solaris 10 nic driver added but not attached. NIC is not detected.

I couldn't install my nic in solaris 10. I compiled and added the driver but failed to attach the driver and ifconfig output shows only loopback dev. Please see the following output and tell me whether my nic has been detected and why the driver failed to attach? My nic is detected in linux... (0 Replies)
Discussion started by: vectrum
0 Replies

5. IP Networking

squid proxy: one NIC for inbound & one NIC for outbound?

I am new in squid proxy. My question is how to (and if it's necessary) to set one NIC for inbound traffic (http requests) and one NIC for outbound traffic (http answers)? Thank you in advance! (4 Replies)
Discussion started by: aixlover
4 Replies

6. Red Hat

I want to tune NIC's rps, rfs and xps value. which NIC device should I modify.

Dear All I want tune my NIC's rps, rfs and xps value. In my system I have two NIC (eth0, eth1) and I have a bond0 ( eth0, eth1). Here is the question? Which device should I modify ? eth0 and eth1? or just modify bond0 or modify all device (eth0, eth1, bond0) Any advice is welcome.... (0 Replies)
Discussion started by: nnnnnnine
0 Replies

7. Solaris

Nic Failed Status

Hi guys, Another problem here and I appreciate the help, the interface in the solaris v440 is showing as "FAILED" ce0: flags=19040803<UP,BROADCAST,MULTICAST,DEPRECATED,IPv4,NOFAILOVER,FAILED> mtu 1500 index 2 inet 192.168.1.30 netmask ffffff00 broadcast 192.168.1.255 ... (14 Replies)
Discussion started by: br1an
14 Replies

8. Linux

Add two different subnet public IPs to single NIC or two different NIC on same box

Hello Admins, My ask is how can I add two different subnet IPs to same box with two different gateways? The issue is I can connect to the box when I am on ethernet LAN, but I am not able to connect to the same IP when I am on wifi. The server is RHEL 7 VM on vmware. How can I get connected... (4 Replies)
Discussion started by: snchaudhari2
4 Replies

9. Programming

How to track table status delete/update/insert status in DB2 V10 z/os?

Dear Team I am using DB2 v10 z/os database . Need expert guidance to figure out best way to track table activities ( Ex Delete, Insert,Update ) Scenario We have a table which is critical and many developer/testing team access on daily basis . We had instance where some deleted... (1 Reply)
Discussion started by: Perlbaby
1 Replies
csx_GetStatus(9F)					   Kernel Functions for Drivers 					 csx_GetStatus(9F)

NAME
csx_GetStatus - return the current status of a PC Card and its socket SYNOPSIS
#include <sys/pccard.h> int32_t csx_GetStatus(client_handle_t ch, get_status_t *gs); INTERFACE LEVEL
Solaris DDI Specific (Solaris DDI) PARAMETERS
ch Client handle returned from csx_RegisterClient(9F). gs Pointer to a get_status_t structure. DESCRIPTION
This function returns the current status of a PC Card and its socket. STRUCTURE MEMBERS
The structure members of get_status_t are: uint32_t Socket; /* socket number*/ uint32_t CardState; /* "live" card status for this client*/ uint32_t SocketState; /* latched socket values */ uint32_t raw_CardState; /* raw live card status */ The fields are defined as follows: Socket Not used in Solaris, but for portability with other Card Services implementations, it should be set to the logical socket number. CardState The CardState field is the bit-mapped output data returned from Card Services. The bits identify what Card Services thinks the current state of the installed PC Card is. The bits are: CS_STATUS_WRITE_PROTECTED Card is write protected CS_STATUS_CARD_LOCKED Card is locked CS_STATUS_EJECTION_REQUEST Ejection request in progress CS_STATUS_INSERTION_REQUEST Insertion request in progress CS_STATUS_BATTERY_DEAD Card battery is dead CS_STATUS_BATTERY_DEAD Card battery is dead (BVD1) CS_STATUS_BATTERY_LOW Card battery is low (BVD2) CS_STATUS_CARD_READY Card is READY CS_STATUS_CARD_INSERTED Card is inserted CS_STATUS_REQ_ATTN Extended status attention request CS_STATUS_RES_EVT1 Extended status reserved event status CS_STATUS_RES_EVT2 Extended status reserved event status CS_STATUS_RES_EVT3 Extended status reserved event status CS_STATUS_VCC_50 5.0 Volts Vcc Indicated CS_STATUS_VCC_33 3.3 Volts Vcc Indicated CS_STATUS_VCC_XX X.X Volts Vcc Indicated The state of the CS_STATUS_CARD_INSERTED bit indicates whether the PC Card associated with this driver instance, not just any card, is inserted in the socket. If an I/O card is installed in the specified socket, card state is returned from the PRR (Pin Replacement Register) and the ESR (Extended Status Register) (if present). If certain state bits are not present in the PRR or ESR, a simulated state bit value is returned as defined below: CS_STATUS_WRITE_PROTECTED Not write protected CS_STATUS_BATTERY_DEAD Power good PCS_STATUS_BATTERY_LOW Power good CS_STATUS_CARD_READY Ready CS_STATUS_REQ_ATTN Not set CS_STATUS_RES_EVT1 Not set CS_STATUS_RES_EVT2 Not set CS_STATUS_RES_EVT3 Not set SocketState The SocketState field is a bit-map of the current card and socket state. The bits are: CS_SOCK_STATUS_WRITE_PROTECT_CHANGE Write Protect ECS_SOCK_STATUS_CARD_LOCK_CHANGE Card Lock Change CS_SOCK_STATUS_EJECTION_PENDING Ejection Request CS_SOCK_STATUS_INSERTION_PENDING Insertion Request CS_SOCK_STATUS_BATTERY_DEAD_CHANGE Battery Dead CS_SOCK_STATUS_BATTERY_LOW_CHANGE Battery Low CS_SOCK_STATUS_CARD_READY_CHANGE Ready Change CS_SOCK_STATUS_CARD_INSERTION_CHANGE Card is inserted The state reported in the SocketState field may be different from the state reported in the CardState field. Clients should normally depend only on the state reported in the CardState field. The state reported in the SocketState field may be different from the state reported in the CardState field. Clients should normally depend only on the state reported in the CardState field. raw_CardState The raw_CardState field is a Solaris-specific extension that allows the client to determine if any card is inserted in the socket. The bit definitions in the raw_CardState field are identical to those in the CardState field with the excep- tion that the CS_STATUS_CARD_INSERTED bit in the raw_CardState field is set whenever any card is inserted into the socket. RETURN VALUES
CS_SUCCESS Successful operation. CS_BAD_HANDLE Client handle is invalid. CS_BAD_SOCKET Error getting socket state. CS_UNSUPPORTED_FUNCTION No PCMCIA hardware installed. CS_NO_CARD will not be returned if there is no PC Card present in the socket. CONTEXT
This function may be called from user or kernel context. SEE ALSO
csx_RegisterClient(9F) PC Card 95 Standard, PCMCIA/JEIDA SunOS 5.11 19 Jul 1996 csx_GetStatus(9F)
All times are GMT -4. The time now is 05:16 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy