Voglio installare un server Samba AD su un Raspberry Pi. Questo articolo serve per saperne di più sulla gestione di Active Directory.
Tuttavia, l'installazione non funziona.
Contesto:
Per fare questo ho un Raspberry Pi 3 B+ con Raspbian Buster Lite.
La mia rete è gestita dal mio Orange box (Router, DNS, ecc...)
Il sistema operativo del Raspberry Pi è pulito (nuova installazione).
Mi connetto al Raspberry Pi tramite SSH (prima: 192.168.1.19 / dopo: 192.168.1.150).
Collocamento :
Ecco il contenuto dei file:
/etc/nomehost :
Codice: Seleziona tutto
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 srvadsCodice: Seleziona tutto
srvads.dohakor.lanCodice: Seleziona tutto
# 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_eth0Codice: Seleziona tutto
# 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.8Codice: Seleziona tutto
[libdefaults]
default_realm = DOHAKOR.LAN
dns_lookup_kdc = true
dns_lookup_realm = false/etc/samba/smb.conf :
Codice: Seleziona tutto
# 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.confCodice: Seleziona tutto
search dohakor.lan
nameserver 127.0.0.1Infine, il mio problema è questo: quando eseguo il comando amministratore kinit O sudo kinit administrator Ecco cosa ottengo:
Codice: Seleziona tutto
kinit: Cannot find KDC for realm "DOHAKOR.LAN" while getting initial credentialsCodice: Seleziona tutto
; <<>> 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 reachedgrazie in anticipo
