전산쟁이의 기억노트

LDAP구성-3. SAMBA구성해서 연동하기 본문

ldap구성

LDAP구성-3. SAMBA구성해서 연동하기

잘나가는전산쟁이 2022. 7. 25. 00:20
728x90
반응형
SMALL

 

Samba서버와 LDAP연동하기 – LDAP서버에서 작업

  • 패키지 설치
$> yum insall -y samba samba-devel
 
  • 흰 배경회색 가로줄 배경어두운 배경
  •  
  • 삭제
  • samba설정 적용
$> vi /etc/samba/smb.conf 내용 추가
...
security = user
ldap admin dn = cn=Manager,dc=my-domain,dc=com
ldap suffix = dc=my-domain,dc=com
ldap group suffix = ou=groups
ldap user suffix = ou=people
ldap passwd sync = yes
ldap delete dn = Yes
domain logons = yes
 
  • LDAP과 samba연동
$> vi  /etc/openldap/slapd.conf
...
include /etc/openldap/schema/samba.schema
access to attrs=userPassword,sambaLMPassword,smabaNTPassword,shadowLastChange
by dn.children="ou=Manager,dc=my-domain,dc=com" write
by self write
by anonymous auth
by * none
access to *
by dn.children="ou=Manager,dc=my-domain,dc=com" write
by * read
 
  • ldap admin 패스워드 설정
$> smbpasswd -w
 
  • LDAP사용자 samba 패스워드 설정
$> smbpasswd -a test
$> New SMB password:
$> Retype new SMB password:
 
  • 서비스 시작 및 활성화
$> /etc/init.d/smb start
$> chkconfig smb on
 
  • samba 클라이언트 접속 테스트
$> smbclient -U test //192.168.10.10/home
 
    • 윈도우 장비에서 네트워크 공유폴더를 통해 접근 여부 확인

 

 

 

 

출처 - http://igoni.kr/books/linux/page/ldap-3-samba

 

728x90
반응형
LIST

'ldap구성' 카테고리의 다른 글

LDAP구성-2. 클라이언트 구성하기  (0) 2022.07.25
LDAP구성-4. rootdn변경  (0) 2022.07.25
LDAP구성-1. 서버구성하기  (0) 2022.07.24
Comments