Dear
Thank you for your feedback, this is not what you meant in your problem statement.
However, to your new question:
Step 1:
- Add a DNS record in your domain controller to resolve the MABS server (
MABS01.test.local
) to the backup network's IP (10.0.3.1
).- In the DNS Manager on
Domain01.test.local
:- Add a new A record for `MABS01.test.local` pointing to `10.0.3.1`. 1. Ensure the DNS TTL is low during testing for quicker propagation.
- In the DNS Manager on
Step 2:
- On
test01.test.local
(AVS VM):- Download the DPM protection agent from the MABS console.
- Install the agent, specifying the FQDN (
MABS01.test.local
). The agent will use the DNS settings configured in Step 1.
- Confirm successful installation and registration of the agent with the MABS server.
- Install the agent, specifying the FQDN (
- Download the DPM protection agent from the MABS console.
Step 3:
- Set up static routes to prefer the backup network:
- On
test01.test.local
, add a route to the MABS server:
route add 10.0.1.1 mask 255.255.255.255 10.0.3.1 metric 1
- This ensures backup traffic is routed through NIC2.
- Configure the firewall on both
test01.test.local
andMABS01.test.local
:- Allow necessary ports (e.g., TCP 135, 5718, 5719, and 80) for traffic from
10.0.3.0/24
to10.0.1.0/24
.
- Allow necessary ports (e.g., TCP 135, 5718, 5719, and 80) for traffic from
- On
Step 4:
- Use packet capture tools like Wireshark or a network monitor to verify that traffic flows through the backup network during backup operations.
- Run a test backup job and check the traffic path with:
netstat -an | find "10.0.3."
Hope this is helpful
Success.