Both Servers are 2008 R2. Server A is a file server, Server B is a File Server + DC. I have verified that AD replication is flowing with our errors between the two sites.
I have been having some issue with Files not being copied over form Server A to Server B. Server B changes seem to make it over to Server A.
Looking at the backlog status I see this:
PS C:\> .\Get-DFSRBacklog.ps1 | sort-object BacklogStatus | format-table -groupby BacklogStatus
BacklogStatus: Error
ReplicationGroupName ReplicatedFolderName SendingMember ReceivingMember
BacklogCount FolderEnabled ConnectionEnabled Inbound BacklogStatus
-------------------- -------------------- ------------- ---------------
------------ ------------- ----------------- ------- -------------
DFS SDEV LOCALHOST ServerA$
698986 True True
False Error
DFS SDEV ServerA LOCALHOST$
719257 True True
True Error
I see here that in the Inbound section it has False\True (This implies that maybe we are not making a two way replication link)
In the DFS Event log I find this on Server B
The DFS Replication service successfully established an inbound connection with partner Server A for replication group SDEV.
Additional Information:
Connection Address Used: Server A
Connection ID: 6975046B-2242-4AD4-AA8B-B1DBC50F26BA
Replication Group ID: 269396D9-52A4-4F4E-8311-69C616851638
But I do not see a corresponding event log on Server A
Is there supposed to be a corresponding message on A? I have started and stopped the services and rebooted the servers.
Another odd thing I see is that Server B does this
The DFS Replication service successfully set up an RPC listener for incoming replication requests.
Additional Information:
Port: 5722
and Server A does this
The DFS Replication service successfully set up an RPC listener for incoming replication requests.
Additional Information:
Port: 0
I tried to set Server A to a static Address but that seemed to cause some issues.
This is from Server A
PS C:\Windows\system32> Dfsrdiag DumpMachineCFG
Machine Configuration Parameters:
ConflictHighWatermarkPercent : 90
ConflictLowWatermarkPercent : 60
DebugLogFilePath : C:\Windows\debug
DebugLogSeverity : 4
Description :
DsPollingIntervalInMin : 60
EnableDebugLog : TRUE
EnableLightDsPolling : TRUE
LastChangeNumber : 4
LastChangeSource :
LastChangeTime : 20150917153121.000000-000
MaxDebugLogFiles : 1000
MaxDebugLogMessages : 200000
MaxOfflineTimeInDays : 0
ReghostingRateInMin : 60
RootHighWatermarkPercent : 100
RootLowWatermarkPercent : 80
RpcPortAssignment : 0
StagingHighWatermarkPercent : 90
StagingLowWatermarkPercent : 60
Operation Succeeded
PS C:\Windows\system32> tasklist | findstr dfsrs.exe
dfsrs.exe 4284 Services 0
133,036 K
PS C:\Windows\system32> tasklist /svc | findstr dfsrs
dfsrs.exe 4284 DFSR
PS C:\Windows\system32> tasklist /svc | findstr dfsrs.exe
dfsrs.exe 4284 DFSR
PS C:\Windows\system32> netstat -ano | findstr 4284
TCP 0.0.0.0:61234 0.0.0.0:0 LISTENING 4284
TCP ServerA:61229 ServerC:389 ESTABLISHED 4284
TCP ServerA:61231 ServerC:51240 ESTABLISHED 4284
TCP ServerA:61232 ServerC:389 ESTABLISHED 4284
TCP ServerA:61234 ServerB:57033 ESTABLISHED 4284
TCP ServerA:61234 ServerB:58733 ESTABLISHED 4284
TCP ServerA:61240 ServerB:5722 ESTABLISHED 4284
TCP [::]:61234 [::]:0 LISTENING
4284
UDP 127.0.0.1:53032 *:*
4284
PS C:\Windows\system32>
This from Server B
PS C:\Windows\system32> Dfsrdiag DumpMachineCFG
Machine Configuration Parameters:
ConflictHighWatermarkPercent : 90
ConflictLowWatermarkPercent : 60
DebugLogFilePath : s:\dfsrlogs
DebugLogSeverity : 5
Description :
DsPollingIntervalInMin : 60
EnableDebugLog : TRUE
EnableLightDsPolling : TRUE
LastChangeNumber : 9
LastChangeSource :
LastChangeTime : 20150918201253.000000-000
MaxDebugLogFiles : 200
MaxDebugLogMessages : 500000
MaxOfflineTimeInDays : 0
ReghostingRateInMin : 60
RootHighWatermarkPercent : 100
RootLowWatermarkPercent : 80
RpcPortAssignment : 5722
StagingHighWatermarkPercent : 90
StagingLowWatermarkPercent : 60
Operation Succeeded
PS C:\Windows\system32> tasklist /svc |findstr dfsrs.exe
dfsrs.exe 1120 DFSR
PS C:\Windows\system32> netstat -ano |findstr 1120
TCP 0.0.0.0:5722 0.0.0.0:0 LISTENING 1120
TCP ServerB:5722 ServerA:61240 ESTABLISHED 1120
TCP ServerB:56631 ServerB:389 ESTABLISHED 1120
TCP ServerB:56635 ServerB:389 ESTABLISHED 1120
TCP ServerB:57033 ServerA:61234 ESTABLISHED 1120
TCP ServerB:58465 ServerB:61234 ESTABLISHED 1120
TCP [::]:5722 [::]:0 LISTENING
1120
TCP [::1]:56633 [::1]:49157 ESTABLISHED 1120
UDP 0.0.0.0:61120 *:*
1276
UDP 127.0.0.1:53548 *:*
1120
Any help would be appriciated.