I wanted to know if there is any way to send larger files than 65,536 bytes by using IPv4
How to transmit a file larger than 65,536 bytes using IPv4
410 Views Asked by Jack hazy Turner At
3
There are 3 best solutions below
0

There is not relationship between the version of IP you are using and the size of file you can transmit Do your homework, please.
0

That depends what you mean by "files". Large files are sent over the network every day, and it's still like 99% IPv4, so I suppose most correct answer would be "yes". You might want to read on transport protocols, most prominent of which is TCP.
You shouldn't be using raw IP.
There's a reason an implementation of TCP/IP is typically called a "stack". Communication is typically done by layering protocols on top of each other. Each layer takes the layer below it, and either abstracts away some aspect of the lower-level protocol or adds useful functionality.
A web server, for example, ends up using several layers of protocols:
At the API level, you will almost always start with a transport-layer protocol like TCP, UDP, or sometimes SCTP. It's rare for the OS to even allow you to communicate directly via IP, for security reasons.
So in order to transfer a file, you'd need to