Home
Pure Storage
Cloud
VMware
Categories
Tags
Series
Certifications
About
  • Using UCS PowerTool to Configure Syslog Servers

    Mar 14, 2016 Cisco UCS Syslog Powershell
    Share on:

    Time for more UCS Scripting! This time to configure Syslog. The script is pretty straightforward, but nice to have to easily set up Syslog across multiple UCS domains.

    Pre-Requsites

    • UCS Powertool

    Link to Script

    • Set-UcsSyslog.ps1

    Preparing to Execute the Script

    The script is pretty straight forward, just need to define a few variables seen below and then you execute the script. I will walk you through the process.

     1# UCS PowerTool Script that to set Syslog
     2# @davidstamen
     3# http://davidstamen.com
     4
     5#Define Variables
     6$cred = Get-Credential
     7$domains = …

    Read More
  • Using UCS PowerTool To Set SNMP Configuration

    Mar 1, 2016 Cisco UCS SNMP Powershell
    Share on:

    Time for more UCS Scripting! This time to enable SNMP. The script is pretty straightforward, but nice to have to easily set up SNMP across multiple UCS domains.

    Pre-Requsites

    • UCS Powertool

    Link to Script

    • Set-UcsSnmpConfiguration.ps1

    Preparing to Execute the Script

    The script is pretty straight forward, just need to define a few variables seen below and then you execute the script. I will walk you through the process.

     1#Define Variables
     2$cred = Get-Credential
     3$domains = "ucs01.lab.local","ucs02.lab.local"
     4$Descr = "SNMP config for UCS"
     5$AdminState = …

    Read More
  • Using Ansible to Create Cisco ACI Filters

    Feb 3, 2016 Ansible Cisco ACI
    Share on:

    In the midst of rolling out Cisco ACI, we have a need to automation creation of filters to apply to contracts. I tried to use the ACI-PowerTool for this task, however it doesnt seem to work with the newer code we are on. So I went back and attempted to use the ansible modules and it worked flawlessly, below is a sample playbook that will create a filter and add the associated filter entries. The below example are the required ports for Horizon View.

    Read More
  • Using UCS PowerTool To Set Equipment Labels

    Jan 15, 2016 Cisco UCS Powershell
    Share on:

    For conformity, we like to set the UCS Equipment labels to match the Service Profile Name. This allows us to match it quickly without having to dig down into the assigned profile. This script will set the UsrLbl and Name fields on the equipment tab to match the name of the Service Profile.

    Pre-Requsites

    • UCS Powertool

    Link to Script

    • Set-UCSEquipmentLabel.ps1

    Preparing to Execute the Script

    The script is pretty straight forward, just need to define a few variables seen below and then you execute the script. I will walk you through the process.

    Read More
  • Using UCS PowerTool To Generate Tech Supports

    Jan 14, 2016 Cisco UCS Powershell
    Share on:

    Automation, Automation, Automation! I had to download some support bundles for every chassis in our multiple zones. Instead of manually going through the GUI, I figured why not script it! This script will connect to each UCS domain and automatically generate a support bundle and download it for each chassis.

    Pre-Requsites

    • UCS Powertool

    Link to Script

    • Create-UCSTechSupport.ps1

    Preparing to Execute the Script

    The script is pretty straight forward, just need to define a few variables seen below and then you execute the script. I will walk you through the process.

    Read More
  • Using UCS PowerTool To Upload UCS Firmware

    Jan 11, 2016 Cisco UCS Powershell
    Share on:

    It’s patch time! That means time to upload the firmware bundles to all my UCS domains. Instead of doing it manually I figured i would create a quick script to do that for me.

    Pre-Requsites

    • UCS Powertool

    Link to Script

    • UploadUCSFirmware.ps1

    Preparing to Execute the Script

    The script is pretty straight forward, just need to define a few variables seen below and then you execute the script. I will walk you through the process.

    Read More
  • Using UCS PowerTool To Configure UCS Policy Backup and Export

    Dec 11, 2015 Cisco UCS Powershell
    Share on:

    Im finally getting to dive back in to working with UCS. My latest task with my project of configuring 9 UCS Domains, was configuring the Policy Backup and Export. See below on how to automate this process!

    Pre-Requsites

    • UCS Powertool

    Link to Script

    • Set-UCSPolicyBackupandExport.ps1

    Preparing to Execute the Script

    The script is pretty straight forward, just need to define a few variables seen below and then you execute the script. I will walk you through the process.

    Read More
  • Using UCS PowerTool To Configure UCS Certificates

    Dec 10, 2015 Cisco UCS Powershell
    Share on:

    Im finally getting to dive back in to working with UCS. My latest task with my project of configuring 9 UCS Domains, was swapping out certificates. The first few I did via the GUI, and I thought can this be scripted? Well the answer is yes! See below for information on executing the script.

    Pre-Requsites

    • UCS Powertool

    Link to Script

    • AddUCSCert.ps1

    Preparing to Execute the Script

    The script is pretty straight forward, just need to define a few variables seen below and then you execute the script. I will walk you through the process.

    Read More
  • Configuring Multiple UCS VLAN's

    Nov 23, 2015 Cisco UCS Networking
    Share on:

    We are currently working on some Cisco ACI Integration and wanted to add a large VLAN Pool to a UCS Configuration.

    Since currently Cisco UCS does not allow selecting multiple VLAN’s easily when adding to a VLAN Group or vNIC Template, we now have a pretty decent script that will do it for you.

    The script can be found here.

     1# PowerCLI Script for adding VLAN to VLAN Group and vNIC Template
     2# @davidstamen
     3# http://davidstamen.com
     4
     5#Define Variables
     6$cred = Get-Credential
     7$ucs = "ucs01"
     8$startvlan = "100"
     9$endvlan = "150"
    10$vnictemplate = …

    Read More
  • Cisco UCS and Native VLAN Tagging

    Apr 29, 2014 Cisco UCS
    Share on:

    Building out some new servers today I came across an issue where the servers would have no network connectivity even though the vNICs were properly tagged and assign a VLAN ID. Upon further research, I noticed that “Native VLAN” was not selected. This is a must for any operating system that does not do VLAN Tagging such as ESXi.

    So remember to set the VLAN to Native if using an operating system that does not support VLAN tagging!

    Read More
a blog about virtualization, storage and stuff

Recent Posts

  • Unlocking Performance Insights: Using resxtop to Monitor Your Azure VMware Solution Environment
  • Navigating the Azure Cloud: Key Considerations for Strengthening Infrastructure Security with Azure Locks
  • The Power of PowerShell: Calculating Azure VMware Solution (AVS) Costs
  • Navigating the Azure Cloud: Key Considerations for Azure VMware Solution (AVS)
  • Navigating the Azure Cloud: Key Considerations for Harnessing DNS with Azure Private Endpoints
  • Using Bicep to Deploy a Microsoft SQL on Azure VM with Cloud Block Store Volumes
  • Using Bicep to Deploy an Azure Virtual Machine
  • Using CloudFormation to Manage EC2 in AWS

Copyright ©  DAVIDSTAMEN. All Rights Reserved.      Privacy Policy