Grimoire-
Command
.es

GNU+Linux command memo

Redirect traffic from a machine to another

Rediriger le trafic d’une machine vers une autre. Pratique quand on a oublié de baisser le TTL de son enregistrement DNS avant un déménagement de serveurs

Usefull when you forgot to shorten the TTL of your DNS before moving a server.

From the machine where the traffic arrives :

# socat TCP4-LISTEN:443,reuseaddr,fork TCP4:destination.machine.tld:443

To check connexions in the channel :

# socat -d -d TCP4-LISTEN:443,reuseaddr,fork TCP4:destination.machine.tld:443

Content proposed by Taziden.