Hello,
I've a Zabbix server and I would add a Zabbix Proxy for monitoring my AWS infrastructure. I would configure a ssh connection between the proxy and server with port forwarding. But that doesn't work...
zabbix-log:
Zabbix-proxy.conf:
command ssh:
Debuging ssh:
On my Zabbix-Server:
Thanks
I've a Zabbix server and I would add a Zabbix Proxy for monitoring my AWS infrastructure. I would configure a ssh connection between the proxy and server with port forwarding. But that doesn't work...
zabbix-log:
Code:
Unable to connect to the server [127.0.0.1]:10050 [*** Cannot connect to [127.0.0.1]:10050 [Connection refused]]
Code:
# This is config file for ZABBIX server process # To get more information about ZABBIX, # go http://www.zabbix.com ############ GENERAL PARAMETERS ################# # IP address (or hostname) of ZABBIX servers. Server=127.0.0.1 # Server port for sending active checks ServerPort=10050 # Unique hostname. Hostname=proxy
command ssh:
Code:
ssh -vvv -R 10050:localhost:10050 root@ip_router
Code:
Remote connections from LOCALHOST:10050 forwarded to local address localhost:10050
Code:
netstat -na | grep 10050 tcp 0 0 127.0.0.1:10050 0.0.0.0:* LISTEN tcp6 0 0 ::1:10050 :::* LISTEN
Thanks
roxy_ip:10050 root@router_ip
Comment