FileWave Server Setup
What server type is best for me?
The first step to begin your FileWave Evaluation is to determine your FileWave Server hosting preference. FileWave offers both a Cloud-Hosted server and an on-premise virtualized server appliance for either Hyper-V or VMWare.
Cloud-Hosted Server
If you desire a FileWave Cloud-Hosted server and have not already received the login information, please request a Cloud-Hosted server from your dedicated FileWave SE and they will provide you with the server's Address, Username, and Password. The FileWave Cloud-Hosted Server will be a "production" server so that any progress you make during the evaluation will persist if you choose to purchase FileWave.
Please note that choosing a Cloud-Hosted Server may be an additional cost depending on the licensing structure selected at the time of your purchase. Also, to better manage the cost incurred by FileWave during your evaluation, your FileWave SE will discuss your organization's timeline to determine the best possible start date and expiration date for your evaluation. Thank you in advance for your understanding in regards to these matters.
Pros of FileWave's Cloud-Hosted Server
On-Premise Server
If you desire to host the FileWave Server on-premise by installing on a macOS machine or virtualizing our pre-built appliance in Hyper-V or VMWare, please continue to read the following section.
Requirements
Most steps required for an on-premise server will be in regards to your local network's infrastructure including virtual environment, DNS, and Firewall/Content Filter. If you do not have direct access to these systems, please coordinate with your Network Administrator or other qualified personnel before proceeding.
Before importing the FileWave Server virtual appliance we recommend setting aside a static IP and DNS name for it. This will make it easier to move the server to another IP in the future and possible to manage off-premise devices over the Internet. Although technically possible, it is highly unrecommended to only use an IP address to reference the FileWave Server so please configure a valid and potentially publicly-resolvable fully qualified domain name (FQDN) for the FileWave Server.
Note that the FQDN selected must be resolvable on all network segments you plan to manage the client devices from. If you want to manage devices both on and off your network then the same FQDN must be resolvable both on and off your network. Inside your LAN this FQDN will resolve to the internal IP address of your FileWave server. Externally that same FQDN will resolve to the public IP address of the internet router in front of the FileWave Server. With mobile devices like iPhones and iPads that have a high possibility of leaving your LAN, it is essential that they be able to access the FileWave Server at all times, especially when they are off-network.
Off-Premise device management via Internet
A static IP allows you to easily forward the ports used by the FileWave server to its internal IP on your LAN, ensuring that requests from client devices are still able to reach it even when they are off-network. The following ports must be forwarded to the FileWave Server. Some of the ports such as 20016 and 20446 are optional if IT staff will only be accessing the FileWave Admin while on the LAN. A full listing of FileWave ports and port diagrams are available here.
FileWave Server Installation
The FileWave Server can installed onto any macOS 10.13+ machine with minimum specs of 8GB RAM / 4 CPU or virtualized in either Hyper-V or VMWare using our pre-built virtual appliance based on CentOS. If virtualization is available, we highly recommend using our pre-built server appliance versus a macOS machine because of the flexibility to extend allotted server resources. When choosing a virtualization platform for your FileWave Server virtual appliance, we recommend a server platform such as vSphere or Hyper-V over a client platform like VMware Workstation/Fusion or VirtualBox. A VM server platform does not require that you be logged into a user session for the VM to be running. Also in the event the physical system hosting the VM server restarts the VMs hosted on it can also be configured start up automatically also.
Software Downloads
All software downloads outlined in the following steps can be found here. Please always select the latest version of FileWave unless instructed otherwise by your FileWave SE.
macOS
Hyper-V Linux Appliance Import
VMware ESXi Linux Appliance Import
VMware Fusion Linux Appliance Import
VMware Workstation Linux Appliance Import
VirtualBox Linux Appliance Import
Configuring the Linux Appliance Network Settings
Once you are done importing the FileWave Server Linux appliance, please power it on and configure the network settings using one of the guides below. Once the network settings have been configured, please create an internal DNS A-Record to set a fully qualified domain name (FQDN) for your FileWave Server that points to the Static IP Address configured below. If you plan on managing devices off-network, please ensure the FQDN is resolvable via the Internet and that you have the ability to obtain an SSL certificate that can protect your FQDN.
You will find two sections below, Command Line and Webmin GUI. Please select only one of the two sections based on your preference to configure the settings.
Please disregard this section if using a macOS FileWave Server as you will configure macOS System Preference to configure Static IP address.
Command Line
Access FileWave Server's Command Line Interface (CLI) via direct console access or SSH using the "root" user and password "filewave".
SSH into FileWave Server
ssh root@192.168.1.85
Change the FileWave Server's password and take note of it in a secure location. You will not see password being typed, press Enter when finished.
Change Password
passwd
Install "nano" text editor for easier modifications or use the pre-installed "vi" text editor.
Install nano
yum install -y nano
View current network settings obtained via DHCP and take note for next section.
IP address and Netmask
ifconfig
Gateway / Router
ip r
DNS Servers
less /etc/resolv.conf
Quit "less"
q
Set a Static IP address, Gateway, and Netmask for FileWave Server. You will change "BOOTPROTO" and add "IPADDR", "NETMASK" and "GATEWAY". Change values to match your network settings and leave all prior configuration the same.
Hyper-V
nano /etc/sysconfig/network-scripts/ifcfg-eth0
VMWare / Virtualbox
nano /etc/sysconfig/network-scripts/ifcfg-ens32
Required changes (use your network settings)
BOOTPROTO=none
IPADDR=192.168.1.85
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
Save and quit "nano"
Ctrl + X
y
Enter
Reboot the FileWave Server
Reboot FileWave Server
reboot
Verify DNS servers are valid.
DNS Servers
less /etc/resolv.conf
Quit "less"
q
If DNS server are not valid or not configured, add at least on DNS server.
Edit / Add DNS Servers
nano /etc/resolv.conf
Example "/etc/resolv.conf"
nameserver 8.8.8.8
Save and quit "nano"
Ctrl + X
y
Enter
Ping outside address to verify Internet access.
Ping Google.com
ping google.com
Change FileWave Server's timezone.
**List available timezones**
```
timedatectl list-timezones
```
**Set Timezone**
```
timedatectl set-timezone "America/Chicago"
```
**Install NTP**
```
yum install -y ntp
```
**Start and enable NTP**
```
systemctl start ntpd
systemctl enable ntpd
```
**Force manual sync of NTP**
```
systemctl stop ntpd
ntpd -gq
systemctl start ntpd
```
**Verify time and date**
```
date
```
Webmin GUI






