Categories
- Blog (1)
- Grandstream UCM (1)
- IP Telephony (45)
- KVM (1)
- Linux (54)
- Microsoft (5)
- Mikrotik (14)
- Network (16)
- Paloalto Firewall (1)
- Uncategorized (196)
- Vicidial (6)
- VMware (67)
-
Recent Posts
- Integrating VICIdial with CRM: Solving Custom Field and Data Sync Issues
- How to Remove +91 / 91 from Incoming Caller ID in VICIdial (Fix Lead Matching Issue)
- How to Retrieve VICIdial Admin Password from MySQL Database
- How to Manage KVM Virtual Machines on Ubuntu Server Using virsh
- Palo Alto UNAT Configuration – Step-by-Step Lab Guide (LAN → DMZ via WAN)
Author Archives: Gkhan
Extension information saved in Elastix
Extension information saved in Elastix cat /etc/asterisk/sip_additional.conf [root@pbx asterisk]# cat /etc/asterisk/sip_additional.conf ;——————————————————————————–; ; Do NOT edit this file as it is auto-generated by FreePBX. All modifications to ; ; this file must be done via the web gui. There … Continue reading
How to get vms, with their current ips, macaddresses, networkcard types
How to get vms, with their current ips, macaddresses, networkcard types Below are the script i got to get all VM name UUID, VLAN assigned, MAC address , IP address,Network card type. Its export in CSV . $reportedvms=New-Object System.Collections.ArrayList … Continue reading
Posted in Uncategorized
Leave a comment
VMware Datastores free space report PowerCLI
VMware Datastores free space report PowerCLI. Below script will give below report as used space and percentage of free space .
Posted in Uncategorized
Leave a comment
Cisco UCS PowerTool and scripts
Cisco UCS PowerTool and scripts Source Link :- https://communities.cisco.com/docs/DOC-60339
test.ps1 is not digitally signed. The script will not execute on the system
test.ps1 is not digitally signed. The script will not execute on the system The fix is to run Set-ExecutionPolicy and change the Execution Policy setting. Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
How to Configuring an NTP Time Server on ESXi PowerCLI
How to Configuring an NTP Time Server on ESXi PowerCLI If there are no NTP server configured Get-VMHost esx01 | Add-VMHostNtpServer -NtpServer ntpservername Or to first of all clear existing NTP server(s) then set the new one: Get-VMHost esx01 … Continue reading
How to check VMFS version & block sizes PowerCLI
How to check VMFS version & block sizes PowerCLI Get-Datastore | Get-View | Select-Object Name,@{N=”VMFS version”;E={$_.Info.Vmfs.Version}},@{N=”BlocksizeMB”;E={$_.Info.Vmfs.BlockSizeMB}} NameVMFS version BlocksizeMB —————- ———– TempDS 5.58 1 datastore1 5.54 1 datastore1 (3) 5.54 1 datastore1 (1) 5.54 1 datastore1 (4) 5.54 1 … Continue reading
Posted in Uncategorized
Leave a comment
How to get HBA information of all ESXi Hosts
How to get HBA information of all ESXi Hosts if you want to get all inventory of HBA cards from all ESXi hosts below are the script will give you below information ,which you require in SAN Zoning and SAN … Continue reading
How to get RDM information in VMware ESXi Hosts
How to get RDM information in VMware ESXi Hosts Below are the script i have tested to get all RDM information from Virtual machines in Esxi Hosts. It will check all VMs in your ESXi host or VCenter where you … Continue reading