I have access to a jump off server via ssh (i don’t have root privileges), from the jump off server i can access the services that i need to use using curl, so i know that access from the server is ok.
I want to access these services locally, im using xcode for an iOS app and through the simulator i need these services to work with my app. Is there a way of using the remote session’s internet access from my local machine over ssh so i can make this work?
is this possible using ssh as a sort of proxy?
You can tunnel non-privileged ports via SSH even if you dont have root access.
For example, if you wanted to connect to google.com on port 80 via your proxy.
Then navigate in your browser to “http://localhost:8080/” which gets tunneled to “google.com:80”. You can specify the -L switch multiple times for more port forwards.