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
| #!/usr/bin/perl | |
| # | |
| # AGI connector with OTRS | |
| # | |
| # Written by: Kiriru Trofimov <kiriru.trofimov@gmail.com> | |
| # | |
| #initialize | |
| use Asterisk::AGI; | |
| use SOAP::Lite; |
| param( | |
| [string]$id, | |
| [string]$message | |
| ) | |
| $bot_token = "token" | |
| $uri = "https://api.telegram.org/bot$bot_token/sendMessage" | |
| Invoke-WebRequest -Method Post -Uri $uri -ContentType "application/json;charset=utf-8" -Body (ConvertTo-Json -Compress -InputObject @{chat_id=$id; text=$message}) |
| # Put your custom commands here that should be executed once | |
| # the system init finished. By default this file does nothing. | |
| # http://paul.is-a-geek.org/2015/06/dns-based-adblock-using-openwrt-opendns-and-dnsmasq/ | |
| #!/bin/sh | |
| #Block ads, malware, etc. | |
| logger -t "adblock" -s 'Starting adblock setup...' | |
| #Delete the old adblock_hosts to make room for the updates | |
| rm /tmp/adblock_hosts |
| #!/bin/bash | |
| PROJECT="$1" | |
| TRACKER="$2" | |
| STATUS="$3" | |
| PROJECT_ID="$4" | |
| SUBJECT="$5" | |
| PRIORITY_ID="$6" | |
| curl -H 'X-Redmine-API-Key: <api-key>' \ | |
| -H 'Content-Type: application/json' \ |
| <?xml version="1.0" encoding="utf-8"?> | |
| <unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="specialize"> | |
| <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <AutoLogon> | |
| <Password> | |
| <Value>admin</Value> | |
| <PlainText>true</PlainText> | |
| </Password> | |
| <Enabled>true</Enabled> |
| April 2017 | |
| Skype For Business 2015 Server | |
| http://care.dlservice.microsoft.com/dl/download/9/3/4/934A5259-809B-4E36-BD2C-37DEF262C20A/SfB-E-9319.0-ruRU.ISO | |
| Windows 2016 HyperV Server | |
| http://care.dlservice.microsoft.com/dl/download/0/9/0/090CFA39-E9A3-4711-97DC-17E13723236F/14393.0.161119-1705.RS1_REFRESH_SERVERHYPERCORE_OEM_X64FRE_RU-RU.ISO | |
| Windows 2016 Server Essentials | |
| http://care.dlservice.microsoft.com/dl/download/9/3/A/93A216B3-927A-47B1-ADDA-574E02F7B371/14393.0.161119-1705.RS1_REFRESH_SERVERESSENTIALS_OEM_X64FRE_RU-RU.ISO |
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
| Import-CSV -delimiter "," c:\Temp\users.csv | foreach { | |
| New-ADUser -SamAccountName $_.SamAccountName -GivenName $_.GivenName -Surname $_.Surname -Name $_.Name ` | |
| -Path "DC=domain,DC=local" ` | |
| -AccountPassword (ConvertTo-SecureString -AsPlainText $_.Password -Force) -Enabled $true -PasswordNeverExpires $true -Description $_.description -DisplayName $_.DisplayName -userPrincipalName $_.userPrincipalName | |
| } |
| $temp = get-wmiobject -namespace root\OpenHardwareMonitor -query 'select Value from Sensor WHERE Identifier LIKE "/intelcpu/0/temperature/0"' | |
| echo $temp.value |
| @echo off | |
| set ip_address_string="IPv4" | |
| rem Uncomment the following line when using Windows 7 or Windows 8 / 8.1 (with removing "rem")! | |
| rem set ip_address_string="IPv4 Address" | |
| for /f "usebackq tokens=2 delims=:" %%f in (`ipconfig ^| findstr /c:%ip_address_string%`) do ( | |
| echo Your IP Address is: %%f | |
| powershell send_telegram.ps1 -chat_id CHAT_ID -text 'Greetings for %computername% with ip %%f' | |
| goto :eof | |
| ) |