commit 5b3261bd562dabb512dd21c64d8942951dedd179 parent c92726bd4fc64c02f5c6b46e14c0093a172d39f8 Author: pyratebeard <root@pyratebeard.net> Date: Sun, 25 Nov 2018 16:12:40 +0000 mosh page added Diffstat:
A | technology/communication/mosh.md | | | 26 | ++++++++++++++++++++++++++ |
1 file changed, 26 insertions(+), 0 deletions(-)
diff --git a/technology/communication/mosh.md b/technology/communication/mosh.md @@ -0,0 +1,26 @@ +# mosh + +_mosh must be installed on client and server_ + +## install +``` +yum install mosh + +apt-get install mosh +``` + +## usage +on server allow port through firewall +``` +firewall-cmd --permanent --allow-port=60001/udp +``` + +on client +``` +mosh user@host +``` + +if ssh is listening on different port +``` +mosh --ssh="ssh -p 22666" user@host +```