albertoz
(usa Ubuntu)
Enviado em 25/02/2019 - 09:57h
danniel-lara escreveu:
poderia postar as confs do seu dhcp , samba , dns
Bom dia Caro Danniel-lara! Obrigado por responder.
####DHCPD.CONF####
ddns-update-style none;
default-lease-time 600;
max-lease-time 7200;
authoritative;
subnet 10.1.1.0 netmask 255.255.255.0 {
range 10.1.1.20 10.1.1.30;
option routers 192.168.1.101;
option domain-name "meudominio.com";
option domain-name-servers 192.168.1.101;
option broadcast-address 10.1.1.255;
}
####RESOLV.CONF####
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 192.168.1.101
search meudominio.com
####SMB.CONF####
# Global parameters
[global]
dns forwarder = 8.8.8.8 #192.168.1.1
netbios name = SLS
realm = MEUDOMINIO.COM
server role = active directory domain controller
workgroup = MEUDOMINIO
idmap_ldb:use rfc2307 = yes
[netlogon]
path = /opt/samba/var/locks/sysvol/meudomionio.com/scripts
read only = No
[sysvol]
path = /opt/samba/var/locks/sysvol
read only = No
[Dados]
path = /srv/samba/Arquivos/
read only = No
####INTERFACES####
This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
#source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# Rede externa WAN
auto eno1
allow-hotplug eno1
#iface eno1 inet dhcp
iface eno1 inet static
address 192.168.1.101
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.1
broadcast 192.168.1.255
# Rede interna LAN
auto ens2
allow-hotplug ens2
iface ens2 inet static
address 10.1.1.101
dns-nameservers 192.168.1.101 192.168.1.101
netmask 255.255.255.0
dns-domain meudominio.com
Ai estão!
Mias uma obrigado!