Samba DC - NT_STATUS_OBJECT_NAME_NOT_FOUNDWindows Active Directory naming best practices?Samba4 as an Active Directory Controller and bind9 zonesWin7 clients failing with cached credentials on samba4 RODCJoin samba4 member serverHow to migrate a bugged samba 4.0.0beta2 Debian server to a new one?Samba4 and Kerberos configuration on a dedicated serverSamba4 & Active Directory Kerberos [Cannot contact any KDC for realm 'INTERNAL.CORP.COM' while getting initial credentialsAuthentication issues when clients access domain-joined server from non Samba4 subdomain DNS nameFolder redirection to Samba fails, though mapping drives works [SOLVED]Samba ADS: Cannot contact any KDC for requested realmWhy does Samba4 fail with NT_STATUS_INTERNAL_ERROR on Ubuntu 18.04
Control variables and other independent variables
Is the schwa sound consistent?
Looking for a simple way to manipulate one column of a matrix
Does Lawful Interception of 4G / the proposed 5G provide a back door for hackers as well?
Delta TSA-Precheck status removed
What does i386 mean on macOS Mojave?
Was the Highlands Ranch shooting the 115th mass shooting in the US in 2019
How to make the table in the figure in LaTeX?
Was this a power play by Daenerys?
The lexical root of the past tense forms differs from the lexical root of the infinitive form
Noob at soldering, can anyone explain why my circuit won't work?
Drawing perpendicular lines, filling areas
Why was this sacrifice sufficient?
histogram using edges
Ex-manager wants to stay in touch, I don't want to
Make all the squares explode
As programers say: Strive to be lazy
Can the sorting of a list be verified without comparing neighbors?
Drawing Quarter-Circle
What food production methods would allow a metropolis like New York to become self sufficient
How old is Captain America at the end of "Avengers: Endgame"?
Should these notes be played as a chord or one after another?
How do I get past a 3-year ban from overstay with VWP?
Limit of an integral vs Limit of the integrand
Samba DC - NT_STATUS_OBJECT_NAME_NOT_FOUND
Windows Active Directory naming best practices?Samba4 as an Active Directory Controller and bind9 zonesWin7 clients failing with cached credentials on samba4 RODCJoin samba4 member serverHow to migrate a bugged samba 4.0.0beta2 Debian server to a new one?Samba4 and Kerberos configuration on a dedicated serverSamba4 & Active Directory Kerberos [Cannot contact any KDC for realm 'INTERNAL.CORP.COM' while getting initial credentialsAuthentication issues when clients access domain-joined server from non Samba4 subdomain DNS nameFolder redirection to Samba fails, though mapping drives works [SOLVED]Samba ADS: Cannot contact any KDC for requested realmWhy does Samba4 fail with NT_STATUS_INTERNAL_ERROR on Ubuntu 18.04
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
What am I doing wrong!!! Argh!!!
I’m trying to get an Ubuntu 14.04 server running Samba as domain controller.
Setup is a VM (10.0.0.1, samba.test.local) running a fresh & basic installation of Ubuntu 14.04.
After the installation is complete I did
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Then the following packages have been installed via apt-get set up
openssh-server
openssh-client
ntp
bind9
dnsutils
acl
attr
samba
winbind
smbclient
NTP setup and time in sync.
BIND9 setup to provide dns resolution for test.local domain as it’s a test network.
Changed the FSTAB file to the following
LABEL=cloudimg-rootfs / ext4 user_xattr,acl,barrier=1,errors=remount-ro,relatime 0 0
Now here’s where it goes pear shaped.
First of all I stop samba, smbd, nmbd and samba-ad-dc
Then I do the following
rm -rf /etc/samba
rm -rf /var/lib/samba/private/*
rm -rf /var/lib/samba/sysvol/*
samba-tool domain provision --domain=TEST --adminpass="Password1" --dns-backend= SAMBA_INTERNAL --server-role=dc --function-level=2008_R2 --use-xattr=yes --use-rfc2307 --realm=ad.test.local --host-name=samba.text.local
Looking up IPv4 addresses
More than one IPv4 address found. Using 10.0.2.15 <<-- Not sure where it gets this address as is not bound anywhere.
Looking up IPv6 addresses
No IPv6 address will be assigned
Setting up share.ldb
Setting up secrets.ldb
Setting up the registry
Setting up the privileges database
Setting up idmap db
Setting up SAM db
Setting up sam.ldb partitions and settings
Setting up sam.ldb rootDSE
Pre-loading the Samba 4 and AD schema
Adding DomainDN: DC=ad,DC=test,DC=local
Adding configuration container
Setting up sam.ldb schema
Setting up sam.ldb configuration data
Setting up display specifiers
Modifying display specifiers
Adding users container
Modifying users container
Adding computers container
Modifying computers container
Setting up sam.ldb data
Setting up well known security principals
Setting up sam.ldb users and groups
Setting up self join
Adding DNS accounts
Creating CN=MicrosoftDNS,CN=System,DC=ad,DC=test,DC=local
Creating DomainDnsZones and ForestDnsZones partitions
Populating DomainDnsZones and ForestDnsZones partitions
Setting up sam.ldb rootDSE marking as synchronized
Fixing provision GUIDs
A Kerberos configuration suitable for Samba 4 has been generated at /var/lib/samba/private/krb5.conf
Setting up fake yp server settings
Once the above files are installed, your Samba4 server will be ready to use
Server Role: active directory domain controller
Hostname: samba.test.local
NetBIOS Domain: TEST
DNS Domain: ad.test.local
DOMAIN SID: S-1-5-21-3934883758-3531211222-3658496477
Now when I do a smbclient -L localhost -U% I get the following error.
session setup failed: NT_STATUS_OBJECT_NAME_NOT_FOUND
What am I missing?
What else do I need to configure.
I was following the guide at this location (http://blogging.dragon.org.uk/samba4-ad-dc-on-ubuntu-14-04/) but now I’m stuck.
samba4
add a comment |
What am I doing wrong!!! Argh!!!
I’m trying to get an Ubuntu 14.04 server running Samba as domain controller.
Setup is a VM (10.0.0.1, samba.test.local) running a fresh & basic installation of Ubuntu 14.04.
After the installation is complete I did
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Then the following packages have been installed via apt-get set up
openssh-server
openssh-client
ntp
bind9
dnsutils
acl
attr
samba
winbind
smbclient
NTP setup and time in sync.
BIND9 setup to provide dns resolution for test.local domain as it’s a test network.
Changed the FSTAB file to the following
LABEL=cloudimg-rootfs / ext4 user_xattr,acl,barrier=1,errors=remount-ro,relatime 0 0
Now here’s where it goes pear shaped.
First of all I stop samba, smbd, nmbd and samba-ad-dc
Then I do the following
rm -rf /etc/samba
rm -rf /var/lib/samba/private/*
rm -rf /var/lib/samba/sysvol/*
samba-tool domain provision --domain=TEST --adminpass="Password1" --dns-backend= SAMBA_INTERNAL --server-role=dc --function-level=2008_R2 --use-xattr=yes --use-rfc2307 --realm=ad.test.local --host-name=samba.text.local
Looking up IPv4 addresses
More than one IPv4 address found. Using 10.0.2.15 <<-- Not sure where it gets this address as is not bound anywhere.
Looking up IPv6 addresses
No IPv6 address will be assigned
Setting up share.ldb
Setting up secrets.ldb
Setting up the registry
Setting up the privileges database
Setting up idmap db
Setting up SAM db
Setting up sam.ldb partitions and settings
Setting up sam.ldb rootDSE
Pre-loading the Samba 4 and AD schema
Adding DomainDN: DC=ad,DC=test,DC=local
Adding configuration container
Setting up sam.ldb schema
Setting up sam.ldb configuration data
Setting up display specifiers
Modifying display specifiers
Adding users container
Modifying users container
Adding computers container
Modifying computers container
Setting up sam.ldb data
Setting up well known security principals
Setting up sam.ldb users and groups
Setting up self join
Adding DNS accounts
Creating CN=MicrosoftDNS,CN=System,DC=ad,DC=test,DC=local
Creating DomainDnsZones and ForestDnsZones partitions
Populating DomainDnsZones and ForestDnsZones partitions
Setting up sam.ldb rootDSE marking as synchronized
Fixing provision GUIDs
A Kerberos configuration suitable for Samba 4 has been generated at /var/lib/samba/private/krb5.conf
Setting up fake yp server settings
Once the above files are installed, your Samba4 server will be ready to use
Server Role: active directory domain controller
Hostname: samba.test.local
NetBIOS Domain: TEST
DNS Domain: ad.test.local
DOMAIN SID: S-1-5-21-3934883758-3531211222-3658496477
Now when I do a smbclient -L localhost -U% I get the following error.
session setup failed: NT_STATUS_OBJECT_NAME_NOT_FOUND
What am I missing?
What else do I need to configure.
I was following the guide at this location (http://blogging.dragon.org.uk/samba4-ad-dc-on-ubuntu-14-04/) but now I’m stuck.
samba4
Realm isad.test.local
, hostname should besamba.ad.test.local
, notsamba.text.local
. Might not be the whole problem.
– Xalorous
Aug 9 '18 at 22:23
add a comment |
What am I doing wrong!!! Argh!!!
I’m trying to get an Ubuntu 14.04 server running Samba as domain controller.
Setup is a VM (10.0.0.1, samba.test.local) running a fresh & basic installation of Ubuntu 14.04.
After the installation is complete I did
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Then the following packages have been installed via apt-get set up
openssh-server
openssh-client
ntp
bind9
dnsutils
acl
attr
samba
winbind
smbclient
NTP setup and time in sync.
BIND9 setup to provide dns resolution for test.local domain as it’s a test network.
Changed the FSTAB file to the following
LABEL=cloudimg-rootfs / ext4 user_xattr,acl,barrier=1,errors=remount-ro,relatime 0 0
Now here’s where it goes pear shaped.
First of all I stop samba, smbd, nmbd and samba-ad-dc
Then I do the following
rm -rf /etc/samba
rm -rf /var/lib/samba/private/*
rm -rf /var/lib/samba/sysvol/*
samba-tool domain provision --domain=TEST --adminpass="Password1" --dns-backend= SAMBA_INTERNAL --server-role=dc --function-level=2008_R2 --use-xattr=yes --use-rfc2307 --realm=ad.test.local --host-name=samba.text.local
Looking up IPv4 addresses
More than one IPv4 address found. Using 10.0.2.15 <<-- Not sure where it gets this address as is not bound anywhere.
Looking up IPv6 addresses
No IPv6 address will be assigned
Setting up share.ldb
Setting up secrets.ldb
Setting up the registry
Setting up the privileges database
Setting up idmap db
Setting up SAM db
Setting up sam.ldb partitions and settings
Setting up sam.ldb rootDSE
Pre-loading the Samba 4 and AD schema
Adding DomainDN: DC=ad,DC=test,DC=local
Adding configuration container
Setting up sam.ldb schema
Setting up sam.ldb configuration data
Setting up display specifiers
Modifying display specifiers
Adding users container
Modifying users container
Adding computers container
Modifying computers container
Setting up sam.ldb data
Setting up well known security principals
Setting up sam.ldb users and groups
Setting up self join
Adding DNS accounts
Creating CN=MicrosoftDNS,CN=System,DC=ad,DC=test,DC=local
Creating DomainDnsZones and ForestDnsZones partitions
Populating DomainDnsZones and ForestDnsZones partitions
Setting up sam.ldb rootDSE marking as synchronized
Fixing provision GUIDs
A Kerberos configuration suitable for Samba 4 has been generated at /var/lib/samba/private/krb5.conf
Setting up fake yp server settings
Once the above files are installed, your Samba4 server will be ready to use
Server Role: active directory domain controller
Hostname: samba.test.local
NetBIOS Domain: TEST
DNS Domain: ad.test.local
DOMAIN SID: S-1-5-21-3934883758-3531211222-3658496477
Now when I do a smbclient -L localhost -U% I get the following error.
session setup failed: NT_STATUS_OBJECT_NAME_NOT_FOUND
What am I missing?
What else do I need to configure.
I was following the guide at this location (http://blogging.dragon.org.uk/samba4-ad-dc-on-ubuntu-14-04/) but now I’m stuck.
samba4
What am I doing wrong!!! Argh!!!
I’m trying to get an Ubuntu 14.04 server running Samba as domain controller.
Setup is a VM (10.0.0.1, samba.test.local) running a fresh & basic installation of Ubuntu 14.04.
After the installation is complete I did
apt-get update
apt-get upgrade
apt-get dist-upgrade
reboot
Then the following packages have been installed via apt-get set up
openssh-server
openssh-client
ntp
bind9
dnsutils
acl
attr
samba
winbind
smbclient
NTP setup and time in sync.
BIND9 setup to provide dns resolution for test.local domain as it’s a test network.
Changed the FSTAB file to the following
LABEL=cloudimg-rootfs / ext4 user_xattr,acl,barrier=1,errors=remount-ro,relatime 0 0
Now here’s where it goes pear shaped.
First of all I stop samba, smbd, nmbd and samba-ad-dc
Then I do the following
rm -rf /etc/samba
rm -rf /var/lib/samba/private/*
rm -rf /var/lib/samba/sysvol/*
samba-tool domain provision --domain=TEST --adminpass="Password1" --dns-backend= SAMBA_INTERNAL --server-role=dc --function-level=2008_R2 --use-xattr=yes --use-rfc2307 --realm=ad.test.local --host-name=samba.text.local
Looking up IPv4 addresses
More than one IPv4 address found. Using 10.0.2.15 <<-- Not sure where it gets this address as is not bound anywhere.
Looking up IPv6 addresses
No IPv6 address will be assigned
Setting up share.ldb
Setting up secrets.ldb
Setting up the registry
Setting up the privileges database
Setting up idmap db
Setting up SAM db
Setting up sam.ldb partitions and settings
Setting up sam.ldb rootDSE
Pre-loading the Samba 4 and AD schema
Adding DomainDN: DC=ad,DC=test,DC=local
Adding configuration container
Setting up sam.ldb schema
Setting up sam.ldb configuration data
Setting up display specifiers
Modifying display specifiers
Adding users container
Modifying users container
Adding computers container
Modifying computers container
Setting up sam.ldb data
Setting up well known security principals
Setting up sam.ldb users and groups
Setting up self join
Adding DNS accounts
Creating CN=MicrosoftDNS,CN=System,DC=ad,DC=test,DC=local
Creating DomainDnsZones and ForestDnsZones partitions
Populating DomainDnsZones and ForestDnsZones partitions
Setting up sam.ldb rootDSE marking as synchronized
Fixing provision GUIDs
A Kerberos configuration suitable for Samba 4 has been generated at /var/lib/samba/private/krb5.conf
Setting up fake yp server settings
Once the above files are installed, your Samba4 server will be ready to use
Server Role: active directory domain controller
Hostname: samba.test.local
NetBIOS Domain: TEST
DNS Domain: ad.test.local
DOMAIN SID: S-1-5-21-3934883758-3531211222-3658496477
Now when I do a smbclient -L localhost -U% I get the following error.
session setup failed: NT_STATUS_OBJECT_NAME_NOT_FOUND
What am I missing?
What else do I need to configure.
I was following the guide at this location (http://blogging.dragon.org.uk/samba4-ad-dc-on-ubuntu-14-04/) but now I’m stuck.
samba4
samba4
edited Jun 19 '16 at 7:33
Jim B
23.2k32858
23.2k32858
asked Jun 17 '16 at 11:21
Ian ChilversIan Chilvers
1372314
1372314
Realm isad.test.local
, hostname should besamba.ad.test.local
, notsamba.text.local
. Might not be the whole problem.
– Xalorous
Aug 9 '18 at 22:23
add a comment |
Realm isad.test.local
, hostname should besamba.ad.test.local
, notsamba.text.local
. Might not be the whole problem.
– Xalorous
Aug 9 '18 at 22:23
Realm is
ad.test.local
, hostname should be samba.ad.test.local
, not samba.text.local
. Might not be the whole problem.– Xalorous
Aug 9 '18 at 22:23
Realm is
ad.test.local
, hostname should be samba.ad.test.local
, not samba.text.local
. Might not be the whole problem.– Xalorous
Aug 9 '18 at 22:23
add a comment |
1 Answer
1
active
oldest
votes
(This is really more like a comment, but it's too long...)
To set up Samba4, don't follow random guides, stick to the Samba Wiki, specifically: "Set up a Samba Active Directory Domain Controller."
When you're using Samba as an AD DC, your first step in troubleshooting is to make sure DNS is working properly.
Your comment Not sure where it gets this address as is not bound anywhere.
is an indication that your DNS configuration isn't correct. Make sure your DC's host name resolves correctly to its IP.
It's not the cause of this particular error, but using .local as a domain name is a bad idea, against everyone's best practices... Use a subdomain of a domain you own.
Finally, you have a typo in your provision command: the realm and host name don't match.
There is no reason to not use test.local for a test platform. It's not going to be routed anywhere. I administer an isolated network that usesorgname.local
for our AD domain. We're leaving AD and will be using certificates issued by parent organization, so as we leave AD we're migrating domain name toorgname.parentorg.tld
. Bottom line, if the network stands alone and does not use routing or need connection to external DNS, there's nothing stopping you from using any domain suffix you wish. And that linked page suggests using subdomain of owned name rather than the owned name itself.
– Xalorous
Aug 9 '18 at 22:25
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f784582%2fsamba-dc-nt-status-object-name-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
(This is really more like a comment, but it's too long...)
To set up Samba4, don't follow random guides, stick to the Samba Wiki, specifically: "Set up a Samba Active Directory Domain Controller."
When you're using Samba as an AD DC, your first step in troubleshooting is to make sure DNS is working properly.
Your comment Not sure where it gets this address as is not bound anywhere.
is an indication that your DNS configuration isn't correct. Make sure your DC's host name resolves correctly to its IP.
It's not the cause of this particular error, but using .local as a domain name is a bad idea, against everyone's best practices... Use a subdomain of a domain you own.
Finally, you have a typo in your provision command: the realm and host name don't match.
There is no reason to not use test.local for a test platform. It's not going to be routed anywhere. I administer an isolated network that usesorgname.local
for our AD domain. We're leaving AD and will be using certificates issued by parent organization, so as we leave AD we're migrating domain name toorgname.parentorg.tld
. Bottom line, if the network stands alone and does not use routing or need connection to external DNS, there's nothing stopping you from using any domain suffix you wish. And that linked page suggests using subdomain of owned name rather than the owned name itself.
– Xalorous
Aug 9 '18 at 22:25
add a comment |
(This is really more like a comment, but it's too long...)
To set up Samba4, don't follow random guides, stick to the Samba Wiki, specifically: "Set up a Samba Active Directory Domain Controller."
When you're using Samba as an AD DC, your first step in troubleshooting is to make sure DNS is working properly.
Your comment Not sure where it gets this address as is not bound anywhere.
is an indication that your DNS configuration isn't correct. Make sure your DC's host name resolves correctly to its IP.
It's not the cause of this particular error, but using .local as a domain name is a bad idea, against everyone's best practices... Use a subdomain of a domain you own.
Finally, you have a typo in your provision command: the realm and host name don't match.
There is no reason to not use test.local for a test platform. It's not going to be routed anywhere. I administer an isolated network that usesorgname.local
for our AD domain. We're leaving AD and will be using certificates issued by parent organization, so as we leave AD we're migrating domain name toorgname.parentorg.tld
. Bottom line, if the network stands alone and does not use routing or need connection to external DNS, there's nothing stopping you from using any domain suffix you wish. And that linked page suggests using subdomain of owned name rather than the owned name itself.
– Xalorous
Aug 9 '18 at 22:25
add a comment |
(This is really more like a comment, but it's too long...)
To set up Samba4, don't follow random guides, stick to the Samba Wiki, specifically: "Set up a Samba Active Directory Domain Controller."
When you're using Samba as an AD DC, your first step in troubleshooting is to make sure DNS is working properly.
Your comment Not sure where it gets this address as is not bound anywhere.
is an indication that your DNS configuration isn't correct. Make sure your DC's host name resolves correctly to its IP.
It's not the cause of this particular error, but using .local as a domain name is a bad idea, against everyone's best practices... Use a subdomain of a domain you own.
Finally, you have a typo in your provision command: the realm and host name don't match.
(This is really more like a comment, but it's too long...)
To set up Samba4, don't follow random guides, stick to the Samba Wiki, specifically: "Set up a Samba Active Directory Domain Controller."
When you're using Samba as an AD DC, your first step in troubleshooting is to make sure DNS is working properly.
Your comment Not sure where it gets this address as is not bound anywhere.
is an indication that your DNS configuration isn't correct. Make sure your DC's host name resolves correctly to its IP.
It's not the cause of this particular error, but using .local as a domain name is a bad idea, against everyone's best practices... Use a subdomain of a domain you own.
Finally, you have a typo in your provision command: the realm and host name don't match.
edited Apr 13 '17 at 12:14
Community♦
1
1
answered Jun 22 '16 at 4:34
Ward♦Ward
11.7k73956
11.7k73956
There is no reason to not use test.local for a test platform. It's not going to be routed anywhere. I administer an isolated network that usesorgname.local
for our AD domain. We're leaving AD and will be using certificates issued by parent organization, so as we leave AD we're migrating domain name toorgname.parentorg.tld
. Bottom line, if the network stands alone and does not use routing or need connection to external DNS, there's nothing stopping you from using any domain suffix you wish. And that linked page suggests using subdomain of owned name rather than the owned name itself.
– Xalorous
Aug 9 '18 at 22:25
add a comment |
There is no reason to not use test.local for a test platform. It's not going to be routed anywhere. I administer an isolated network that usesorgname.local
for our AD domain. We're leaving AD and will be using certificates issued by parent organization, so as we leave AD we're migrating domain name toorgname.parentorg.tld
. Bottom line, if the network stands alone and does not use routing or need connection to external DNS, there's nothing stopping you from using any domain suffix you wish. And that linked page suggests using subdomain of owned name rather than the owned name itself.
– Xalorous
Aug 9 '18 at 22:25
There is no reason to not use test.local for a test platform. It's not going to be routed anywhere. I administer an isolated network that uses
orgname.local
for our AD domain. We're leaving AD and will be using certificates issued by parent organization, so as we leave AD we're migrating domain name to orgname.parentorg.tld
. Bottom line, if the network stands alone and does not use routing or need connection to external DNS, there's nothing stopping you from using any domain suffix you wish. And that linked page suggests using subdomain of owned name rather than the owned name itself.– Xalorous
Aug 9 '18 at 22:25
There is no reason to not use test.local for a test platform. It's not going to be routed anywhere. I administer an isolated network that uses
orgname.local
for our AD domain. We're leaving AD and will be using certificates issued by parent organization, so as we leave AD we're migrating domain name to orgname.parentorg.tld
. Bottom line, if the network stands alone and does not use routing or need connection to external DNS, there's nothing stopping you from using any domain suffix you wish. And that linked page suggests using subdomain of owned name rather than the owned name itself.– Xalorous
Aug 9 '18 at 22:25
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f784582%2fsamba-dc-nt-status-object-name-not-found%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Realm is
ad.test.local
, hostname should besamba.ad.test.local
, notsamba.text.local
. Might not be the whole problem.– Xalorous
Aug 9 '18 at 22:23