SSH Port Forwarding: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
No edit summary
Line 19: Line 19:
==Remote Forwarding==
==Remote Forwarding==
<code>nano /etc/ssh/sshd_config</code>
<code>nano /etc/ssh/sshd_config</code>
GatewayPorts no|yes| clientspecified
<source lang="ini" highlight="3" start="86" line>
<source lang="ini" highlight="3" start="86" line>
#AllowAgentForwarding yes
#AllowAgentForwarding yes
#AllowTcpForwarding yes
#AllowTcpForwarding yes
GatewayPorts yes
GatewayPorts clientspecified
X11Forwarding yes
X11Forwarding yes
#X11DisplayOffset 10
#X11DisplayOffset 10
Line 30: Line 33:
#PrintLastLog yes
#PrintLastLog yes
#TCPKeepAlive yes
#TCPKeepAlive yes
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
#PermitTunnel no
#ChrootDirectory none
#VersionAddendum none
</source>
</source>



Revision as of 07:00, 30 May 2020

Local Forwarding

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

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

References