Advanced Search
Search Results
199 total results found
Sonicwall
Processes and procedures for configuring various aspects of Sonicwall firewall solutions.
Hardware
Authentik
Softether VPN
Veeam
Red Hat Enterprise Linux
Wordpress
Azure Sentinel
GrapheneOS
Ubiquity
System Status
System Status displays the following information: Version Build Edition Uptime System IP License Status (Hermes SEG Pro Only) If system needs to be rebooted to install OS Updates If there is a Hermes SEG Update (Hermes SEG Pro Only) CPU Utilization ...
Mail Queue
In this page, you can adjust the the Bounce and Max Queue Lifetime settings, Flush Mail Queue, View Messages, Requeue Messages, Hold Message, Delete Messages and Search Messages. Normally, the Mail Queue should be empty, since the SMTP server should deliver ...
System Logs
System Logs allows you to set the Log Retention period, fetch system logs by date range/time and search. Log Retention By default Hermes SEG stores logs up to 30 days before automatically purging older entries. This setting can be adjusted by selecting 30 D...
System Backup and Restore
System Backup and System Restore are configured and ran in the CLI as root. There is a Backup script located at /opt/hermes/scripts/system_backup.sh and a Restore script located at /opt/hermes/scripts/system_restore.sh. These scripts should not be moved/copied...
Message History
Hermes SEG keeps a log and a copy of each email message it sends and receives for archiving purposes. The number of log entries and actual messages the system keeps depends on the amount of storage space available on the system. The system automatically st...
Email Archive
In this section will be able to configure a scheduled archive jobs for your Hermes SEG. An Email Archive Job will create a separate email archive on external storage by creating a directory named /mnt on that share, copying all the emails stored on the applia...
System Update
Hermes SEG requires outbound TCP/80 and TCP/443 access to our update servers in order to check and download updates. Ensure you have a recent and valid backup of your system before installing updates. Updates may contain breaking changes and/or additiona...
System Reboot & Shutdown
Reboot System Click on the Reboot System button and wait for the system to finish the reboot process (Figure 1). Figure 1 Shutdown System Click on the Shutdown System button. Please note that manual intervention will be required in order to turn th...
SMTP TLS Settings
It's important to set SMTP TLS in order to transmit e-mail messages between your Hermes SEG machine and other e-mail servers with TLS encryption. By default, SMTP TLS support in Hermes SEG is disabled. In this section you can enable Hermes SEG TLS support as ...
Relay Host
Normally, Hermes SEG delivers email directly to remote SMTP hosts over the Internet. Sometimes, this configuration may not work for certain scenarios. For example, your ISP may not allow outbound SMTP over port TCP/25. In those scenarios it is necessary to co...
Relay Domains
In order for Hermes SEG to deliver email, you must first set the domain(s) that Hermes SEG will process email for along with their corresponding email server(s). You can add as many domains and email servers as required. An email server can be configured as an...
Relay IPs & Networks
In this section, you can add which individual IPs or networks will be allowed to send (relay) email through Hermes SEG. Best security practice is to never allow entire networks to send email through Hermes SEG and instead only allow specific IPs. Add Relay I...
Commandbox Install in Windows
Download CommandBox from https://www.ortussolutions.com/products/commandbox Extract downloaded zip to directory of your choice (Ex: c:\commandbox) Ensure you have Java installed (Amazon Coretto at https://docs.aws.amazon.com/corretto/latest/corre...
Commandbox Commands
Install Coldbox MVC and Deploy App box mkdir /opt/hermes/webapps/Coldbox-Hermes cd /opt/hermes/webapps/Coldbox-Hermes box install coldbox box coldbox create app HermesSEG Start Server Arguments: Numeric port (port number) String host (bind to a host/ip)...
How to Create VMFS Datastore on Vmware OS bootdrive
Normally a vmfs partition is already created by ESXi on the boot drive. You can verify by going logging into the ESX Web GUI and navigating to Storage --> Devices --> Boot disk (Figure 1). Figure 1 Clicking on the drive will show the Partition diagram of t...
HTTP Redirect Using Traefik Reverse Proxy
Enter the following code in the data/traefik_conf.yaml: http: routers: svcname: entryPoints: - "http" rule: "Host(`host.domain.tld`)" middlewares: - "svcname-https-redirect" service: svcname svcna...
Sync Time from External Time Source
By default, all machines in the domain will sync time from the domain controller which is the internal time server - if you have more than one DC then time will sync from the DC that holds the PDC emulator FSMO role. To check which DC is PDC emulator in your d...
Deluge Auto Extract Torrents Settings
Create a Deluge directory structure as follows: deluge --> incoming (for in-progress downloads) --> complete (for completed downloads) --> torrent (for manual torrents) Under Deluge --> Preferences --> Downloads --> Download to set it to your "incom...
extract.sh
#!/bin/bash formats=(zip rar) commands=([zip]="unzip -u" [rar]="unrar -o- e") extraction_subdir='' torrentid=$1 torrentname=$2 torrentpath=$3 log() { logger -t deluge-extractarchives "$@" } log "Torrent complete: $@" cd "${torrentpath}" ...
Determining and Clearing Container Disk Usage in Overlay2
Show disk usage using docker df: docker system df Should output similar to below: TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 23 22 11.15GB ...