Uncategorized
List VLANs and VLAN Groups from Cisco UCS Manager using PowerShell
1) Download and install Cisco UCS Powertool suite (in this example i will be using v2.4.1.3) 2) Install UCS Manager Module Install-Module -Name Cisco.UCSManager -RequiredVersion 2.4.1.3 3) Start Powertool suite and list modules: Get-Command -module Cisco.UCSManager | more 4) Connect to the UCS Manager Connect-Ucs -Name {10.10.10.1} 5) List VLANs and their VLAN Groups Get-UcsFabricNetGroup […]
Install and Enable SNMP on Centos 6
1) Check you have net-snmp-utils installed # yum list installed | grep net-snmp If not then install them: # yum install net-snmp-utils 2) Configure SNMP by editing the snmpd configuration file. Firstly take a backup of the current file # mv /etc/snmp/snmpd.conf /etc/snmp/OLD-snmpd.conf Now edit the new file. # vi /etc/snmp/snmpd.conf rocommunity public 172.17.19.100 […]