要使用smbmount請先安裝smbfs
- 查詢網路資源 smbclient -L //[IP|hostname] [-U username]
- mount //IP/分享資源 /掛載點 [-o options]
例: mount //172.16.1.1/bj/xx /掛載點 -o username=bj,password=sn (如新版要去讀smb1.0舊版要再加上-o vers=1.0) - smbstatus 觀察 SAMBA 的狀態
強制samba使用port 139
- #vim /etc/samba/smb.conf加入smb ports = 139
- iptables -A INPUT -p TCP --dport 445 -j DROP