Proxy Application Ports

Sometimes it is easier to debug remote application while connecting from your development environment. For this you can proxy any port from container to your local setup.

Port-forward

Port forward can be done using the CLI. You just need to specify device name or ID and port mapping

$ synpse device proxy <device_name> local_port:port_on_device

This works only with ports exposed to host network on the edge devices. See Application->Networking

Example:

synpse device proxy test-rpi4 1881:1880
forwarding port (local->remote) 1881 -> 1880

You can access your application locally on http://localhost:8081.

Last updated