From 83f3524b9e0b6088a17a300b0db12f1ac83cca45 Mon Sep 17 00:00:00 2001 From: jorioux Date: Thu, 11 Apr 2019 16:25:18 -0400 Subject: [PATCH] release v1.3 --- F5-LTM-Helper.psd1 | 2 +- README.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/F5-LTM-Helper.psd1 b/F5-LTM-Helper.psd1 index 4651dde..41afa3a 100644 --- a/F5-LTM-Helper.psd1 +++ b/F5-LTM-Helper.psd1 @@ -12,7 +12,7 @@ RootModule = 'F5-LTM-Helper.psm1' # Version number of this module. -ModuleVersion = '1.2' +ModuleVersion = '1.3' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/README.md b/README.md index 73a757d..b52dd5c 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,22 @@ Install-Module F5-LTM-Helper #### PowerShell v4 and earlier Get [PowerShellGet Module](https://docs.microsoft.com/en-us/powershell/gallery/psget/get_psget_module) first. +Usage +- +```PowerShell +#To show status of all nodes in pool matching *eway_http* +Set-F5Node -Pool eway_http + +#To show status of all nodes matching *end*:80* +Set-F5Node end*:80 + +#To Sync active F5 to group +Set-F5Node -Sync + +#To disable the node matching *end02* in pool matching *end*, then Sync to group +Set-F5Node end02 -Pool endeca -Down -Sync +``` + Contributing - Any contributions are welcome and feel free to open issues.