ファイアウォールを使用しているときは、samba用に穴を開ける必要がある。
1.gnomeメニューの「システム」から「管理」、「ファイアウォール」と選択する。
2.「ファイアウォールの設定」が表示される。ここで、左上の「信頼したサービス」をクリックする。
3.下へスクロールして、サービスでSambaの項目をクリックしてチェックを入れる。
チェックを入れたら「適用」ボタンをクリックする。
※コマンド派の方のために、iptable側でどのような設定がされたか。
# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all — anywhere anywhere state RELATED,ESTABLISHED
--- 中略 ---
ACCEPT udp — anywhere anywhere state NEW udp dpt:netbios-ns
ACCEPT udp — anywhere anywhere state NEW udp dpt:netbios-dgm
ACCEPT tcp — anywhere anywhere state NEW tcp dpt:netbios-ssn
ACCEPT tcp — anywhere anywhere state NEW tcp dpt:microsoft-ds
ACCEPT udp — anywhere anywhere state NEW udp dpt:netbios-ns
ACCEPT udp — anywhere anywhere state NEW udp dpt:netbios-dgm
--- 中略 ---
REJECT all — anywhere anywhere reject-with icmp-host-prohibited
Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all — anywhere anywhere reject-with icmp-host-prohibited
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
てな感じ。