-
Notifications
You must be signed in to change notification settings - Fork 0
9.1 VPN with SSH
💡SSH allows you to create a remote port forwarding tunnel such that connections to a local port on say traveler will traverse an ssh tunnel from traveler to jump and then be forwarded to a system of your choice, say mgmt02.
List out any commands that were used or found to be helpful during the process.
-
ssh and firewall commands
-
ssh keygen
Document any notes that were taken while working on the assignment.
DMZ-2-LAN
action accept
description RDP
destination {
address 172.16.200.11
port 3389
}
protocol tcp
LAN-2-MGMT
action accept
destination {
address 172.16.200.11
port 3389
}
protocol tcp
ssh -N -L 13389:172.16.200.11:3389 david-jump@10.0.17.115 -i .\ssh-keys -v
**List out any issues that were encountered while working on the assignment. **
Correcting the final SSH command. This was solved with mainly trial and error as well as referring to the man pages for tags.
If any issues were solved, list out the resolutions for each problem.
N/A
List out any questions that arose while working on the assignment.
N/A