--- title: "Import-VBRLinuxKnownHost" description: "This cmdlet imports trusted Linux SSH and deployer certificate fingerprints from the specified file to Veeam Backup & Replication. Veeam Backup & Replication will consider the hosts as trusted." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/import-vbrlinuxknownhost_agent.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Veeam Agent Management Security Settings > Import-VBRLinuxKnownHost" dateModified: "2026-08-19" --- # Import-VBRLinuxKnownHost ## Short Description Imports trusted Linux SSH and deployer certificate fingerprints from a file. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Import-VBRLinuxKnownHost -Path [-NetworkCredentials ] [-Force] [] ``` ## Detailed Description This cmdlet imports trusted Linux SSH and deployer certificate fingerprints from the specified file to Veeam Backup & Replication. Veeam Backup & Replication will consider the hosts as trusted. The file can contain the following fingerprints: - Microsoft Windows and Linux deployer service certificate fingerprints of servers added as managed to the backup infrastructure. - Trusted Linux server SSH fingerprints of servers added to the protection groups created for Veeam Agents and servers protected by Veeam Plug-ins for Enterprise Applications. ::: tip To instruct Veeam Backup & Replication to establish connections only with trusted hosts, run the [`Set-VBRLinuxTrustedHostPolicy`](set-vbrlinuxtrustedhostpolicy.md) cmdlet. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

Defines that the cmdlet will overwrite TLS fingerprints for existing hosts in the Veeam Backup & Replication database without asking a user.

SwitchParameter

False

Named

False

NetworkCredentials

For importing from a folder on a file share. Applies only to Microsoft Windows-based backup servers.

Specifies the credentials you want to use for authenticating with the shared folder.

CCredentials

False

Named

True (ByPropertyName)

Path

Specifies the path to the file on the backup server. The cmdlet will import TLS fingerprints from this file.

Note: For the Linux-based backup server, the path must start with /var/lib/veeam/.

String

True

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Importing Fingerprints This command imports SSH and deployer certificate fingerprints from an XML file. ``` Import-VBRLinuxKnownHost -Path "/var/lib/veeam/export/fingerprints.xml" ``` :::