Ich möchte einen Samba-AD-Server auf einem Raspberry Pi installieren. Dies dient dazu, mehr über die Verwaltung von Active Directory zu lernen.
Die Installation funktioniert jedoch nicht.
Kontext:
Dazu verwende ich einen Raspberry Pi 3 B+ mit Raspbian Buster Lite.
Mein Netzwerk wird von meiner Orange Box verwaltet (Router, DNS usw.)
Das Raspberry Pi OS ist sauber (Neuinstallation).
Ich verbinde mich über SSH mit dem Raspberry Pi (vorher: 192.168.1.19 / nachher: 192.168.1.150).
Einstellung :
Hier ist der Inhalt der Dateien:
/etc/hostname :
Code: Alle auswählen
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: Alle auswählen
srvads.dohakor.lanCode: Alle auswählen
# 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: Alle auswählen
# 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: Alle auswählen
[libdefaults]
default_realm = DOHAKOR.LAN
dns_lookup_kdc = true
dns_lookup_realm = false/etc/samba/smb.conf :
Code: Alle auswählen
# 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: Alle auswählen
search dohakor.lan
nameserver 127.0.0.1Mein Problem ist schließlich folgendes: Wenn ich den Befehl ausführe kinit-Administrator Oder sudo kinit Administrator Folgendes erhalte ich:
Code: Alle auswählen
kinit: Cannot find KDC for realm "DOHAKOR.LAN" while getting initial credentialsCode: Alle auswählen
; <<>> 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 reachedVielen Dank im Voraus
