Home  >  Article  >  Operation and Maintenance  >  One minute to explain how to configure samba service under linux

One minute to explain how to configure samba service under linux

藏色散人
藏色散人forward
2021-09-09 11:06:132186browse

下面由linux系统教程栏目给大家介绍linux下怎么配置samba服务,希望对需要的朋友有所帮助!

linux下配置samba服务

本文是基于centos6.5

一、下载

yum -y install samba

二、配置

vim /etc/samba/smb.conf

配置内容

[homes]
        comment = Home Directories
        browseable = no
        writable = yes
        path = /data/app_info
        create mode = 0644
        force create mode = 0644
        directory mode = 0755
        force directory mode = 0755
;       valid users = %S
;       valid users = MYDOMAIN\%S

三、创建smba登录用户

sudo smbpasswd -a username

备注:这个username一定要存在,否则会报:Failed to add entry for user ‘username’.

终端执行上面的命令后会提示输入密码,如下:

New SMB password:
Retype new SMB password:

四、防火墙设置:

iptables -I RH-Firewall-1-INPUT 5 -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT
iptables -I RH-Firewall-1-INPUT 5 -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
iptables -I RH-Firewall-1-INPUT 5 -p udp -m udp --dport 137 -j ACCEPT
iptables -I RH-Firewall-1-INPUT 5 -p udp -m udp --dport 138-j ACCEPT

五、windows访问

\\122.92.85.116

提示输入刚刚设置的用户名和密码,ok。

外网想要能访问修改一下防火墙配置

-A INPUT -m state --state NEW -m udp -p udp --dport 137 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p udp --dport 138 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p udp --dport 137 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p udp --dport 138 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
#-A INPUT -s 10.0.0.0/8 -p tcp -m state --state NEW -m tcp --dport 137 -j ACCEPT
#-A INPUT -s 10.0.0.0/8 -p tcp -m state --state NEW -m tcp --dport 138 -j ACCEPT
#-A INPUT -s 10.0.0.0/8 -p tcp -m state --state NEW -m tcp --dport 139 -j ACCEPT
#-A INPUT -s 10.0.0.0/8 -p tcp -m state --state NEW -m tcp --dport 445 -j ACCEPT

推荐学习:《linux视频教程

The above is the detailed content of One minute to explain how to configure samba service under linux. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete