IP Payload
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2006 03:49 AM - edited 03-03-2019 03:12 PM
Hi.
i have some douts.
what is the payload of IP?
Why we used preamble only in Frame.why it is not used in IPs,
- Labels:
-
Other Routing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2006 07:13 AM
The payload of the IP packet will depend on the frame that it is being encapsulated with. The IP packet can be fragmented (split into multiple frames), but this is generally undesirable, especially in cases of some encrypted payloads.
You can set the max with the MTU (maximum transmission unit)
Preamble is a series of alternating ones and zeros prepended to the frame. It's job is to give the receiving system something to synchronize with before the actual data in the frame.
Since Ethernet is asynchronous, there is no way for the receiver to predict when a frame might appear on the wire. When the preamble appears (as it must, by specification), the receiver uses the preamble bits to sync-up with the incoming frame so it will have a reference timing for the data that follows.
The preamble (64bits, I think) is also the reason for the 3-4-5 rule in traditional Ethernet.
A few of the preamble bits are lost/dropped/not seen when the frame appears at the receiver, so if the frame is repeated out (not regenerated), there are fewer preamble bits.
If the frame is repeated out enough times, then there are not enough preamble bits for the next receiver to synchronize with, and the frame is lost/discarded (frequently with CRC errors, since the receiver couldn't sync properly).
Good Luck
Scott
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2007 02:59 AM
thanks a lot scott..
