Replication fails to get processed on child. Retry continues to increase without making any progress.
A non-fatal exception occured during replication. The replication job will be restarted from the last check point. (JobID: {...}, Exception: System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a receive. ---> System.IO.IOException: Unable to read data from the transport connection: An established connection was aborted by the software in your host machine. ---> System.Net.Sockets.SocketException: An established connection was aborted by the software in your host machine
ITMS 8.x
MTU set to default 1500 but wireshark shows 1514 size packets placed on the network from the child to the parent.
There may be other causes for this error, however in at least one situation, making the MTU 1400 fixed the error.
Here are the steps to discover and set MTU on child to 1400:
1. Find what your MTU settings and the adapter number from the command prompt:
"netsh interface ipv4 show interfaces"
2. If the MTU is set to 1500 (or more than 1400) use this command make the packets smaller (note: 11 is the adapter number from the example and should be changed to your adapter number:
"netsh interface ipv4 set subinterface "11" mtu=1400 store=persistent"