This topic describes the causes and solutions for the "Customer.Client.Network.SyncInterrupted" error message that occurs during SMC migration tasks.
Problem description
During SMC migration, the migration task displays the error message "Customer.Client.Network.SyncInterrupted".
Cause
The network connection from the source system to the destination instance on port IP:8703 is interrupted.
Solution
Verify that the network connection from the source system to the destination instance on port IP:8703 is stable. Do not interrupt the network during migration. Retry the task after the network connection is restored.
You can use Iperf to test the stability of network transmission from the source system to the destination instance. For more information, see Evaluate migration time and test transmission speed.
Linux transmission stability test example
The following example uses CentOS 7. In actual testing, use your specific operating system version.
Create a pay-as-you-go CentOS 7 instance in the destination region of Alibaba Cloud.
Add an inbound rule to the security group of the instance to allow the port required by iperf.
In this example, the default TCP port 5001 for iperf is used.
Connect to the CentOS 7 instance remotely.
On the CentOS 7 instance, perform the following operations:
Run the following command to install the iperf tool.
yum -y install iperf3Run the following command to start iperf as a server.
iperf3 -s
On the source server system, perform the following operations:
Download and install the iperf tool.
Run the following command to start iperf as a client.
Replace
<instance IP>in the command with the public IP address of the created instance. The value 1200 indicates that the test duration is 1200 seconds.iperf3 -c <instance IP> -i 1 -t 1200 -d
Wait for and record the iperf test results.
Windows transmission stability example
The following example uses Windows Server 2008. In actual testing, use your specific operating system version.
Create a pay-as-you-go Windows Server 2008 instance in the destination region of Alibaba Cloud.
Add an inbound rule to the security group of the instance to allow the port required by iperf.
In this example, the default TCP port 5001 for iperf is used.
Connect to the instance remotely.
On the Windows Server 2008 instance, perform the following operations:
Download and install the iperf tool.
Open a cmd window.
Run the
cd <iperf directory>command to navigate to the tool directory.Run the
iperf3.exe -scommand to start iperf as a server.
On the source server system, perform the following operations:
Download and install the iperf tool.
Run the following command to start iperf as a client.
Replace
<instance IP>in the command with the public IP address of the created instance. The value 1200 indicates that the test duration is 1200 seconds.iperf3 -c <instance IP> -i 1 -t 1200 -d
Wait for and record the iperf test results.