|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| IP Networking Learn TCP/IP, Internet Protocol, Routing, Routers, Network protocols in this UNIX and Linux forum. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hi All,
I want to ping 1500 bytes of data from a pc to another pc in the network. What is command used for the same? Thanks |
| Sponsored Links | ||
|
|
#2
|
|||
|
|||
|
ping Code:
-s packetsize
Specify the number of data bytes to be sent. The default is 56, which translates into 64 ICMP
data bytes when combined with the 8 bytes of ICMP header data. |
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
But, you did not mention whether you would want to do so with a single packet or multiple packets. Ok, if multiple packets, your normal ping can do that after N number of packets. i.e Code:
$ ping -c 17 IP 2. If by single packet, you can use Code:
ping -c 1 -s 1500 0 But why do you want to send in a single packet ?! |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| what did dd command do to destination drive | darbid | Filesystems, Disks and Memory | 2 | 06-26-2008 04:46 PM |
| Remove first N bytes and last N bytes from a binary file on AIX. | naveendronavall | Shell Programming and Scripting | 1 | 05-24-2008 11:06 AM |
| how to verify that copied data to remote system is identical with local data. | ynilesh | Shell Programming and Scripting | 3 | 01-31-2008 07:55 AM |
| Ping problem. system down!! | TRUEST | Shell Programming and Scripting | 3 | 02-21-2003 02:16 PM |
| Take a file from the system and put on tape and reset the file to 0 bytes | JackieRyan26 | UNIX for Dummies Questions & Answers | 1 | 09-06-2001 05:08 PM |
|
|