virtualcenter


Our IT journal

Google Suite para Educación – Introducción, relevamientos y primeros pasos para dominio EDU.AR Argentina – Parte I

Armamos esta guía con la finalidad de poder ayudar a otras instituciones del país que tengan problemas para iniciar el trámite o que no sepan que como institución educativa, cuentan con toda la suite de Google de manera totalmente gratuita. Se divide en cinco partes: Google Suite para Educación – Introducción, relevamientos y primeros pasos para dominio EDU.AR Argentina – … Read More


Google Suite para Educación – Configuración básica del tenant MX, SPF y DKIM – Parte II

Ya con el dominio edu.ar para la institución listo, vamos a crear un tenant en Google Suite.   Vamos al siguiente sitio: Google Suite For Education Hacemos click en “Registrate en G Suite” y procedemos a llenar el formulario con la información que tenemos del paso anterior a esta guia. Si la escuela todavía no tiene una pagina web, deje … Read More


Google Suite para Educación – Configuración Organizacional, carga de usuarios y grupos – Parte III

Unidad Organizacional (OU) Procedemos a crear las unidades organizacionales de la institucion (OU) basandonos en los departamentos que tenga la misma. Recomendamos utilizar una jerarquia alineada con los departamentos: Administracion Equipo de Conduccion Alumnos 2020 1 2 3 Profesores Exactas Talleres Etc. Definir estas OUs nos ayudara mas adelante a poder habilitar o deshabilitar servicios basados en las mismas, y … Read More


Google Suite para Educación – Configuración de Classrooms – Parte IV

Google Suite permite configurar varias partes de Classroom: En primer lugar, si se permitirá el acceso a participantes externos a las clases. Si los alumnos no tienen correo institucional, deberá cambiar esto ya que viene cerrado por default. Editar los permisos para quien pueda crear clases, si profesores verificados o profesores sin verificar Existe el grupo classroom_teachers@ que nuclea a … Read More


Google Suite para Educación – Configuración Complementaria – Parte V

Ya tenemos nuestro tenant configurado, ahora pasaremos a medidas adicionales de seguridad.   Rol de seguridad – Altas y bajas de usuarios   Completa la implementación, necesitaremos a alguien que se encargue de las altas de usuarios de ahora en adelante, por lo que una vez que tengan un recurso podamos darle permisos apropiados. Crearemos un nuevo rol de seguridad … Read More


Random reboots with Dell 14th generation servers CPU0000 PWR2270

If you are experiencing issues with your Dell server, and in the iDRAC logs you are receiving these errors: CPU0000 Internal error has occurred check for additional logs PWR2270 The Intel Management Engine has encountered a Health Event   It’s caused by the power states on the BIOS configuration of the servers. This can occurr regardless of the hypervisor or … Read More


Keep-alive VPN on Windows using PowerShell

Having to rely on Windows VPNs sometimes can be tricky, especially if the VPN tunnel times out. We can use this script for monitoring the tunnel and reconnecting automatically whenever it goes down. We are using the password for the VPN encrypted as seen on this post. $ip = “192.168.5.1” $result = gwmi -query “SELECT * FROM Win32_PingStatus WHERE Address … Read More


Connecting to AWS CLI using MFA Authentication

Sometimes you may need to connect to AWS environments with MFA enforced using AWS CLI. If you don´t authenticate with MFA, you got high probabilities to obtain a denied access. With this process, you will be able to authenticate with MFA over CLI. 1-Connect to AWS CLI. >$ aws configure >AWS Access Key ID: Your access key >AWS Secret Access … Read More


Configuring NTP on Windows

This will work for most Windows releases, it will force the OS to update its time sync against an NTP server. Run the following commands on a Powershell window:   w32tm /config /manualpeerlist:time.nist.gov /syncfromflags:MANUAL Stop-Service w32time Start-Service w32time After running those commands, force the sync:   w32tm /resync Check w32tm status: w32tm /query /status  


Dell iDRAC Network connection has dropped

After the latest Java updates you may have seen this message “Network connection has dropped” whenever trying to use viewer.jnlp Go to your Java release lib folder, and comment/change the following lines on your java.security file jdk.tls.disabledAlgorithms=SSLv3, RC4, MD5withRSA, DH keySize < 1024, \ EC keySize < 224, DES40_CBC, RC4_40 This issue is caused by Java disabling 3DES_EDE_CBC – after making … Read More