SupportTrack
Today
Items
Projects
Time
Logs
Timesheet
CTO Time
Reports
Overview
Meeting Notes
Activity Summary
PMDS Activity Summary
Time by Category
Time by Item
Normalized Tracking
Taxonomy
Automation
PMDS
Templates
Knowledge Base
Wiki
Organigram
Servers
URLs
Firewall Rules
--:--
MAD
NY
--:--
· IN
--:--
⏱️
No tasks running
⏹️
Wiki
Back
Edit page
Comandos netcat
Title
Slug
Status
Draft
Verified
Needs Review
Context
No context
AOM
CommsNet
DS
ESB
FSS
GIS
HR
ICC Training
IPPC
MediaNet
Mission Pin Code
OpsData
Organization
OSM
Sage
UA Maps
UA Notifications
UN Base
UN Dashboard
Unite Aware
UN Vector Tiles
Categories
Application Info
Documentation
General
Known Issue
Procedures
Tshoot
Topics
Azure
CommsNet
Compass
Databases
DD Boost FS
Disk Space
Files
Gateways
HeidiSQL
iNeed
Keepass
Linux
MariaDB
MongoDB
MySQL
Network
Organization
PostgresSQL
PowerBI
Remote Desktop Manager
Replication
Service Desk
Setup
UA Notifications
UN Base
UNICC
Updates
WHO
Windows
Markdown
# Comandos netcat 1. Destino: ``` nc -l 192.168.3.45 8080 | mysql ``` 2. Origen: ``` mysqldump -A --ignore-database=information_schema --ignore-database=mysql --ignore-database=performance_schema | nc 192.168.3.45 8080202503260831 ``` Este comando transfiere un volcado de MySQL desde un origen a un destino a través de `netcat` (NC). ### **Descripción:** * **Destino:** Escucha en `192.168.3.45:8080` y redirige los datos recibidos a `mysql`, importando directamente el volcado. * **Origen:** Genera un `mysqldump` de todas las bases de datos excepto las del sistema y lo envía a `192.168.3.45:8080` mediante `netcat`. ### **Uso:** Sirve para transferir una copia de todas las bases de datos de un servidor MySQL a otro sin necesidad de crear un archivo intermedio. 💡 **Importante:** El destino debe estar escuchando antes de ejecutar el comando en el origen, de lo contrario, la conexión fallará.
Cancel
Save
Stop Timer
Activity comments