SlideShare una empresa de Scribd logo
1 de 13
Implementing DNS in Tiguin for Samba PDC
Login from the root user .Here in this documentation “enjay” is a hostname. “eclipse.com” is a
name of domain , and 192.168.1.242 is IP address of the Domain server. And  “enjay123” is the
password of my DNS server. Create a DNS server for domain follow the steps given below :
1 .   Install bind9 package
CMD apt­get install bind9 dnsutils bind9­doc
2.  Basic bind Configuration
Make changes for the below lines :
CMD  nano /etc/bind/named.conf.options
Change   forwarders {
             8.8.8.8;
                         8.8.4.4;
        };
3. Create forward and reverse zone files. so that when we are using ping or nslookup command
, we can ping via IP address as well as via Domain Name . And mentioned file will be called.
   Make changes for the below lines.
CMD   nano /etc/bind/named.conf.local
Add     zone "eclipse.com"{
type master;
file "/etc/bind/db.eclipse.com";
};
         zone "1.168.192.in­addr.arpa"{
type master;
notify no;
file "/etc/bind/db.192";
   };
4. Building Your DNS Forward Zone
  Now edit new forward zone file . Make the changes for the below lines.
CMD cp /etc/bind/db.local /etc/bind/db.eclipse.com
CMD nano /etc/bind/db.eclipse.com
Add/Edit @     IN SOA         enjay.eclipse.com. root.localhost. (
@     IN NS               enjay.eclipse.com.
enjay     IN     A         192.168.1.242
server01  IN   CNAME       enjay.eclipse.com.
  5. Building Your Reverse Lookup and  edit the reverse lookup file .
CMD      cp /etc/bind/db.127 /etc/bind/db.192
CMD      nano /etc/bind/db.192
Add/Edit      @ IN SOA enjay.eclipse.com. root.localhost. (
     @ IN NS enjay.eclipse.com.
     242 IN PTR enjay.eclipse.com.
6.  Starting your DNS Server.
CMD  /etc/init.d/bind9 start
7. Testing your DNS Server
    Make the changes in the Network Manager window. Select IPV4 tab.
DNS Server eclipse.com
Search Domain eclipse.com
8. Now that we have DNS setup we can use ping to test that everything is working. Both
nslookup and ping are great tools for troubleshooting and testing.
CMD Output
nslookup
192.168.1.242
Server:  192.168.1.242
Address:    192.168.1.242#53
242.1.168.192.in­addr.arpa    name = enjay.eclipse.com.
CMD Output
nslookup
eclipse.com
Server:  192.168.1.242
Address:    192.168.1.242#53
Name:    eclipse.com
Address: 127.0.0.1
Implementing ldap in Tiguin for Samba PDC
After the successful result from nslookup proceed further with the following steps.
1.
CMD apt­get install slapd ldap­utils
ldapadd ­Y EXTERNAL ­H ldapi:/// ­f /etc/ldap/schema/cosine.ldif
ldapadd ­Y EXTERNAL ­H ldapi:/// ­f /etc/ldap/schema/nis.ldif
ldapadd ­Y EXTERNAL ­H ldapi:/// ­f /etc/ldap/schema/inetorgperson.ldif
2. You will need to modify the following to include your password and domain name.
CMD nano  /etc/ldap/schema/backend.ldif
Add / Edit dn: cn=module,cn=config
objectClass: olcModuleList
cn: module
olcModulepath: /usr/lib/ldap
olcModuleload: back_hdb
dn: olcDatabase=hdb,cn=config
objectClass: olcDatabaseConfig
objectClass: olcHdbConfig
olcDatabase: {1}hdb
olcSuffix: dc=eclipse,dc=com
olcDbDirectory: /var/lib/ldap
olcRootDN: cn=admin,dc=eclipse,dc=com
olcRootPW: enjay123
olcDbConfig: set_cachesize 0 2097152 0
olcDbConfig: set_lk_max_objects 1500
olcDbConfig: set_lk_max_locks 1500
olcDbConfig: set_lk_max_lockers 1500
olcDbIndex: objectClass eq
olcLastMod: TRUE
olcDbCheckpoint: 512 30
olcAccess: to attrs=userPassword by dn="cn=admin,dc=eclipse,dc=com"
write by anonymous auth by self write by * none
olcAccess: to attrs=shadowLastChange by self write by * read
olcAccess: to dn.base="" by * read
olcAccess: to * by dn="cn=admin,dc=eclipse,dc=com" write by * read
CMD ldapadd ­Y EXTERNAL ­H ldapi:/// ­f /etc/ldap/schema/backend.ldif
3. Install Samba
CMD apt­get install samba samba­doc libpam­smbpass smbclient
smbldap­tools
CMD nano /etc/samba/smb.conf
ADD/EDIT [global]
#  Customize these entries as needed
#  Replace with your domain name
workgroup = eclipse
#  Replace with your server name
netbios name = enjay
#  Replace "eclipse" with the workgroup name you're using
ldap suffix = dc=eclipse,dc=com
ldap admin dn = cn=admin,dc=eclipse,dc=com
#  Roaming profiles enabled. Replace "enjay" to match your netbios name
logon path = enjayprofiles%U%a
#  No roaming profiles, uncomment
; logon path =
#  Server Information
server string = SMB Server
#  Specify global admin user, will have root in all shares
; admin users =
#  PW Backend
obey pam restrictions = Yes
unix password sync = no
ldap passwd sync = yes
passdb backend = ldapsam:ldap://localhost
pam password change = Yes
#  SMBLDAP Scripts
       add user to group script = /usr/sbin/smbldap­groupmod ­m '%u' '%g'
add user script = /usr/sbin/smbldap­useradd ­m '%u'
add machine script = /usr/sbin/smbldap­useradd ­w '%u'
add group script = /usr/sbin/smbldap­groupadd ­p '%g'
delete group script = /usr/sbin/smbldap­groupdel '%g'
delete user script = /usr/sbin/smbldap­userdel %u
  delete user from group script = /usr/sbin/smbldap­groupmod ­x '%u' '%g'
set primary group script = /usr/sbin/smbldap­usermod ­g '%g' '%u'
#  LDAP Configuration
ldap ssl = no
ldap user suffix = ou=Users
ldap machine suffix = ou=Computers
ldap group suffix = ou=Groups
ldap idmap suffix = ou=Idmap
#  Logon script located in netlogon share. Individual logon scripts
uncomment
;logon script = %U.bat
logon script = allusers.bat
#  Logging
max log size = 1000
syslog = 0
log file = /var/log/samba/log.%m
#  Printing
printing = cups
printcap name = cups
load printers = yes
# Domain Controller
domain master = Yes
domain logons = Yes
wins support = true
os level = 35
server signing = no
server schannel = Auto
panic action = /usr/share/samba/panic­action %d
dns proxy = No
; logon drive = H:
; logon home = %N%U
# Allow file permissions change to group members
acl group control = yes
# Inherit permissions from parent
; inherit acls = yes
; inherit owner = yes
; map acl inherit = yes
; inherit permissions = yes
# Do NOT inherit permissions from parent
inherit acls = no
inherit owner = no
map acl inherit = no
inherit permissions = no
# Do not show files that are unreadable
hide unreadable = yes
[printers]
   comment = All Printers
   path = /var/spool/samba
   browseable = no
# to allow user 'guest account' to print.
   guest ok = yes
   writable = no
   printable = yes
   create mode = 0700
[Home]
security mask = 0770
writeable = yes
path = /home/userhome
force security mode = 0
force directory security mode = 0
directory security mask = 0770
[netlogon]
comment = Network Logon Service
writeable = yes
public = yes
path = /home/netlogon
[profiles]
browseable = no
printable = no
writable = yes
path = /home/profiles
store dos attributes = no
guest ok = no
comment = Users Profiles
# fixes everyone having read
create mode = 0700
directory mode = 0700
CMD cp /etc/samba/smb.conf /etc/samba/smb.conf.original
CMD Everytime you edit your smb.conf you should run the below command.
testparm /etc/samba/smb.conf
If you see an rlimit_max: error you can ignore it.
CMD smbpasswd ­W
Enter the same password you’ve been using for “enjay123”
CMD service smbd restart
CMD smbclient ­L localhost
Hit enter, do not type in password. This should show your
server/workgroup information without error.
Output:
root@enjay:~# smbclient ­L localhost
Enter root's password:
Anonymous login successful
Domain=[ECLIPSE] OS=[Unix] Server=[Samba 3.6.3]
    Sharename Type Comment
    ­­­­­­­­­ ­­­­ ­­­­­­­
    Home Disk
    netlogon Disk Network Logon Service
    IPC$ IPC IPC Service (SMB Server)
Anonymous login successful
Domain=[ECLIPSE] OS=[Unix] Server=[Samba 3.6.3]
    Server Comment
    ­­­­­­­­­ ­­­­­­­
    Workgroup Master
    ­­­­­­­­­ ­­­­­­­
    ENJAY.COM MRP
    MSHOME MICROSOFTPC
    TIGUIN ENJAY
    WORKGROUP ENJAY
Create profiles and netlogon directory.
CMD mkdir ­v ­m 1777 /home/profiles
CMD mkdir ­v ­m 1777 /home/netlogon
CMD cp /usr/share/doc/samba­doc/examples/LDAP/samba.schema.gz
/etc/ldap/schema/
CMD gzip ­d /etc/ldap/schema/samba.schema.gz
CMD nano /etc/ldap/schema/schema_convert.conf
ADD include /etc/ldap/schema/core.schema
include /etc/ldap/schema/collective.schema
include /etc/ldap/schema/corba.schema
include /etc/ldap/schema/cosine.schema
include /etc/ldap/schema/duaconf.schema
include /etc/ldap/schema/dyngroup.schema
include /etc/ldap/schema/inetorgperson.schema
include /etc/ldap/schema/java.schema
include /etc/ldap/schema/misc.schema
include /etc/ldap/schema/nis.schema
include /etc/ldap/schema/openldap.schema
include /etc/ldap/schema/ppolicy.schema
include /etc/ldap/schema/samba.schema
then create directory in /tmp
mkdir /tmp/ldif_output
CMD slapcat ­f /etc/ldap/schema/schema_convert.conf ­F /tmp/ldif_output ­n0 ­s
"cn={12}samba,cn=schema,cn=config" > /tmp/schema_samba.ldif
nano /tmp/schema_samba.ldif
ADD/EDIT At the top, edit
dn: cn{12}=samba,cn=schema,cn=config
to show
dn: cn=samba,cn=schema,cn=config
Edit
cn: {12}samba
to show
cn: samba
Delete the following from the end:
structuralObjectClass: olcSchemaConfig
entryUUID: b53b75ca­083f­102d­9fff­2f64fd123c95
creatorsName: cn=config
createTimestamp: 20080827045234Z
entryCSN: 20080827045234.341425Z#000000#000#000000
modifiersName: cn=config
modifyTimestamp: 20080827045234Z
CMD ldapadd ­Y EXTERNAL ­H ldapi:/// ­D cn=admin,cn=config ­W ­f
/tmp/schema_samba.ldif
Enter Password “enjay123”, or the same one you’ve been using.
CMD nano /tmp/samba_indexes.ldif
ADD dn: olcDatabase={1}hdb,cn=config
changetype: modify
add: olcDbIndex
olcDbIndex: uidNumber eq
olcDbIndex: gidNumber eq
olcDbIndex: loginShell eq
olcDbIndex: uid eq,pres,sub
olcDbIndex: memberUid eq,pres,sub
olcDbIndex: uniqueMember eq,pres
olcDbIndex: sambaSID eq
olcDbIndex: sambaPrimaryGroupSID eq
olcDbIndex: sambaGroupType eq
olcDbIndex: sambaSIDList eq
olcDbIndex: sambaDomainName eq
olcDbIndex: default sub
CMD ldapmodify ­Y EXTERNAL ­H ldapi:/// ­D cn=admin,cn=config ­W ­f
/tmp/samba_indexes.ldif
Enter Password “enjay123”, or the same one you’ve been using.
CMD The following should execute without error:
ldapsearch ­Y EXTERNAL ­H ldapi:/// ­D cn=admin,cn=config ­b cn=config
­W olcDatabase={1}hdb
Enter Password “enjay123”, or the same one you’ve been using.
Verify olcSuffix:, olcAccess:, olcAccess:, olcRootDN:, olcRootPW:.
CMD net getlocalsid
Should run without error and look similar to
SID for domain ENJAY is: S­1­5­21­625349716­4089457091­4047952833
To get configure.pl
Download Package: smbldap­tools 0.9.1.tgz and extract .
Reference Link: http://www.filewatcher.com/m/smbldap­tools­0.9.1.tgz.295169­0.html
then copy configure.pl file from the package files.
then copy the configure.pl file to the location specified in the below command.
CMD cp configure.pl /usr/share/doc/smbldap­tools/
CMD perl /usr/share/doc/smbldap­tools/configure.pl
Here hit Enter at all times except:
"Logon Home", put a “.” (period without quotes)
"Logon Path", put a "."
Default passwd validation time, I put 3650
When prompted for password, use your password or “enjay123”.
CMD smbldap­populate
Enter Password “enjay123”, or the same one you’ve been using.
It will shows following output with error.
O/P:
Use of qw(...) as parentheses is deprecated at
/usr/share/perl5/smbldap_tools.pm line 1423, <DATA> line 522.
Changing UNIX and samba passwords for root
New password:
Retype new password:
Solution:
 Replace qw(...) with (qw(...))  in /usr/share/perl5/smbldap_tools.pm
Repeat the command
  smbldap­populate
CMD mkdir ­v /home/userhome
CMD cp /etc/smbldap­tools/smbldap.conf /etc/smbldap­tools/smbldap.conf.original
CMD nano /etc/smbldap­tools/smbldap.conf
ADD/EDIT Locate and change to: userHome="/home/userhome/%U"
CMD /etc/init.d/slapd stop
CMD slapindex
CMD chown openldap:openldap /var/lib/ldap/*
CMD /etc/init.d/slapd start
CMD smbldap­groupmod ­m 'root' 'Administrators'
CMD apt­get ­­yes install ldap­auth­client
For LDAP server Uniform Resource Identifier, leave it as it is "ldapi:///"
For Distinguished name of the search base, put"dc=eclipse,dc=com"
for version 3
LDAP Database required YES
For LDAP account for root, put"cn=admin,dc=eclipse,dc=com"
Unpriviliged Database user,put"cn=admin,dc=eclipse,dc=com"
When it asks for LDAP password use "enjay123" or the pw you’ve been using.
CMD auth­client­config ­t nss ­p lac_ldap
CMD pam­auth­update ldap
CMD Make sure there’s an asterisk next to all listed.
getent group
O/P:
Should show similar to:
Domain Admins:*:512:root
Domain Users:*:513:
Domain Guests:*:514:
Domain Computers:*:515:
Administrators:*:544:root
Account Operators:*:548:
Print Operators:*:550:
Backup Operators:*:551:
Replicators:*:552:
CDM Reboot
Create a Domain user called test :­
CMD smbldap­useradd ­a ­m ­P test that lead to an error
ERROR root@enjay:~# smbldap­useradd ­a ­m ­P test
Failed to execute: /usr/sbin/smbldap­passwd.cmd: No such file or directory at
/usr/sbin/smbldap­useradd line 668.
Solution ln ­s /usr/sbin/smbldap­passwd /usr/sbin/smbldap­passwd.cmd
CMD smbldap­useradd ­a ­m ­P test
give password as “123”
CMD smbldap­groupmod ­m test 'Domain Admins'
Now Connect  the user from windows XP.
Settings are as per below:
1. Enter Prefered DNS Server as 192.168.1.242
2 Open Advanced Options in the IP settings window.
3. Click on WINS tab.  CLick on Add button and enter 192.168.1.242 as WINS Server.
4. Enable NetBIOS over TCP/IP radio button in WINS Tab.
5. RIght click on My Computer ­> Properties.
6. Select Computer name Tab.Cicik on change button.
7. In domain Add the name of the Domain  “eclipse”.
8. It will ask for username and password. enter Username “root” and password “enjay123”.
9. Reboot the system
10. Add username as “test” ,password as “123” and select “eclipse” as a domain.
1. Documentation ­ Implementing Smbldap­tools in Tiguin for Samba PDC
2. Documentation ­ Implementing ldap in Tiguin for Samba PDC
3. Documentation ­ Creating Users for Samba PDC Authentication in Tiguin

Más contenido relacionado

La actualidad más candente

Basic security &amp; info
Basic security &amp; infoBasic security &amp; info
Basic security &amp; info
Tola LENG
 
Windows server 2008 step by-step guide for dns in small networks
Windows server 2008 step by-step guide for dns in small networksWindows server 2008 step by-step guide for dns in small networks
Windows server 2008 step by-step guide for dns in small networks
Ochiroo Dorj
 
Getting Started With Your Virtual Dedicated Server
Getting Started With Your Virtual Dedicated ServerGetting Started With Your Virtual Dedicated Server
Getting Started With Your Virtual Dedicated Server
webhostingguy
 
Sharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linuxSharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linux
jasembo
 
Install nagios
Install nagiosInstall nagios
Install nagios
hassandb
 
Configure Proxy and Firewall (Iptables)
Configure Proxy and Firewall (Iptables)Configure Proxy and Firewall (Iptables)
Configure Proxy and Firewall (Iptables)
Tola LENG
 
Dns introduction
Dns   introduction Dns   introduction
Dns introduction
sunil kumar
 
Ahmad-debian
Ahmad-debianAhmad-debian
Ahmad-debian
syaif-sae
 

La actualidad más candente (19)

Basic security &amp; info
Basic security &amp; infoBasic security &amp; info
Basic security &amp; info
 
Ubuntu vps setup
Ubuntu vps setupUbuntu vps setup
Ubuntu vps setup
 
Windows server 2008 step by-step guide for dns in small networks
Windows server 2008 step by-step guide for dns in small networksWindows server 2008 step by-step guide for dns in small networks
Windows server 2008 step by-step guide for dns in small networks
 
Configuring e mail notificationin nagios core
Configuring e mail notificationin nagios coreConfiguring e mail notificationin nagios core
Configuring e mail notificationin nagios core
 
Getting Started With Your Virtual Dedicated Server
Getting Started With Your Virtual Dedicated ServerGetting Started With Your Virtual Dedicated Server
Getting Started With Your Virtual Dedicated Server
 
Sharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linuxSharing your-internet-connection-on-linux
Sharing your-internet-connection-on-linux
 
M7 - Manual
M7 - ManualM7 - Manual
M7 - Manual
 
Installing lemp with ssl and varnish on Debian 9
Installing lemp with ssl and varnish on Debian 9Installing lemp with ssl and varnish on Debian 9
Installing lemp with ssl and varnish on Debian 9
 
Les défis des architectures cloud sur OpenStack
Les défis des architectures cloud sur OpenStackLes défis des architectures cloud sur OpenStack
Les défis des architectures cloud sur OpenStack
 
Install nagios
Install nagiosInstall nagios
Install nagios
 
DNS High-Availability Tools - Open-Source Load Balancing Solutions
DNS High-Availability Tools - Open-Source Load Balancing SolutionsDNS High-Availability Tools - Open-Source Load Balancing Solutions
DNS High-Availability Tools - Open-Source Load Balancing Solutions
 
Dns server slide(h.m_merajul_hasan)
Dns server slide(h.m_merajul_hasan)Dns server slide(h.m_merajul_hasan)
Dns server slide(h.m_merajul_hasan)
 
DDNS
DDNSDDNS
DDNS
 
6. reverse primarydns using bind for ptr and cname record ipv6 with forwarder
6. reverse primarydns using bind for ptr and cname record ipv6 with forwarder6. reverse primarydns using bind for ptr and cname record ipv6 with forwarder
6. reverse primarydns using bind for ptr and cname record ipv6 with forwarder
 
Configure Proxy and Firewall (Iptables)
Configure Proxy and Firewall (Iptables)Configure Proxy and Firewall (Iptables)
Configure Proxy and Firewall (Iptables)
 
What is new in BIND 9.11?
What is new in BIND 9.11?What is new in BIND 9.11?
What is new in BIND 9.11?
 
Dns introduction
Dns   introduction Dns   introduction
Dns introduction
 
Ahmad-debian
Ahmad-debianAhmad-debian
Ahmad-debian
 
Linux questions
Linux questionsLinux questions
Linux questions
 

Destacado

Growth of electricity_sector_in_india_from_1947-2011
Growth of electricity_sector_in_india_from_1947-2011Growth of electricity_sector_in_india_from_1947-2011
Growth of electricity_sector_in_india_from_1947-2011
sudpal88
 
αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;
αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;
αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;
MaryBalou
 
Manufacturing
ManufacturingManufacturing
Manufacturing
sudpal88
 
ใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพร
ใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพรใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพร
ใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพร
Mark Mad
 

Destacado (20)

Growth of electricity_sector_in_india_from_1947-2011
Growth of electricity_sector_in_india_from_1947-2011Growth of electricity_sector_in_india_from_1947-2011
Growth of electricity_sector_in_india_from_1947-2011
 
Asignacion iv
Asignacion ivAsignacion iv
Asignacion iv
 
Verizon 2014 pci compliance report
Verizon 2014 pci compliance reportVerizon 2014 pci compliance report
Verizon 2014 pci compliance report
 
αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;
αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;
αειφόρο νηπιαγωγείο ουτοπία ή δυνατότητα;
 
Manufacturing
ManufacturingManufacturing
Manufacturing
 
2013 cost of data breach study - Global analysis
2013 cost of data breach study - Global analysis2013 cost of data breach study - Global analysis
2013 cost of data breach study - Global analysis
 
Trias politika
Trias politikaTrias politika
Trias politika
 
ecoupons
ecouponsecoupons
ecoupons
 
Kindsight security labs malware report - Q4 2013
Kindsight security labs malware report - Q4 2013Kindsight security labs malware report - Q4 2013
Kindsight security labs malware report - Q4 2013
 
Infographic: Dementia Toolkit
Infographic: Dementia ToolkitInfographic: Dementia Toolkit
Infographic: Dementia Toolkit
 
Kilpailukykysopimuksen vaikutusarvio
Kilpailukykysopimuksen vaikutusarvioKilpailukykysopimuksen vaikutusarvio
Kilpailukykysopimuksen vaikutusarvio
 
ใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพร
ใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพรใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพร
ใบงาน แบบสำรวจและประวัติของ นาย พชร แก้วพนมพร
 
ฟอร มโครงร างโครงงานคอมพ_วเตอร_
ฟอร มโครงร างโครงงานคอมพ_วเตอร_ฟอร มโครงร างโครงงานคอมพ_วเตอร_
ฟอร มโครงร างโครงงานคอมพ_วเตอร_
 
O lada de bere
O lada de bereO lada de bere
O lada de bere
 
pengendalian (titipan temen)
pengendalian (titipan temen)pengendalian (titipan temen)
pengendalian (titipan temen)
 
Video Production Beginner's Guide
Video Production Beginner's GuideVideo Production Beginner's Guide
Video Production Beginner's Guide
 
2013 Mobile Application Security Survey
2013 Mobile Application Security Survey2013 Mobile Application Security Survey
2013 Mobile Application Security Survey
 
The Evolution of Phising Attacks
The Evolution of Phising AttacksThe Evolution of Phising Attacks
The Evolution of Phising Attacks
 
Sql injection
Sql injectionSql injection
Sql injection
 
NDO
NDONDO
NDO
 

Similar a Implementing DNS in Samba PDC

Step by step_linux_guide
Step by step_linux_guideStep by step_linux_guide
Step by step_linux_guide
vinod31dec
 
Configuracion de red en ubuntu
Configuracion de red en ubuntuConfiguracion de red en ubuntu
Configuracion de red en ubuntu
Lupita Chacon
 
Installation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 ServerInstallation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 Server
► Supreme Mandal ◄
 

Similar a Implementing DNS in Samba PDC (20)

DNS,SMTP and POP3
DNS,SMTP and POP3DNS,SMTP and POP3
DNS,SMTP and POP3
 
main
mainmain
main
 
Modul quick debserver
Modul quick debserverModul quick debserver
Modul quick debserver
 
Tutorial : Zimbra on BlankOn
Tutorial : Zimbra on BlankOnTutorial : Zimbra on BlankOn
Tutorial : Zimbra on BlankOn
 
Linux04 dns 2
Linux04 dns 2Linux04 dns 2
Linux04 dns 2
 
Step by step_linux_guide
Step by step_linux_guideStep by step_linux_guide
Step by step_linux_guide
 
[Advantech] ADAM-3600 open vpn setting Tutorial step by step
[Advantech] ADAM-3600 open vpn setting Tutorial step by step [Advantech] ADAM-3600 open vpn setting Tutorial step by step
[Advantech] ADAM-3600 open vpn setting Tutorial step by step
 
Step by step installation domino on docker
Step by step installation domino on dockerStep by step installation domino on docker
Step by step installation domino on docker
 
Configuracion de red en ubuntu
Configuracion de red en ubuntuConfiguracion de red en ubuntu
Configuracion de red en ubuntu
 
Configuration of BIND DNS Server On CentOS 8
Configuration of BIND DNS Server On CentOS 8Configuration of BIND DNS Server On CentOS 8
Configuration of BIND DNS Server On CentOS 8
 
Modul server debian 5
Modul server debian 5Modul server debian 5
Modul server debian 5
 
Install BIND9 on Ubuntu Server 12.04 LTS
Install BIND9 on Ubuntu Server 12.04 LTSInstall BIND9 on Ubuntu Server 12.04 LTS
Install BIND9 on Ubuntu Server 12.04 LTS
 
DNS (BIND) on CentOS
DNS (BIND) on CentOSDNS (BIND) on CentOS
DNS (BIND) on CentOS
 
Windows 2003 Server
Windows 2003 ServerWindows 2003 Server
Windows 2003 Server
 
Upload files-to-zenterprise-server-via-ftp
Upload files-to-zenterprise-server-via-ftpUpload files-to-zenterprise-server-via-ftp
Upload files-to-zenterprise-server-via-ftp
 
configure a DHCP server on Fedora.pdf
configure a DHCP server on Fedora.pdfconfigure a DHCP server on Fedora.pdf
configure a DHCP server on Fedora.pdf
 
1. primary dns using bind for a and cname record for ipv4 and ipv6
1. primary dns using bind for a and cname record for ipv4 and ipv61. primary dns using bind for a and cname record for ipv4 and ipv6
1. primary dns using bind for a and cname record for ipv4 and ipv6
 
SFScon 22 - Dashamir Hoxha - Manage your own DNS.pdf
SFScon 22 - Dashamir Hoxha - Manage your own DNS.pdfSFScon 22 - Dashamir Hoxha - Manage your own DNS.pdf
SFScon 22 - Dashamir Hoxha - Manage your own DNS.pdf
 
Installation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 ServerInstallation of Active Directory on Windows Server 2003 Server
Installation of Active Directory on Windows Server 2003 Server
 
Domain Name Service
Domain Name ServiceDomain Name Service
Domain Name Service
 

Último

Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu DhabiMussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
romeke1848
 
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptxLESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
matthewmirafuentes
 
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
txkonu
 
Van Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson todayVan Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson today
lucygibson17
 
codes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptxcodes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptx
17duffyc
 
一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证
一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证
一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证
khuurq8kz
 
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Sheetaleventcompany
 
Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...
Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...
Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...
delhimunirka15
 
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Nitya salvi
 

Último (20)

Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu DhabiMussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
Mussafah Call Girls +971525373611 Call Girls in Mussafah Abu Dhabi
 
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptxLESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
LESSON-1-MUSIC-Q4 also a reviewer mapeh.pptx
 
Call Girls In Firozabad Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Firozabad Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...Call Girls In Firozabad Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
Call Girls In Firozabad Escorts ☎️8617370543 🔝 💃 Enjoy 24/7 Escort Service En...
 
Headshots and Personal Branding by Julie King Photography
Headshots and Personal Branding by Julie King PhotographyHeadshots and Personal Branding by Julie King Photography
Headshots and Personal Branding by Julie King Photography
 
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
一比一原版(YU学位证书)约克大学毕业证学历认证新版办理
 
sources of Hindu law kdaenflkjwwfererger
sources of Hindu law kdaenflkjwwferergersources of Hindu law kdaenflkjwwfererger
sources of Hindu law kdaenflkjwwfererger
 
Completed Event Presentation for Huma 1305
Completed Event Presentation for Huma 1305Completed Event Presentation for Huma 1305
Completed Event Presentation for Huma 1305
 
Jaro je tady - Spring is here (Judith) 2
Jaro je tady - Spring is here (Judith) 2Jaro je tady - Spring is here (Judith) 2
Jaro je tady - Spring is here (Judith) 2
 
Van Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson todayVan Gogh Powerpoint for art lesson today
Van Gogh Powerpoint for art lesson today
 
Call Girls Sultanpur Just Call 📞 8617370543 Top Class Call Girl Service Avail...
Call Girls Sultanpur Just Call 📞 8617370543 Top Class Call Girl Service Avail...Call Girls Sultanpur Just Call 📞 8617370543 Top Class Call Girl Service Avail...
Call Girls Sultanpur Just Call 📞 8617370543 Top Class Call Girl Service Avail...
 
Sui Generis Magazine volume one Kristen Murillo.pdf
Sui Generis Magazine volume one Kristen Murillo.pdfSui Generis Magazine volume one Kristen Murillo.pdf
Sui Generis Magazine volume one Kristen Murillo.pdf
 
Azamgarh Call Girls WhatsApp Chat: 📞 8617370543 (24x7 ) Service Available Nea...
Azamgarh Call Girls WhatsApp Chat: 📞 8617370543 (24x7 ) Service Available Nea...Azamgarh Call Girls WhatsApp Chat: 📞 8617370543 (24x7 ) Service Available Nea...
Azamgarh Call Girls WhatsApp Chat: 📞 8617370543 (24x7 ) Service Available Nea...
 
codes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptxcodes and conventions of film magazine and website.pptx
codes and conventions of film magazine and website.pptx
 
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
SB_ Pretzel and the puppies_ Rough_ RiverPhan (2024)
 
一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证
一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证
一比一原版美国西雅图大学毕业证(Seattle毕业证书)毕业证成绩单留信认证
 
Digital C-Type Printing: Revolutionizing The Future Of Photographic Prints
Digital C-Type Printing: Revolutionizing The Future Of Photographic PrintsDigital C-Type Printing: Revolutionizing The Future Of Photographic Prints
Digital C-Type Printing: Revolutionizing The Future Of Photographic Prints
 
SB_ Dragons Riders of Berk_ Rough_ RiverPhan (2024)
SB_ Dragons Riders of Berk_ Rough_ RiverPhan (2024)SB_ Dragons Riders of Berk_ Rough_ RiverPhan (2024)
SB_ Dragons Riders of Berk_ Rough_ RiverPhan (2024)
 
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
Call Girl In Chandigarh ☎ 08868886958✅ Just Genuine Call Call Girls Chandigar...
 
Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...
Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...
Azad Nagar Call Girls ,☎️ ((#9711106444)), 💘 Full enjoy Low rate girl💘 Genuin...
 
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
Russian Call Girls Lucknow Just Call 👉👉 📞 8617370543 Top Class Call Girl Serv...
 

Implementing DNS in Samba PDC