keepalived部署,只有本机能telnet通端口,其它设备只能ping通,是不是我哪里搞错了????、

以下是我的配置信息,请各位大牛指导指导 。
只有主机和备机能telnet通端口,其它设备只能ping通无法telnet通,则无法正常使用了。

! Configuration File for keepalived

global_defs {
   notification_email {
     acassen@firewall.loc
     failover@firewall.loc
     sysadmin@firewall.loc
   }
   notification_email_from Alexandre.Cassen@firewall.loc
   smtp_server 127.0.0.1
   smtp_connect_timeout 30
   router_id NodeA
   #vrrp_skip_check_adv_addr
   #vrrp_garp_interval 0
   #vrrp_gna_interval 0
}

vrrp_instance VI_1 {
    state MASTER
    interface ens192
    virtual_router_id 51
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
       172.16.81.200
    }
}

virtual_server 172.16.81.200 8058 {
    delay_loop 6
    persistence_timeout 50
    protocol TCP

    real_server 172.16.81.48 8058 {
        weight 1
    }
    real_server 172.16.81.49 8058 {
        weight 1
    }
}


排查防火墙或者安全组方面了么?ping是走的ICMP协议,telnet具体的端口,要在你的防火墙或者安全组中打开相应的端口才行。