Create Bridge
To configure a Bridge for WAN Replication or disaster recovery with your clustered NCache caches, follow the steps outlined in this section using the NCache Management Center and PowerShell.
Important
Before proceeding, make sure that the NCache Bridge Service is running.
Using the NCache Management Center
Launch the NCache Management Center by browsing to http://localhost:8251 or
<server-ip>:8251.Click on the
button on the left navigation bar on the index page.
This opens up a page containing a list of Bridges along with their cache names and Bridge nodes. Click the
button to create a new Bridge.The New Bridge page opens up, displaying the first step to specify Bridge Identification in order to create the new Bridge. Enter the new Name and click Next.

- A new page opens asking the user to specify the Bridge Member Nodes. Enter the Server Node IP and click Next.

- Specify Bridge Port and Queues that appear on the newly opened web page displaying Bridge Port, Maximum Queue Size, Replicator Queue Size , and Enable Queue Optimization checkbox.
Enter the required information and click Next.
Specify Queue Replication Interval and Connection Retry Interval on the new Target Cache Options page and click Finish.
- A new Bridge will be successfully created and displayed in the Bridge list like the following.

Using PowerShell
The New Bridge cmdlet enables the users to create a new Bridge on one or more than one cache server nodes.
- The following command creates a new Bridge named demoBridge on server 20.200.20.39.
New-Bridge -Name demoBridge -Server 20.200.20.39
- The following command creates a new Bridge named demoBridge on server 20.200.20.39 using Port 8261.
New-Bridge -Name demoBridge -Server 20.200.20.39 -Port 8261
- The following creates a new Bridge demoBridge on servers 20.200.20.39 (active mode) and 20.200.20.40 (passive mode) using the default Bridge Port 9900 with default
MaxQueueSize.
New-Bridge -Name demoBridge -Server "20.200.20.39,20.200.20.40" -BridgePort 9900 -MaxQueueSize 2048
- This command creates a new Bridge demoBridge on servers 20.200.20.39 (active mode) and 20.200.20.40 (passive mode) with a replicator queue size of 100 MB.
New-Bridge -Name demoBridge -Server "20.200.20.39,20.200.20.40" -ReplicatorQueueSize 100
- The following command creates a new Bridge named demoBridge on server 20.200.20.39 and sets the queue replication interval to 2 seconds.
New-Bridge -Name demoBridge -Server 20.200.20.39 -QueueReplicationInterval 2
- The following command creates a new Bridge named demoBridge on server 20.200.20.39 with the
-QueueOptimizedswitch enabled.
New-Bridge -Name demoBridge -Server 20.200.20.39 -QueueOptimized
- The following command creates a new Bridge named demoBridge on server 20.200.20.39 with
-ConnectionRetryIntervalset to 5 seconds.
New-Bridge -Name demoBridge -Server 20.200.20.39 -ConnectionRetryInterval 5
- The following command creates a new Bridge named demoBridge on server 20.200.20.39 using security credentials.
New-Bridge -Name demoBridge -Server 20.200.20.39 -Credentials(Get-Credential john_smith)
See Also
Add Clustered Caches to Bridge
Configure Conflict Resolver
Change Cache Synchronization Modes
Remove Cache from Bridge