2016年3月15日 星期二

smbmount(mount)掛載網路硬碟

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