Instalación de Samba AD
Publicado: 14 de mayo de 2020 - 17:30
Hola a todos 
Quiero instalar un servidor AD Samba en una Raspberry Pi. Esto es para aprender más sobre la administración de Active Directory.
Sin embargo, la instalación no funciona.
Contexto :
Para hacer esto tengo una Raspberry Pi 3 B+ ejecutando Raspbian Buster Lite.
Mi red está administrada por mi Orange box (Router, DNS, etc...)
El sistema operativo de Raspberry Pi está limpio (nueva instalación).
Me conecto a la Raspberry Pi vía SSH (antes: 192.168.1.19 / después: 192.168.1.150).
Configuración :
Aquí está el contenido de los archivos:
/etc/nombredehost :
/etc/nombredehost :
Para la dirección IP, utilicé el archivo /etc/dhcpcd.conf :
Pero lo que cambié es esto:
/etc/krb5.conf :
/etc/samba/smb.conf :
Respecto al expediente /etc/resolv.confAñado las siguientes líneas:
Sin embargo, después de reiniciar, mis cambios desaparecieron :/
Finalmente mi problema es este: cuando ejecuto el comando administrador de kinit O administrador de sudo kinit Esto es lo que obtengo:
Y después de un excavar @localhost srvads.dohakor.lan :
Si alguien puede ayudarme, sería genial. Llevo varios días trabajando en este problema y no logro averiguar qué lo causa.
gracias de antemano
Quiero instalar un servidor AD Samba en una Raspberry Pi. Esto es para aprender más sobre la administración de Active Directory.
Sin embargo, la instalación no funciona.
Contexto :
Para hacer esto tengo una Raspberry Pi 3 B+ ejecutando Raspbian Buster Lite.
Mi red está administrada por mi Orange box (Router, DNS, etc...)
El sistema operativo de Raspberry Pi está limpio (nueva instalación).
Me conecto a la Raspberry Pi vía SSH (antes: 192.168.1.19 / después: 192.168.1.150).
Configuración :
Aquí está el contenido de los archivos:
/etc/nombredehost :
Código: Seleccionar todo
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 srvadsCódigo: Seleccionar todo
srvads.dohakor.lanCódigo: Seleccionar todo
# 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_eth0Código: Seleccionar todo
# 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.8Código: Seleccionar todo
[libdefaults]
default_realm = DOHAKOR.LAN
dns_lookup_kdc = true
dns_lookup_realm = false/etc/samba/smb.conf :
Código: Seleccionar todo
# 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.confCódigo: Seleccionar todo
search dohakor.lan
nameserver 127.0.0.1Finalmente mi problema es este: cuando ejecuto el comando administrador de kinit O administrador de sudo kinit Esto es lo que obtengo:
Código: Seleccionar todo
kinit: Cannot find KDC for realm "DOHAKOR.LAN" while getting initial credentialsCódigo: Seleccionar todo
; <<>> 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 reachedgracias de antemano