Posted On March 11, 2021

Installing IBM VPN Client

kimconnect 0 comments
blog.KimConnect.com >> Codes , Linux , Networking >> Installing IBM VPN Client

On a Linux Machine

# Install VPN Client
shellScript=https://support.arraynetworks.net/prx/001/http/supportportal.arraynetworks.net/downloads/pkg_9_4_0_385/MP_Linux_1.2.9/MotionPro_Linux_Ubuntu_x64_build-8.sh
cd Desktop
wget $shellScript
sudo ./MotionPro_Linux_Ubuntu_x64_build-8.sh

# Start VPN daemon
sudo /usr/bin/vpnd

# Connecting
remoteHost=vpnserver.kimconnect.com
username=adminguy
password=PASSWORDHERE
sudo /usr/bin/MotionPro --host "$remoteHost"

# Stopping the VPN daemon
sudo pkill vpnd

On a Windows Machine

# Download
$fileUrl='https://support.arraynetworks.net/prx/000/http/supportportal.arraynetworks.net/downloads/pkg_9_4_0_327/SSLVPN_9.0.1.115/ArraySSLVPNSetup.msi'
$outFile='C:\Temp\ArraySSLVPNSetup.msi'
Invoke-WebRequest -Uri $fileUrl -OutFile $outFile

# Install - this doesn't work as of this writing
$dateStamp = get-date -Format yyyyMMddTHHmmss
$logFile = '{0}-{1}.log' -f $outFile,$dateStamp
$MSIArguments = @(
    "/i"
    ('"{0}"' -f $file.fullname)
    "/qn"
    "/norestart"
    "/L*v"
    $logFile
)
Start-Process "msiexec.exe" -ArgumentList $MSIArguments -Wait -NoNewWindow

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Use DISM To Install Windows Features

Deployment Image Servicing and Management (DISM.exe) is a command-line tool that can be used to…

PowerShell: Find Duplicate Mac Addresses of Guest VMs in Virtual Machine Manager

Here's a quick snippet to check whether you have any duplicate mac addresses on existing…

PowerShell: Search for Failed Logins on Primary Domain Controller

# Quick Script to search for failed logins$daysLimit=7$userName="Bruce"$todaysDate= Get-date$pdc = (Get-ADDomain).PDCEmulator #$allDCs = ((Get-ADForest).Domains |…