SMB:使用 Ansible 自动化配置 samba 客户端服务端
对每个人而言,真正的职责只有一个:找到自我。然后在心中坚守其一生,全心全意,永不停息。所有其它的路都是不完整的,是人的逃避方式,是对大众理想的懦弱回归,是随波逐流,是对内心的恐惧 ——赫尔曼·黑塞《德米安》
写在前面
- 考试顺便整理
- 博文内容整理 使用 Ansible 部署 samba 客户端和服务端
- 理解不足小伙伴帮忙指正
对每个人而言,真正的职责只有一个:找到自我。然后在心中坚守其一生,全心全意,永不停息。所有其它的路都是不完整的,是人的逃避方式,是对大众理想的懦弱回归,是随波逐流,是对内心的恐惧 ——赫尔曼·黑塞《德米安》
涉及到的文件
1 | [student@workstation filestorage-automation]$ tree . |
涉及到的 主机清单
1 | [student@workstation filestorage-automation]$ cat inventory |
这里我们使用 serverd 做服务端,使用 servera,b,c 做客户端
1 | [student@workstation filestorage-review]$ cat ansible.cfg |
ansible 配置文件 ,使用 devops 作ssh 用户
ssamba 对应的配置文件的 jija 模版
1 |
|
通过模版配置文件,我们可以看到使用的是最基本的配置文件,下面为涉及到的变量
1 | [student@workstation filestorage-review]$ cat smb_vars.yml |
服务端部署
服务端需要执行的剧本
- 安装
Samba
软件包:使用yum模块安装Samba软件包。 - 创建Linux和Samba用户:创建一个用于挂载共享的Linux和Samba用户。
- 创建Linux组:创建一个用于具有写访问权限的用户组。
- 创建Samba用户:为Samba用户创建密码,并将其添加到Samba用户数据库中。
- 创建目录:使用file模块创建要共享的目录,并设置所有者、组和权限。
- 配置Samba:使用template模块将SMB配置文件模板复制到目标位置。
- 启动SMB服务:使用service模块启动和启用SMB服务。
- 开放Samba防火墙服务:使用firewalld模块开启Samba防火墙服务。
- 定义处理程序:定义名为 reload smb 的处理程序,用于在配置更改后重新加载SMB服务。
1 | [student@workstation filestorage-automation]$ cat smb_server.yml |
客户端配置
- 安装
cifs-utils
软件包:使用yum模块确保目标主机上安装了cifs-utils软件包。 - 创建凭据文件:使用copy模块创建一个凭据文件(/etc/samba/creds.txt),其中包含SMB用户名和密码。用户名和密码从samba_usermount和samba_passmount变量中获取。
- 挂载SMB共享:使用mount模块挂载SMB共享。path参数指定本地系统上的挂载点,src参数指定SMB共享的位置(//serverd.lab.example.com/)。opts参数指定挂载选项,包括凭据文件路径(/etc/samba/creds.txt)、multiuser模式和seal安全选项。fstype参数将文件系统类型指定为cifs。
- 创建Linux用户:使用user模块在目标主机上创建Linux用户。用户名和密码从samba_users变量中获取。密码使用SHA-512算法以’redhatsalt’作为盐值进行哈希处理。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41[student@workstation filestorage-automation]$ cat smb_client.yml
- name: Access an SMB share
hosts: servera.lab.example.com
become: true
vars_files:
- smb_vars.yml
tasks:
- name: the cifs-utils package is installed
yum:
name: cifs-utils
state: present
- name: the credential file exists
copy:
content: "username={{ samba_usermount }}\n\
password={{ samba_passmount }}\n"
dest: /etc/samba/creds.txt
owner: root
group: root
mode: '0600'
no_log: true
- name: the SMB share is mounted
mount:
path: "{{ mount_point }}"
src: "//serverd.lab.example.com/{{ share_name }}"
opts: "credentials=/etc/samba/creds.txt,multiuser,seal"
state: mounted
fstype: cifs
- name: the Linux users exist
user:
name: "{{ item.name }}"
shell: /bin/bash
password: "{{ item.password | \
password_hash('sha512', 'redhatsalt') }}"
loop: "{{ samba_users }}"
no_log: true
[student@workstation filestorage-automation]$
博文部分内容参考
© 文中涉及参考链接内容版权归原作者所有,如有侵权请告知,这是一个开源项目,如果你认可它,不要吝啬星星哦 :)
红帽服务管理与自动化(RH358)
授课笔记
© 2018-至今 liruilonger@gmail.com, All rights reserved. 保持署名-非商用-相同方式共享(CC BY-NC-SA 4.0)
SMB:使用 Ansible 自动化配置 samba 客户端服务端
https://liruilongs.github.io/2023/09/13/rhca/RH385/SMB:使用-Ansible-自动化配置-samba-客户端服务端/