These are my notes for connecting to a meraki client vpn from ubuntu 16.04. This configuration assumes you are using a psk for the ipsec auth.
Install the following packages:
apt-get install -y strongswan xl2tpd
Configure strong swan
{ | |
"info": { | |
"_postman_id": "ac491bb7-de4a-4258-b717-ba80070f50fe", | |
"name": "Magento", | |
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
}, | |
"item": [ | |
{ | |
"name": "Mine / Me", | |
"item": [ |
#!/usr/bin/env bash | |
# Old approach - working but | |
# the bash approach offers | |
# greater mobility | |
#GLOBIGNORE=$(paste -s -d : ./config/ignore.list) | |
#rm -Rf -- {*,.*} | |
# new line is mandatory as allows |
#!/bin/bash | |
# Bash script to install ffmpeg | |
# create default directory | |
mkdir ~/ffmpeg_build | |
mkdir ~/ffmpeg_sources | |
#default tools |
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
<?xml version="1.0"?> | |
<!-- | |
[Your site name] XML overrides | |
--> | |
<layout version="0.1.0"> | |
<!-- updating top.links to add class names --> | |
<!-- Section 1: Removing Current Links --> | |
<default> | |
<reference name="top.links"> | |
<!-- Removes 'My Account' link --> |
#!/bin/bash | |
# | |
# Found on StackOverflow: | |
# http://stackoverflow.com/a/9304264/3765 | |
# | |
if [ ! -f ./app/etc/local.xml.template ]; then | |
echo "-- ERROR" | |
echo "-- This doesn't look like a Magento install. Please make sure" | |
echo "-- that you are running this from the Magento main doc root dir" |
<?php | |
/** @var Mage_Catalog_Helper_Product_Flat $helper */ | |
$process = Mage::helper('catalog/product_flat')->getProcess(); | |
$status = $process->getStatus(); | |
$process->setStatus(Mage_Index_Model_Process::STATUS_RUNNING); | |
/** @var $collection Mage_Catalog_Model_Resource_Product_Collection */ | |
$collection = Mage::getResourceModel('catalog/product_collection'); // Use EAV tables | |
// ... custom stuff |
These are my notes for connecting to a meraki client vpn from ubuntu 16.04. This configuration assumes you are using a psk for the ipsec auth.
Install the following packages:
apt-get install -y strongswan xl2tpd
Configure strong swan