Windows VPN Server

In this guide we will show you how to setup a Windows VPN Server. In this example we will be using Server 2016 but this should apply to all recent Windows Server versions. 1). Open TCP port 1723 and allow GRE in your firewall 2). Login to the Server with RDP 3). Go to Server…

Configuring 10GB on IONOS

In this guide we will walk through the process on how to enable a 10GB connection on a IONOS Server. Before we begin you must be made aware of the following limitations: Currently this is only possible on High-End Dedicated Servers such as the XXL. This is currently intended for internal traffic between Dedicated Servers…

Changing the filesystem from ext to xfs on a Cloud Server

In this guide you will convert your filesystem from ext3/4 to xfs. Please be sure to have another server or host to store your backup file to during this process. 1). Reboot to rescue2). mount /dev/vg00/lv01 /mnt/3). tar -czvf /mnt/backup.tar.gz /mnt/4). scp /mnt/backup.tar.gz root@74.208.1.1:/5). umount /mnt6). mkfs.xfs -f /dev/mapper/vg00-lv017). mount /dev/vg00/lv01 /mnt8). cd /mnt9). scp…

Configure Static IP for Centos 7

How to configure your default IP as static on Centos 7. You will need to SSH into the server, and change directory to /etc/sysconfig/network-scripts/ You will need to edit the ifcfg-eth0 file. Keep in mind that your NIC device may have a different name. Check ifconfig before moving forward. Before editing make sure you make…