Skip to main content

Transition Managed Servers from IP Addressing or DNS to FQDN

  • May 23, 2026
  • 4 comments
  • 75 views

Iams3le
Forum|alt.badge.img+13

 

Ever wanted to chage your managed server from an IP Adress or DNS (shortname) to FQDN. Then you will find this article very useful.

 

Since the move to version Veeam Backup & Replication (VBR) v13, we have seen that FQDN works more reliably in VBR/VSA due to strict reverse DNS requirements for certificate authentication, SSH, and agent deployment on Linux. IPs skip PTR lookups and often fail validation as demonstrated in this guide “Building VIHR: Ransomware-Proof Repository with Veeam JeOS“. In this article, we shall discuss how to “Switch from IP to DNS names for Backup Infrastructure in VBR cleanly”

Managed Server Object Rename

Prior to running the commands below you need to identify the IP\DNS (shortname) utilized by your Managed Server currently. Since I am currently using the hostname as Techda01 for example, and this could even be an IP address in your vase, this would need to be changed very shortly to a Fully Qualified Domain Name (FQDN). 

Note: Until now, this change cannot be done via the console but via PowerShel only. 

# Step 1: Assign the target infrastructure component object to a variable
$Server = Get-VBRServer -Name “Techda01”
$Server = Get-VBRServer -Name “192.168.2.147” (in case you have an IP address in the name field)

# Step 2: Push the new FQDN update directly into the VBR configuration database
$Server.SetName(“techda01.techdc01.techdirectarchive.com”)

 

4 comments

I just edit the host files on Veeam Backup boxes to names like Backup1.acme.locl and give it an IP. Then I add the servers as the FQDN i put in the host file and I can change IP’s at any time without the need for a DNS server. Just another way to do it if you don’t have a full DNS server to configure.


Marcel.K
Forum|alt.badge.img+12
  • Veeam Legend
  • June 1, 2026

Hi ​@Iams3le,

is this working for migration of VBR to new server as well?

 


Iams3le
Forum|alt.badge.img+13
  • Author
  • June 1, 2026

Hi ​@Iams3le,

is this working for migration of VBR to new server as well?

 

In this case, yes also!


Marcel.K
Forum|alt.badge.img+12
  • Veeam Legend
  • June 1, 2026

this is good step how to migrate to appliances in 13.1 :)