Skip to main content

Posts

Showing posts from July, 2012

How to Install RustDesk on Your Synology NAS

RustDesk is a remote desktop software, the open source TeamViewer / AnyDesk alternative. You have full control of your data, with no concerns about security since it only sends data to a server that you setup. You can use a public rendezvous/relay server or self-host one. In this step by step guide I will show you how to install RustDesk on your Synology NAS using Docker and DSM 7.2 I've based a significant amount of this guide on https://drfrankenstein.co.uk guides. First, Follow the following 4 guides: Step 0: Docker, Memory Recommendations and Limitations Step 1: Directory Setup Guide Step 2: Setting up a restricted Docker user Step 3: Setting up a Docker Bridge Network Following these guides will give you a nice Docker folder structure, a restricted user to run your containers on (this is more secure) and a dedicated network for your containers. Lets Begin First we need to set up some folders for RustDesk to save its configuration files and also where the Project will save th

Programming DHCP via NETSH

If you need to configure more than two subnets on a Windows 2008 R2 DHCP server (Or all versions later), doing via the GUI is a painful way to do it. Here's a simple cut and paste script that you can run via netsh that will make the subnets much quicker. Launch netsh from the command line, and paste this in: Replace 10.1.0.50 with your DHCP server, and 10.2.0.224 with your Scope's Network (check the subnet mask and the IP range)  Just repeat each section below for each subnet.  I find it easy to just use find and replace to make lots of these. Dhcp Server \\10.1.0.50 add scope 10.2.0.224 255.255.255.224 "Name of the Subnet" "Description of Subnet" Dhcp Server \\10.1.0.50 Scope 10.2.0.224 set state 1 Dhcp Server \\10.1.0.50 Scope 10.2.0.224 set delayoffer 0 # =============================================================== # Start Add Ipranges to the Scope 10.2.0.224, Server 10.1.0.50 # =============================