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

Upgrade Virtual Hardware Version in VMM

The following script will upgrade all guest virtual machines from a lower version to the…

PortQuery GUI Version

It's always a good idea to verify that there's nothing on the network and application…

PowerShell: Quick Snippet to Remove Virtual Machine Snapshots in VMM

$vmNames=@( 'MACHINE1', 'MACHINE2' ) foreach($vmName in $vmNames){ $checkpoint = Get-SCVMCheckpoint -VM $vmName if($checkpoint){$checkpoint|%{Remove-SCVMCheckpoint -VMCheckpoint $_…