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
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
| # This example shows how to use keras TensorBoard callback | |
| # with model.train_on_batch | |
| import tensorflow.keras as keras | |
| # Setup the model | |
| model = keras.models.Sequential() | |
| model.add(...) # Add your layers | |
| model.compile(...) # Compile as usual |
| import numpy as np | |
| import tensorflow as tf | |
| from keras.callbacks import TensorBoard | |
| from keras.layers import Input, Dense | |
| from keras.models import Model | |
| def write_log(callback, names, logs, batch_no): | |
| for name, value in zip(names, logs): | |
| summary = tf.Summary() |
| sudo su | |
| # Java | |
| yum -y install java-1.8.0-openjdk-devel | |
| # Build Esentials (minimal) | |
| yum -y install gcc gcc-c++ kernel-devel make automake autoconf swig git unzip libtool binutils | |
| # Extra Packages for Enterprise Linux (EPEL) (for pip, zeromq3) | |
| yum -y install epel-release |