-
Notifications
You must be signed in to change notification settings - Fork 5
/
Get-VPNStatus.ps1
117 lines (104 loc) · 3.07 KB
/
Get-VPNStatus.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
function Get-AnyConnectStatus() # {{{
{
[CmdletBinding()]
[OutputType([string])]
Param(
[Parameter(Mandatory=$false)]
[PSCustomObject] $VPNSession
)
Write-Verbose "Starting the AnyConnect cli"
$vpncli = New-Object System.Diagnostics.Process
$vpncli.StartInfo = New-Object System.Diagnostics.ProcessStartInfo(Get-AnyConnect)
$vpncli.StartInfo.Arguments = "state"
$vpncli.StartInfo.CreateNoWindow = $false
$vpncli.StartInfo.UseShellExecute = $false
$vpncli.StartInfo.RedirectStandardOutput = $true
$vpncli.StartInfo.RedirectStandardError = $true
$vpncli.Start() | Out-Null
$status = 'Unknown'
Write-Verbose "Reading its output"
for ($output = $vpncli.StandardOutput.ReadLine(); $output -ne $null; $output = $vpncli.StandardOutput.ReadLine())
{
Write-Debug $output
if ($output -match ' >> note: (.*)')
{
Write-Warning $matches[1]
$status = 'Note'
}
if ($output -match ' >> state: (.*)')
{
$status = $matches[1]
Write-Verbose $status
}
}
for ($output = $vpncli.StandardError.ReadLine(); $output -ne $null; $output = $vpncli.StandardError.ReadLine())
{
Write-Warning $output
}
return $status
} #}}}
<#
.SYNOPSIS
Gets the current status of a VPN Session or a Provider.
.DESCRIPTION
Gets the current status of a VPN Session or a Provider.
.NOTES
Only Cisco AnyConnect VPNs are supported as of now.
.PARAMETER Provider
The VPN Provider to use.
One of: AnyConnect
.PARAMETER VPNSession
The VPN session object returned by Connect-VPN.
.OUTPUTS
System.String
The current status of the VPN Session of the Provider.
With AnyConnect, the values are typically: Connected, Disconnected, Unknown.
.LINK
https://github.com/gildas/posh-vpn
.EXAMPLE
$session = Connect-VPN -Provider AnyConnect -ComputerName vpn.acme.com -Credentials (Get-Credential ACME\gildas)
Get-VPNStatus $session
Connected
Description
-----------
Gets the connection of a session
.EXAMPLE
Get-VPNStatus -Provider AnyConnect
Disconnected
Description
-----------
Gets the status of Cisco AnyConnect VPN
#>
function Get-VPNStatus() # {{{
{
[CmdletBinding(DefaultParameterSetName='Session')]
[OutputType([string])]
Param(
[Parameter(Position=1, ParameterSetName='Session', Mandatory=$true)]
[PSCustomObject] $VPNSession,
[Parameter(Position=1, ParameterSetName='Provider', Mandatory=$true)]
[ValidateSet('AnyConnect')]
[string] $Provider
)
switch($PSCmdlet.ParameterSetName)
{
'Session'
{
switch($VPNSession.Provider)
{
'AnyConnect' { Get-AnyConnectStatus @PSBoundParameters }
$null { Throw [System.ArgumentException] "VPNSession misses a Provider"; }
default { Throw "Unsupported VPN Provider: $VPNSession.Provider" }
}
}
'Provider'
{
$PSBoundParameters.Remove('Provider') | Out-Null
switch($Provider)
{
'AnyConnect' { Get-AnyConnectStatus @PSBoundParameters }
default { Throw "Unsupported VPN Provider: $VPNSession.Provider" }
}
}
}
} # }}}