SSH Port Forwarding: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 1: Line 1:
==Local Forwarding==
==Local Forwarding==
  '''Python Flask'''
  '''Python Flask'''
  ssh -L 5000:localhost:5000 [email protected]
  ssh [email protected] -L 5000:localhost:5000
  http://localhost:5000/
  http://localhost:5000/


  '''RabbitMQ'''
  '''RabbitMQ'''
  ssh -L 15672:localhost:15672 [email protected]
  ssh [email protected] -L 15672:localhost:15672
  http://localhost:15672/
  http://localhost:15672/
  username: guest
  username: guest
Line 11: Line 11:


  '''Node Red'''
  '''Node Red'''
  ssh -L 1880:localhost:1880 [email protected]
  ssh [email protected] -L 1880:localhost:1880
  http://localhost:1880/
  http://localhost:1880/


  '''Mosquitto'''
  '''Mosquitto'''
  ssh -L 1883:localhost:1883 [email protected]
  ssh [email protected] -L 1883:localhost:1883


==Remote Forwarding==
==Remote Forwarding==

Revision as of 08:28, 30 May 2020

Local Forwarding

Python Flask
ssh [email protected] -L 5000:localhost:5000
http://localhost:5000/
RabbitMQ
ssh [email protected] -L 15672:localhost:15672
http://localhost:15672/
username: guest
password: guest
Node Red
ssh [email protected] -L 1880:localhost:1880
http://localhost:1880/
Mosquitto
ssh [email protected] -L 1883:localhost:1883

Remote Forwarding

nano /etc/ssh/sshd_config

GatewayPorts no|yes| clientspecified
#AllowAgentForwarding yes
AllowTcpForwarding yes
GatewayPorts clientspecified
X11Forwarding yes
#X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
PrintMotd no
#PrintLastLog yes
#TCPKeepAlive yes
Match User pi     
    AllowTcpForwarding yes
    GatewayPorts yes
systemctl restart sshd
service sshd restart
ssh [email protected] -R 10.19.83.10:80:cdn.chorke.org:1983
ssh [email protected] -R 10.19.83.10:80:localhost:1983
ssh [email protected] -R 10.19.83.10:80:0.0.0.0:1983
ssh [email protected] -R 10.19.83.10:80::1983
ssh [email protected] -R localhost:80::1983
ssh [email protected] -R 80:1983
ssh [email protected] -R 80

References