Barracuda Backup
Author: k | 2025-04-24
The Barracuda Backup Agent uses TLS 1.2 (128-bit AES) to both authenticate with a Barracuda Backup device and encrypt the connection between the Barracuda Backup Agent and the Barracuda Backup device. Authentication. The Barracuda Backup Agent uses public key authentication to verify that it is communicating with a valid Barracuda Backup device.
Barracuda Backup: Features - Barracuda Networks
Oracle databases can be protected by using native tools like RMAN to create a backup dump file or by configuring a pre-execute script on the Barracuda Backup Agent.Oracle on Microsoft WindowsTo automate the Oracle database backup process, you must create a script and command file which utilizes the Oracle RMAN.Running an Oracle database in archivelog mode allows you to back up the database while it is open and in use. Verify your Oracle database is in archivelog mode to complete your backup.ExampleCreate a script named backup.bat containing the following:C: cd C:\ora10g\BIN rman @C:\backup_rman\backup.rman Create a command file named backup.rman containing the following:connect target 'system/password' run { allocate channel d1 type disk; backup AS COMPRESSED BACKUPSET tag Full_database_open format 'C:\backup_rman\db_%t_%s_p%p.dbf' database; backup AS COMPRESSED BACKUPSET archivelog all format 'C:\dbbackup_rman\al_%t_%s_p%p.dbf' delete all input; backup AS COMPRESSED BACKUPSET current controlfile tag =cf1 format 'C:\dbbackup_rman\cf_%t_%s_p%p.dbf'; delete noprompt expired backup; } After creating the script and command file, edit the Barracuda Backup Agent config.ini file located in C:\Program Files\Barracuda\Barracuda Backup Agent\config\, and add either the preExecuteScript or postExecuteScript command line under the [configuration] section.For example:preExecuteScript[configuration] preExecuteScript=C:\backup.batorpostExecuteScript[configuration] postExecuteScript=C:\backup.batSave and run a backup from Barracuda Backup, and verify that the RMAN dump files are backed up with the barracuda Agent or CIFS method.Oracle on LinuxTo automate the Oracle database backup process, you must create a script and command file which utilizes the Oracle RMAN.Running an Oracle database in archivelog mode allows you to back up the database while it is open and in use. Verify your Oracle database is in archivelog mode to complete your backup, as shown in Figure 1.Figure 1. archivelog mode ExampleCreate a script named backup.sh containing the following:#!/bin/bash su – oracle -c "rman cmdfile='/u01/backup.rman'" Create a command file named backup.rman containing the following:connect target SYSTEM/; configure channel device type disk format '/u01/backup/%d_DB_%u_%s_%p'; configure retention policy to recovery window of 3 days; backup database plus archivelog; quit; After creating the script and command file, edit the Barracuda Backup Agent config.ini file located in /usr/local/barracuda/bbs/config/, and add either the preExecuteScript or postExecuteScript command line under the [configuration] section.For example:preExecuteScript[configuration] preExecuteScript=/u01/backup.sh orpostExecuteScript[configuration] postExecuteScript=/u01/backup.shSave and run a backup from Barracuda Backup, and verify that the RMAN dump files are backed up with the Barracuda Backup Agent.. The Barracuda Backup Agent uses TLS 1.2 (128-bit AES) to both authenticate with a Barracuda Backup device and encrypt the connection between the Barracuda Backup Agent and the Barracuda Backup device. Authentication. The Barracuda Backup Agent uses public key authentication to verify that it is communicating with a valid Barracuda Backup device. Barracuda Networks DATASHEET Barracuda Backup DATA PROTECTION Barracuda Backup Prevent data loss and minimize downtime Barracuda Backup combines secure and scalable backup in an all-in-one Barracuda Backup Device: Barracuda Networks Data Centers: TCP/UDP: 1194: OpenVPN port used to manage device from Barracuda Cloud Control. Barracuda Backup Device: Barracuda Networks Backup Agent: TCP/UDP: 5120: Used for communication with Barracuda Backup Agent service. Barracuda Backup Device: Replication Targets Use this page to set up your Barracuda Backup appliance. The Barracuda Backup appliance must be linked online before backups can be initiated. See the following articles for details on linking and unlinking a Barracuda Backup appliance: Activate the Barracuda Backup Appliance; Activate the Barracuda Backup Vx Use the following steps to add a computer and configure the data source on Barracuda Backup: Log in to Barracuda Backup and select the associated Barracuda Backup device in the left pane or in the devices table (for customers with multiple Barracuda Backup devices). Install the Barracuda Backup Agent on the AD Domain Controller. Barracuda Networks DATASHEET Barracuda Backup DATA PROTECTION Barracuda Backup Prevent data loss and minimize downtime Barracuda Backup combines storage, software, and inline deduplication, to ensure Barracuda Cloud Storage Deployment. You can deploy a Barracuda Backup appliance with backups stored on Barracuda Cloud Storage. In the following image, a Barracuda Backup appliance is located in a network and its backups are stored in Barracuda Cloud Storage:. Unlimited Cloud Storage MODEL BARRACUDA BACKUP SERVICE Barracuda Backup Service Provides local disk-based data backup and deduplication The Barracuda Backup Service is a complete and affordable data backup solution. Network file-system or file share backups can be configured for Network Addressable Storage (NAS), network files shares using CIFS/SMB, or Linux/UNIX data using SSHFS. During backup, the share is mounted to and backed up from the Barracuda Backup device. File share backups provide support for file permissions (ACLs). Unlike the Barracuda Backup Agent, file share backups are unable to back up open or locked files.Important: Before backing up files via file share backup, verify the files and folders do not contain invalid characters including:/ ? \ : * | “ +Special characters using the Ctrl keyFor organizations using NFS (NAS or SAN), you can implement a Linux system that can run the Barracuda Backup Agent for Linux. With the NFS mounted on the Linux system, the Linux agent is able to protect open files and ACLs while offering source-based deduplication for efficient backups, where only unique data is sent to Barracuda Backup in a compressed and deduplicated state, reducing network bandwidth consumption and backup times.Comments
Oracle databases can be protected by using native tools like RMAN to create a backup dump file or by configuring a pre-execute script on the Barracuda Backup Agent.Oracle on Microsoft WindowsTo automate the Oracle database backup process, you must create a script and command file which utilizes the Oracle RMAN.Running an Oracle database in archivelog mode allows you to back up the database while it is open and in use. Verify your Oracle database is in archivelog mode to complete your backup.ExampleCreate a script named backup.bat containing the following:C: cd C:\ora10g\BIN rman @C:\backup_rman\backup.rman Create a command file named backup.rman containing the following:connect target 'system/password' run { allocate channel d1 type disk; backup AS COMPRESSED BACKUPSET tag Full_database_open format 'C:\backup_rman\db_%t_%s_p%p.dbf' database; backup AS COMPRESSED BACKUPSET archivelog all format 'C:\dbbackup_rman\al_%t_%s_p%p.dbf' delete all input; backup AS COMPRESSED BACKUPSET current controlfile tag =cf1 format 'C:\dbbackup_rman\cf_%t_%s_p%p.dbf'; delete noprompt expired backup; } After creating the script and command file, edit the Barracuda Backup Agent config.ini file located in C:\Program Files\Barracuda\Barracuda Backup Agent\config\, and add either the preExecuteScript or postExecuteScript command line under the [configuration] section.For example:preExecuteScript[configuration] preExecuteScript=C:\backup.batorpostExecuteScript[configuration] postExecuteScript=C:\backup.batSave and run a backup from Barracuda Backup, and verify that the RMAN dump files are backed up with the barracuda Agent or CIFS method.Oracle on LinuxTo automate the Oracle database backup process, you must create a script and command file which utilizes the Oracle RMAN.Running an Oracle database in archivelog mode allows you to back up the database while it is open and in use. Verify your Oracle database is in archivelog mode to complete your backup, as shown in Figure 1.Figure 1. archivelog mode ExampleCreate a script named backup.sh containing the following:#!/bin/bash su – oracle -c "rman cmdfile='/u01/backup.rman'" Create a command file named backup.rman containing the following:connect target SYSTEM/; configure channel device type disk format '/u01/backup/%d_DB_%u_%s_%p'; configure retention policy to recovery window of 3 days; backup database plus archivelog; quit; After creating the script and command file, edit the Barracuda Backup Agent config.ini file located in /usr/local/barracuda/bbs/config/, and add either the preExecuteScript or postExecuteScript command line under the [configuration] section.For example:preExecuteScript[configuration] preExecuteScript=/u01/backup.sh orpostExecuteScript[configuration] postExecuteScript=/u01/backup.shSave and run a backup from Barracuda Backup, and verify that the RMAN dump files are backed up with the Barracuda Backup Agent.
2025-03-30Network file-system or file share backups can be configured for Network Addressable Storage (NAS), network files shares using CIFS/SMB, or Linux/UNIX data using SSHFS. During backup, the share is mounted to and backed up from the Barracuda Backup device. File share backups provide support for file permissions (ACLs). Unlike the Barracuda Backup Agent, file share backups are unable to back up open or locked files.Important: Before backing up files via file share backup, verify the files and folders do not contain invalid characters including:/ ? \ : * | “ +Special characters using the Ctrl keyFor organizations using NFS (NAS or SAN), you can implement a Linux system that can run the Barracuda Backup Agent for Linux. With the NFS mounted on the Linux system, the Linux agent is able to protect open files and ACLs while offering source-based deduplication for efficient backups, where only unique data is sent to Barracuda Backup in a compressed and deduplicated state, reducing network bandwidth consumption and backup times.
2025-04-05Barracuda RMMDeploy and manage Intronis Backup agents via Barracuda RMM. Through Barracuda RMM’s Service Center Dashboard, you can view the results of all the Intronis Backup agents deployed to customer sites and its status for reporting purposes. Connectwise AutomateDeploy and manage Intronis Backup using ConnectWise Automate. Receive backup alerts, view backup events, and ensure agents connectivity through your service delivery solution. Connectwise ManageEfficiently manage backup service tickets and to report and bill through existing Professional Service Automation (PSA) tool. Kaseya VSAStreamline Intronis Backup service delivery by deploying and monitoring the service with Kaseya VSA. The bi-lateral integration between Intronis Backup and Kaseya VSA enables MSPs to seamlessly deploy, monitor and manage backup through a centralized interface. Kaseya AutotaskManage backup services and gain a centralized view through Autotask PSA. Address tickets, receive reports, and bill the backup service through one single tool. N-able N-CentralRemotely deploy Intronis Backup agents to multiple machines with a single click. Gain real-time monitoring capabilities and manage backup service via existing RMM tool. N-able RMMEasily deploy and manage Intronis Backup with N-able RMM. Receive real-time automated alerts for status update of the backup service.
2025-04-04Email Protection Barracuda Email ProtectionMühelose Abwehr komplexer Bedrohungen mit KI-gestützter E-Mail-Sicherheit. Datensicherung Barracuda Data ProtectionSchützen Sie Daten vor Ort und in der Cloud vor Bedrohungen wie versehentlichem oder böswilligem Verlust und Ransomware. ProdukteBackupSchützen Sie Daten, um Ausfallzeiten zu minimieren und Datenverlust zu verhindern.Cloud-to-Cloud BackupHolen Sie sich SaaS-Backup für Microsoft 365 und Entra ID mit unbegrenztem Speicherplatz. Entra ID-Backup NeuSchützen Sie Ihre Entra ID-Daten und erholen Sie sich von bösartigen Angriffen und Fehlern.Data Inspector™Scannen Sie Microsoft 365 auf sensible Daten und Malware. Managed XDR Barracuda Managed XDRErreichen Sie schnell einen hohen Reifegrad Ihres Cybersecurity-Status mit umfassender Cybersecurity-as-a-Service. Netzwerkschutz Barracuda Network ProtectionSchützen und optimieren Sie Ihr Netzwerk. Anwendungsschutz Barracuda AnwendungsschutzSchützen Sie all Ihre Web-Applikationen und APIs mit einer umfassenden Lösung. Security für MSPs Security für Managed Services ProvidersErweitern Sie Ihre Managed Security Services mit innovativen Cybersecurity-Lösungen, die einfach zu kaufen, zu verwenden und zu implementieren sind. E-Mail-Schutz für MSPsErweiterter E-Mail-Schutz leicht gemacht.Data Protection für MSPsZuverlässige Backup- und Wiederherstellungsoptionen für die Bedürfnisse Ihrer Kunden.Managed XDR für MSPsErweitern Sie Ihre Managed-Services-Fähigkeiten mit Cybersecurity-as-a-Service. RMM für MSPsEine leistungsstarke, schlüsselfertige Lösung zur Bereitstellung hochwertiger Remote-Security- und Supportdienste.Netzwerkschutz für MSPsUmfassender Schutz für lokale und externe Konnektivität.Anwendungsschutz für MSPsSchützen Sie Ihre Kunden vor den OWASP Top 10 Web-Angriffen und mehr.
2025-03-31