|
|
|
|
|
by Thorrez
1483 days ago
|
|
>Actual localhost traffic that never leaves your machine Unless you run ssh servera -L 8080:serverb:80 I sometimes do this if there's a firewalled serverb that I can't access that's running a webserver, and a non-firewalled servera that I have ssh access and can access serverb. Then you can open http://localhost in your browser and talk to serverb. If you want HTTPS to work, then ideally you'll map serverb to 127.0.0.1 in your /etc/hosts so that its HTTPS certificate matches the host, or use --host-resolver-rules="MAP serverb 127.0.0.1" as a Chrome commandline flag. Of course then you're no longer using localhost in the host. |
|
that data wont be leaving my subnet if at all anything more so whats the threat model for a local only service?
also, i am not talking about "critical infra"