與外部 mysql 伺服器的出站連線逾時

與外部 mysql 伺服器的出站連線逾時

我正在嘗試連接到外部 mysql 主機 (11.22.33.44),但連接仍然逾時。我連接的伺服器 (55.66.77.88) 已啟動並具有網路連線。

伺服器 55.66.77.88 iptables 設定目前為:

# iptables -L -v
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination         

Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
 pkts bytes target     prot opt in     out     source               destination   

我嘗試過使用,telnet 11.22.33.44 3306但這也超時了。

伺服器11.22.33.44的firewalld配置:

# firewall-cmd --list-all --zone=drop
drop (active)
  target: DROP
  icmp-block-inversion: no
  interfaces: eth0
  sources: 55.66.77.88/32
  services: http https mountd nfs ntp rpc-bind smtp ssh
  ports: 3306/tcp
  protocols: 
  masquerade: no
  forward-ports: 
  source-ports: 
  icmp-blocks: 
  rich rules: 
    rule family="ipv4" source address="55.66.77.88" service name="mysql" accept

我在忽略什麼?我可以從我的筆記型電腦建立到 11.22.33.44 的 telnet 連線。

相關內容