Installing Samba AD
Published: May 14, 2020 - 5:30 PM
Hello everyone 
I want to install a Samba AD server on a Raspberry Pi. This is to learn more about managing Active Directory.
However, the installation is not working.
Context :
To do this I have a Raspberry Pi 3 B+ running Raspbian Buster Lite.
My network is managed by my Orange box (Router, DNS, etc...)
The Raspberry Pi's OS is clean (new installation).
I connect to the Raspberry Pi via SSH (before: 192.168.1.19 / after: 192.168.1.150).
Setting :
Here is the content of the files:
/etc/hostname :
/etc/hostname :
For the IP address, I used the file instead /etc/dhcpcd.conf :
But what I changed is this:
/etc/krb5.conf :
/etc/samba/smb.conf :
Regarding the file /etc/resolv.confI add the following lines:
However, after a reboot, my changes are gone :/
Finally, my problem is this: when I run the command kinit administrator Or sudo kinit administrator Here's what I get:
And after a dig @localhost srvads.dohakor.lan :
If anyone can help me, that would be really great. I've been working on this problem for several days now and I can't figure out what's causing it.
Thank you in advance
I want to install a Samba AD server on a Raspberry Pi. This is to learn more about managing Active Directory.
However, the installation is not working.
Context :
To do this I have a Raspberry Pi 3 B+ running Raspbian Buster Lite.
My network is managed by my Orange box (Router, DNS, etc...)
The Raspberry Pi's OS is clean (new installation).
I connect to the Raspberry Pi via SSH (before: 192.168.1.19 / after: 192.168.1.150).
Setting :
Here is the content of the files:
/etc/hostname :
Code: Select all
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
127.0.1.1 raspberrypi
192.168.1.150 srvads.dohakor.lan srvadsCode: Select all
srvads.dohakor.lanCode: Select all
# A sample configuration for dhcpcd.
# See dhcpcd.conf(5) for details.
# Allow users of this group to interact with dhcpcd via the control socket.
#controlgroup wheel
# Inform the DHCP server of our hostname for DDNS.
hostname
# Use the hardware address of the interface for the Client ID.
clientid
# or
# Use the same DUID + IAID as set in DHCPv6 for DHCPv4 ClientID as per RFC4361.
# Some non-RFC compliant DHCP servers do not reply with this set.
# In this case, comment out duid and enable clientid above.
#duid
# Persist interface configuration when dhcpcd exits.
persistent
# Rapid commit support.
# Safe to enable by default because it requires the equivalent option set
# on the server to actually work.
option rapid_commit
# A list of options to request from the DHCP server.
option domain_name_servers, domain_name, domain_search, host_name
option classless_static_routes
# Respect the network MTU. This is applied to DHCP routes.
option interface_mtu
# Most distributions have NTP support.
#option ntp_servers
# A ServerID is required by RFC2131.
require dhcp_server_identifier
# Generate SLAAC address using the Hardware Address of the interface
#slaac hwaddr
# OR generate Stable Private IPv6 Addresses based from the DUID
slaac private
# Example static IP configuration:
interface eth0
static ip_address=192.168.1.150/24
#static ip6_address=fd51:42f8:caae:d92e::ff/64
static routers=192.168.1.1
static domain_name_servers=192.168.1.150 8.8.8.8
# It is possible to fall back to a static IP if DHCP fails:
# define static profile
#profile static_eth0
#static ip_address=192.168.1.23/24
#static routers=192.168.1.1
#static domain_name_servers=192.168.1.1
# fallback to static profile on eth0
#interface eth0
#fallback static_eth0Code: Select all
# Example static IP configuration:
interface eth0
static ip_address=192.168.1.150/24
#static ip6_address=fd51:42f8:caae:d92e::ff/64
static routers=192.168.1.1
static domain_name_servers=192.168.1.150 8.8.8.8Code: Select all
[libdefaults]
default_realm = DOHAKOR.LAN
dns_lookup_kdc = true
dns_lookup_realm = false/etc/samba/smb.conf :
Code: Select all
# Global parameters
[global]
dns forwarder = 192.168.1.150
netbios name = SRVADS
realm = DOHAKOR.LAN
server role = active directory domain controller
workgroup = DOHAKOR
[netlogon]
path = /var/lib/samba/sysvol/dohakor.lan/scripts
read only = No
[sysvol]
path = /var/lib/samba/sysvol
read only = No
/etc/samba/smb.confCode: Select all
search dohakor.lan
nameserver 127.0.0.1Finally, my problem is this: when I run the command kinit administrator Or sudo kinit administrator Here's what I get:
Code: Select all
kinit: Cannot find KDC for realm "DOHAKOR.LAN" while getting initial credentialsCode: Select all
; <<>> DiG 9.11.5-P4-5.1-Raspbian <<>> @localhost srvads.dohakor.lan
; (2 servers found)
;; global options: +cmd
;; connection timed out; no servers could be reachedThank you in advance