Ping Problem

Can someone tell me how I can get the following bolded output without having to issue the control C key when a ping is running?

[cca-wl5.klgff:132] ping -s cca-wl6
PING cca-wl6: 56 data bytes
64 bytes from cca-wl6: icmp_seq=0. time=0.796 ms
64 bytes from cca-wl6: icmp_seq=1. time=0.581 ms
64 bytes from cca-wl6: icmp_seq=2. time=0.492 ms
^C
----cca-wl6 PING Statistics----
3 packets transmitted, 3 packets received, 0% packet loss
round-trip (ms) min/avg/max/stddev = 0.492/0.623/0.796/0.16

This is on a Solaris box. Please help.

# ping -c <number> <ip>

-c on solaris pinh is traffic class and as such is only valid for IPv6.

I can't remember if the -s is needed to get that output or not.

ping -s <hostname> 56 3

this doesnt work. it spits out:

hostname is alive

this should work bro,,
ping -s sunsolve.sun.com 56 5

Thanks everybody. This actually worked.