Author Archives: Kaven Gagnon

avatar

About Kaven Gagnon

System & Network Architect

JunOS : Alarm Management Ethernet Link Down

Having the red alarm led on but nothing is wrong with your JunOS powered Juniper device? First, look out what alarm is triggered by issuing the following command : show chassis alarm If absolutely nothing is really wrong, you will see the following alarm : Alarm time Class Description 2016-01-20 07:11:59 UTC Major Management Ethernet… Read More »

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