Blog en espanol destinado a diferentes temas tecnicos principalmente en IT y Networking. Se desea cubrir Linux, DNS, DNSSEC, RPKI, BGP, Cisco, Programacion (Bash, Python, etc), Protocolos de Enrutamiento, Seguridad en Redes, VoIP.
sábado, 1 de enero de 2022
Microcuento de navidad de IPv4 e IPv6
miércoles, 29 de septiembre de 2021
domingo, 26 de septiembre de 2021
Solución: VBoxGuestAdditions.iso (VERR_PDM_MEDIA_LOCKED)
Situación:
Global spending on public cloud services is expected to grow 18.4% in 2021 to total $304.9 billion (Gartner).
sábado, 24 de julio de 2021
Solución: GNS3 - Private Vlan - non-operational - Cisco
Situación:
En resumen: no te funcionan las private VLAN en GNS3 (IOU - VIRL).
Solución:
Utiliza IOU i86bi-linux-l2-adventerprisek9-15.2d.bin
Test:
IOU3#show vlan private-vlan
Primary Secondary Type Ports
------- --------- ----------------- ------------------------------------------
500 501 community Et0/1, Et0/2, Et1/0
500 502 isolated Et0/0, Et0/3, Et1/0
Suerte!,
jueves, 1 de julio de 2021
Super sencillo script en python3 para optimizar las tablas de MYSQL
#!/usr/bin/python3.3
#The objetive of this script is to find all tables in a MYSQL DB and opmitize all of them
import dbconnect
import time
from datetime import datetime
## // VARIABLE DECLARATION ##//
startTime = datetime.now()
conn = dbconnect.dbconnect()
conn.autocommit(True)
cur = conn.cursor()
print ("Starting time: ", startTime)
SQLQUERY=("SHOW TABLES") #Find every table in the DB
cur.execute(SQLQUERY)
tables = cur.fetchall()
if len(tables)>0: #Prevent there are not tables in the list
for table in tables: #For every table in the DB
try:
SQLQUERY="OPTIMIZE TABLE "+ table[0] #Construct the SQL QUERY
print (" Optimizing", table[0])
cur.execute(SQLQUERY)
except:
pass
print ("Script execution time:",datetime.now()-startTime)
print ("Ending time: ", datetime.now())
print ("******** ****** ")
Una mejora práctica en el Transporte DNS sobre UDP en IPv6
Por Hugo Salgado y Alejandro Acosta Introducción y planteamiento del problema En el presente documento queremos discutir sobre un draft (bor...
-
Debido al crecimiento moderado que ha tenido el presente blog se me ocurrió añadir/integrar las estadisticas de google analytics a mi blog. ...
-
Introduccion: En algunas ocasiones es necesario "bajar" o deshabilitar iptables en nuestro Linux, el procedimiento depende de...
-
Saludos, Lo primero que debemos de hacer para quitar el stacking entre los switches es desconectar los cables Stack que los unen.... Es buen...