Jump servers


Scenario:

You are not able to connect to a host, you can use aws etc to jump servers to access the sites/endpoints.

Solution:

  • Open PuTTY
  • Session -> Create new (amazon core os host name) -> Host Name [amazon host name] -> Save
  • Session -> Select: amazon -> Load -> Left nav -> SSH -> Tunnels
  • Add Source port & Destination combinations (IIS should not have any site running on 80/443, else stop that), e.g.:
    • 5601 , 10.20.20.20:5601
    • 443 , 10.20.20.20:443
    • 80 , 10.20.20.20:80
  • Go to host file (as administrator), add entries for site with i/p: 10.20.20.20 replaced with 127.01.0.1 -> Save.
  • PuTTY -> Session -> select: amazon -> double click
  • Provide login & password

Now you should be able to navigate to endpoints as before, this is jumping servers.

No comments:

Post a Comment

Move Github Sub Repository back to main repo

 -- delete .gitmodules git rm --cached MyProject/Core git commit -m 'Remove myproject_core submodule' rm -rf MyProject/Core git remo...