Skip to content

Instantly share code, notes, and snippets.

@Nomenator
Nomenator / edgerouter_lite_openvpn.md
Last active September 3, 2024 03:35 — forked from ammgws/edgerouter_lite_openvpn.md
Notes on setting up OpenVPN on Edgerouter Lite

My notes on how I setup OpenVPN server on Edgerouter Lite. Based mostly on this guide from openVPN wiki. This guide assumes easyrsa3 is being used, otherwise substitute whatever the easyrsa2 versions are for the commands below.

This guide will use 3 different machines.

A Public Key Infrastructure (PKI) will be created on each machine:

    1. Server - openVPN server (Edgerouter in this case).
    1. Client(s) - the device(s) you will be connecting from.
    1. CA Server - used to generate and sign certificates for server and clients to use.
@Nomenator
Nomenator / azureDeployMultipleResourceGroups.json
Created March 6, 2020 15:39
Deploy multiple resource grops in Azure
{
"$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"rgNames": {
"type": "array"
},
"rgLocation": {
"type": "string"
}