我正在尝试连接到外部 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 连接。