So I think your asking to be able to ping from the switch and set the ping packet size sent by the switch?
Why not go to the Device/Console
Type in "cmd" and press [Enter] and drop to Linux shell then use the Linux Ping command?
Then when finished type in "EXIT" and press [Enter] to return to our console, "exit" and [Enter] again close console connection in web UI.
CLICK IMAGE BELOW TO VIEW FULL SIZEhttp://www.sanfoundry.com/10-ping-comma ... les-linux/DESCRIPTIONPING (Packet INternet Groper) command is the best way to test connectivity between two nodes. Whether it is Local Area Network (LAN) or Wide Area Network (WAN). Ping use ICMP (Internet Control Message Protocol) to communicate to other devices. You can ping host name of ip address using below command.
ping uses the ICMP protocol’s mandatory ECHO_REQUEST datagram to elicit an ICMP ECHO_RESPONSE from a host or gateway. ECHO_REQUEST datagrams (“pings”) have an IP and ICMP header, followed by a struct timeval and then an arbitrary number of “pad” bytes used to fill out the packet.
SYNOPSISping -s [-d] [-l] [-L] [-n] [-r] [-R] [-v] [ -i interface_address ] [-I interval] [-t ttl] host [packetsize] [count]
OPTIONS :-dSet the SO_DEBUG socket option.
-lLoose source route. Use this option in the IP header to send the packet to the given host and back again. Usually specified with the -R option.
-LTurn off loopback of multicast packets. Normally, if there are members in the host group on the out- going interface, a copy of the multicast packets will be delivered to the local machine.
-nShow network addresses as numbers. ping normally displays addresses as host names.
-rBypass the normal routing tables and send directly to a host on an attached network. If the host is not on a directly-attached network, an error is returned. This option can be used to ping a local host through an interface that has been dropped by the router daemon.
-RRecord route. Sets the IP record route option, which will store the route of the packet inside the IP header. The contents of the record route will only be printed if the -v option is given, and only be set on return packets if the target host preserves the record route option across echos, or the -l option is given.
-vVerbose output. List any ICMP packets, other than ECHO_RESPONSE, that are received.
-i interface_addressSpecify the outgoing interface address to use for multicast packets. The default interface address for multicast packets is determined from the (unicast) routing tables.
-I interval Specify the interval between successive transmissions. The default is one second.
-t ttlSpecify the IP time to live for unicast and multicast packets. The default time to live for unicast packets is set with ndd (using the icmp_def_ttl variable). The default time to live for multicast is one hop.
hostThe network host.
packetsizeSpecified size of packetsize. Default is 64.
countAmount of times to send the ping request.