RFC8200 specifically says that fragmentation is done only by the source node and not by any intermediate node. It also says that fragments are reassembled at the receiver. Can I conclude from this that reassembly is done only at the receiver and no node other than the destination can reassemble packets?
1
There are 1 best solutions below
Related Questions in IPV6
- My app domain does not load on some iPhones on 5G, loads fine otherwise
- PHP Get IPv4 Address
- Unable to ping remote websites from an ipV6 only ubuntu ec2 Instance
- How to mix IPv4 and IPv6 in AWS WAF IP sets?
- jboss configuration via ipv6 version jboss-eap-7.4
- Is it possible to connect to a Google Cloud VM using IPv6?
- How to test if the result of netip.ParsePrefix() is IPv6 in Go?
- gcloud CLI: use IPv4 only
- Getting Correct vs Wrong IPV4 Address in NodeJS running under AWS Lightsail [IP6to4]
- How to use DHCPClient by changing it to IPV6 android in aosp?
- IPv6 send is not working in pysnmp when snmpwalk is being run through IPv6 from external servers
- How to connect ipv6 through DHCP via WIFI android?
- Reg Issue observed while trying to Ping IPV6 using ICMPV6 protocol via socket layer - CPP
- How to get the IPv4 of a client connection from a google cloud function, when only IPv6 information is there?
- Failed to connect using ipv6 outside rootless container
Related Questions in IP-FRAGMENTATION
- Does memcached send packets that fragment on IP layer using UDP and not TCP?
- What is purpose of Identification number in IPv4 header when DNF flag is set?
- Why does the fragmentation field, in IP header, indicate the offset by bytes, and not sequentially?
- I can't fragment my packet on a TCP connection
- How to read a pcap file generated by tcpdump that contains large UDP packets and reassemble the IP fragmented packets?
- which data structure to choose for ip datagram reassembly at receiver end?
- Does the internet really works at 1500 bytes?
- Video streaming protocol - handling fragmentation
- Clear Don't Fragment bit on Linux
- Determine if IPv4 packet is fragmented
- Disabling IP reassembly / defragmentation in link aggraegation scenario
- Frag size in IPV6 Fragmentation
- DF bit set for UDP socket program
- Using Scapy to send Fragment Packets with random Offsets
- IP Fragmentation on Linux
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Section 4.5 says, in part:
Note that "no router can reassemble packets" isn't strictly true, and isn't strictly prohibited. Some firewalls will reassemble IPv6 fragments in memory in order to process them correctly, for instance; if they didn't reassemble them, they wouldn't always be able to determine whether the traffic should be passed or blocked. But generally a router won't reassemble packets.
This is really all the answer that there is to your given question, though I suspect you have more questions or want more details about this than you've actually posted.
As a general rule, we really don't want to see fragmentation on the Internet; see RFC 8201 for an explanation of Path MTU Discovery, which lets us avoid fragmentation. See also Fragmentation Considered Harmful from 1987, Fragmentation Considered Very Harmful from 2006, and How bad is ip fragmentation from right here on SO.