Estou trabalhando em um projeto que envolve dois servidores. O servidor A é um VPS que executa o Ubuntu 14.04 com um endereço IP público. O servidor B está executando um serviço MJPG na porta 8080 e não possui um endereço IP público. Eu criei um túnel ssh reverso entre os dois servidores executando o seguinte comando no servidor B:
ssh <user>@serverA -N -R 8099:localhost:8080
O servidor A tem o apache em execução, que serve um site com a seguinte configuração (o vache apache padrão)
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
Eu modifiquei o arquivo encontrado em /var/www/html/index.html
da seguinte forma:
<img width=640 height=480 src="http://localhost:8099/?action=stream"/>
A configuração acima não está funcionando para mim. O fluxo não é carregado. Eu sou capaz de executar o seguinte comando no servidor A e obter um fluxo constante de dados:
curl localhost:8099/?action=stream
Mas, por algum motivo, o apache não veicula a imagem.
Se eu editar /etc/ssh/sshd_conf
e adicionar a linha GatewayPorts yes
, posso fazer com que o fluxo funcione alterando minha fonte de imagem para http://<server_A_public_ip>:8099/?action=stream
, mas isso expõe o fluxo ao público.
Eu também tentei alterar as diretivas User
e Group
em /etc/apache2/apache2.conf
para corresponderem a <user>
no comando ssh acima para que o apache seja iniciado como esse usuário. Mas ainda não vai.
Gostaria de poder ativar um túnel ssh entre serverA: 8099 < = > serverB: 8080, mas a porta 8099 só pode ser acessada pelo próprio servidor A. Ninguém deve poder acessar publicamente o fluxo por meio do URL http://<server_A_public_ip>:8099
Existe algo óbvio que estou perdendo aqui? Alguém tem outras idéias que possam me ajudar a descobrir qual é o meu problema?