Ad Widget

Collapse

Zabbix Agent Unreachable Issue - Seeking Assistance

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • SusanEmelia
    Junior Member
    • Jan 2024
    • 2

    #1

    Zabbix Agent Unreachable Issue - Seeking Assistance

    I'm currently encountering a perplexing issue in our Zabbix environment, and I'm reaching out to seek advice and insights from the experienced members of this community.

    Here's the problem I'm facing:
    • The Zabbix agent reports as being unreachable.
    • However, I can successfully ping the host.
    • The Zabbix agent service is running without any apparent issues.

    I've configured our item using agent.ping, and the trigger is set as follows: {host.name:agent.ping.nodata(5m)}=1
    ​Has anyone else encountered a similar issue?
  • LenR
    Senior Member
    • Sep 2009
    • 1005

    #2
    On your zabbix server, use a command to see if the agent port is open on the client, for example: nmap -p 10050 client-ip

    It needs network combativity to work, check firewalls that are allowing ping but not the agent port traffic.

    Comment

    • SusanEmelia
      Junior Member
      • Jan 2024
      • 2

      #3
      Originally posted by LenR
      On your zabbix server, use a command to see if the agent port is open on the client, for example: nmap -p 10050 client-ip

      It needs network combativity to work, check firewalls that are allowing ping but not the agent port traffic.
      Thanks for your suggestion.

      Comment

      • santosra02
        Junior Member
        • May 2023
        • 21

        #4
        Are you using Zabbix Proxy in your environment ? if so, consider run the test directly from the proxy to the host

        Since Zabbix make use of tcp ports 10050 and 10051 , you must have these ports allowed in your network firewall. Is good to check the machine firewall status as well.

        For any reason if you are not able to use nmap as suggested by LenR, you can use netcat to check the remote ports as well: nc -vz <IP> <PORT>​

        Comment

        Working...