On (07/11/10 15:55), Matt Johnson wrote:
> Upgraded to the dev repo last night, now running SNV_134, however
> network problems still persist (however I cannot confirm they are
> exactly THE SAME problems as in 2009.06, as the system has been left
> dormant for quite a while as I have had other priorities, I think due
> to this is it probably best just to concentrate on the current issues
> and not confuse with the past..)
>
> [u]Problem[/u]
> Every 10-60 seconds (time varies) the system will stop responding to
> ping and any other network request (such as SMB/SSH etc).
> The connectivity will eventually restore itself for a brief while
> before going through the same loop again.
:
> The only 'success' I have had so far is that pinging FROM the
> opensolaris box (usually a headless server) to anywhere causes any
> current period of connectivity issues to cease
>
when the pings fail, what does snoop on the interface report?
do you see any interesting changes in the output of 'netstat -s -P [ip, icmp]'
of the target? Can you run the dtrace script below below to help figure
out if the problem is in ip or lower down in the stack?
#!/usr/sbin/dtrace -Cs -
ip_drop_input:entry,
arp_drop_packet:entry,
ip_drop_output:entry
{
printf("reason %s", (string)arg0);
stack();
}
--Sowmini
_______________________________________________
networking-discuss mailing list
[email protected]