從其它電腦無法 ping ?
原因是 iptables firewall 造成的
解決方法是:
[method 1]. 關閉 firewall , 清除所有 rule
#iptables -X
#iptables -F
#service iptables save
#service avahi-daemon restart
[method 2]. 在 iptab 開放 avahi 所需要的 port
548 = AFP over TCP
5353 = Multicast DNS
5354 = Multicast DNS Responder IPC
# AFP / Netatalk / Apple Talk Protocol for Trilogy
#
-A INPUT -p tcp -m state -m tcp --dport 548 --state NEW -j ACCEPT
-A INPUT -p udp -m state -m udp --dport 548 --state NEW -j ACCEPT
#
-A INPUT -p tcp -m state -m tcp --dport 5353 --state NEW -j ACCEPT
-A INPUT -p udp -m state -m udp --dport 5353 --state NEW -j ACCEPT
#
-A INPUT -p tcp -m state -m tcp --dport 5354 --state NEW -j ACCEPT
-A INPUT -p udp -m state -m udp --dport 5354 --state NEW -j ACCEPT
沒有留言:
張貼留言