IOS : Extended VLAN(s) not allowed in current VTP mode

Having the following output message while trying to create a VLan outside higher than 1000 on your Cisco device? SWITCH-601(config)#vlan 2991 SWITCH-601(config-vlan)#end % Failed to create VLANs 2991 Extended VLAN(s) not allowed in current VTP mode. %Failed to commit extended VLAN(s) changes. This mean that you are running VTP mode 1 or 2, which only support… Read More »

Linux : Port forwarding with IPtables

Need to forward a custom port to an existing port on your Linux box? Simply use the following command as root : iptables -t nat -I PREROUTING –src 0/0 –dst 0.0.0.0/0 -p tcp –dport <port-to-forward> -j REDIRECT –to-ports <destination-port> Example : Assuming you want to forward port 1025 to port 587 : iptables -t nat -I PREROUTING… Read More »

Mac : Unable to negotiate with x.x.x.x port 22: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1

With the latest macOS Sierra 10.12 release, you might have observed issue connecting to servers or network devices running SSH. Please note that this article does not necessary apply or macOS, but any running OS with the latest OpenSSH v7. Because of the latest OpenSSH version, some older (legacy) encryption algorithm have been removed from… Read More »

Linux : How to setup client/server NFS on SuSE

This post will cover the complete installation and setup of a NFS client and server on SuSE Linux. By default, the system include the NFS client but not the server. First of all, make sure that NFS traffic is allowed if you are running any firewall on the client/server machine. You can achieve this through… Read More »

VMware : Basic ESXi commands

You will find below some basic and useful commands to operate a ESXi hypervisor from the command line. Put the host in maintenance mode (or leave maintenance mode) : esxcli –server localhost system maintenancemode set –enable <true | false> List all VMs registered on the host : vim-cmd vmsvc/getallvms Verify the power state of a… Read More »

Web : Updating ownCloud to version 8.1.9 was unsuccessful

Using ownCloud repo and encountered the following error while upgrading to version 8.1.9? Updating ownCloud to version 8.1.9, this may take a while. Set log level to debug – current level: “Warning” Turned on maintenance mode Checked database schema update Checked database schema update for apps Updated database Exception: App can’t be installed because it… Read More »

Category: Web

VMware : vCenter version and build number history

Here is a list below of version and build number for VMware vCenter Server product. I have no credit over it, it has been taken from virten.net Web site. Name Version Release Build Installer Version vCenter Server 6.0.0 Update 2 6.0 U2 2016-03-15 3634793 3634788 VMware vCenter Server 6.0 Update 1b 6.0 U1b 2016-01-7 3339083 3343019… Read More »