Hazvinei Mugwagwa writes:
> Does anyone have any suggestions on how to troubleshoot a NIC. Is there a way 
> to get insight into whether solaris is actually communicating with my nic and 
> also to see if any errors are been returned. Basically I want to see the 
> communication between the OS and card. What should I look for in terms of 
> verifying that at least on the OS level things are working as they should be 
> and then how do I work myself towards been able to ping the network.

You can use dtrace to do this, but you likely need a lot of
information about how the stack itself works and how the driver was
written.  It seems like a difficult and unlikely way to debug.

I wouldn't recommend starting there.  Instead, I'd start with the
basics.  What does "ifconfig -a" say?  How about "netstat -ni"?  Can
you ping the router if you use the "-n" flag?  (If so, then the
problem is in name services, not the network card.)

Can you snoop the connection?

> One thing is for sure, I cannot get DHCP to work because after running 
> sys-unconfig and then trying to setup DHCP the system returns a flat out, NO. 
> Any trouble shooting help is appreciated. I have seen other people have 
> success with this driver and my chipset, but it wasnt an identical 
> motherboard, so maybe that is my problem.

Again, debug information is essential.  Anything in /var/adm/messages?
What does "ifconfig <interfacename> dhcp status" say?

Try setting up daemon.debug to log to a file (via /etc/syslog.conf),
then do this:

        pkill dhcpagent
        /sbin/dhcpagent -d 3 -v
        ifconfig <interfacename> dhcp start

That should cause a great deal of debug information to be written to
the log file.  If the problem is in DHCP itself, that should find it.

However, the symptoms you describe sound more basic to me: such as a
bad Ethernet cable or similar broken hardware.  Are you sure you've
got the right port?

> Also, any chance the latest version of Solaris Express will work better for 
> my NIC? I have the version prior right now.

I'd always recommend the newest version.

-- 
James Carlson, Solaris Networking              <[EMAIL PROTECTED]>
Sun Microsystems / 1 Network Drive         71.232W   Vox +1 781 442 2084
MS UBUR02-212 / Burlington MA 01803-2757   42.496N   Fax +1 781 442 1677
_______________________________________________
networking-discuss mailing list
[email protected]

Reply via email to