Is it Possible to Promote DC on a Subnet With Connectivity to a Site DC But Not DC with FSMO Roles???

I apologize in advance for the rambling novella, but I tried to include as many details ahead of time as I could.
I guess like most issues, this one's been evolving for a while, it started out with us trying to add a new member 
to a replication group that's on a subnet without connectivity to the FSMO roles holder. I'll try to describe the 
layout as best as I can up front.
The AD only has one domain & both the forest & domain are at 2008R2 function level. We've got two sites defined in 
Sites & Services, Site A is an off-site datacenter with one associated subnet & Site B with 6 associated subnets, A-F. 
The two sites are connected by a WAN link from a cable provider. Subnets E & F at Site B have no connectivity to Site A 
across that WAN, only what's available through the front side of the datacenter through the public Internet. The network 
engineering group involved refuses to route that WAN traffic to those two subnets & we've got no recourse against that 
decision; so I'm trying to find a way to accomplish this without that if possible.
The FSMO roles holder is located at Site A. I know that I can define a Site C, add Subnets E & F to that site, & then 
configure an SMTP site link between Sites A & C, but that only handles AD replication, correct? That still wouldn't allow me, for example, 
to enumerate DFS namespaces from subnets E & F, or to add a fileserver on either of those subnets as a member to an existing
DFS replication group, right? Also, root scalability is enabled on all the namespace shares.
Is there a way to accomplish both of these things without transferring the FSMO roles from the original DC at Site A to, say, 
the bridgehead DC at Site B? 
When the infrastructure was originally setup by a former analyst, the topology was much more simple & everything was left
under the Default First Site & no sites/subnets were setup until fairly recently to resolve authentication issues on 
Subnets E & F... I bring this up just to say, the FSMO roles holder has held them throughout the build out & addition of 
all sorts of systems & I'm honestly not sure what, if anything, the transfer of those roles will break. 
I definitely don't claim to be an expert in any of this, I'll be the first to say that I'm a work-in-progress on this AD design stuff, 
I'm all for R'ing the FM, but frankly I'm dragging bottom at this point in finding the right FM. I've been digging around
on Google, forums, & TechNet for the past week or so as this has evolved, but no resolution yet. 
On VMs & machines on subnets E & F when I go to DFS Management -> Namespace -> Add Namespaces to Display..., none show up 
automatically & when I click Show Namespaces, after a few seconds I get "The namespaces on DOMAIN cannot be enumerated. The 
specified domain either does not exist or could not be contacted". If I run a dfsutil /pktinfo, nothing shows except \sysvol 
but I can access the domain-based DFS shares through Windows Explorer with the UNC path \\DOMAIN-FQDN\Share-Name then when 
I run a dfsutil /pktinfo it shows all the shares that I've accessed so far.
So either I'm doing something wrong, or, for some random large, multinational company, every sunbet & fileserver one wants 
to add to a DFS Namespace has to be able to contact the FSMO roles holder? Or, are those ADs broken down with a child domain 
for each Site & a FSMO roles holder for that child domain is located in each site?

Hi Matthew,
Unfortunately a lot of the intricacies of DFS leave my head as soon as I’m done with a particular design or troubleshooting situation but from memory, having direct connectivity to the PDC emulator for a particular domain is the key to managing domain based
DFS.
Have a read of this article for the differences between “Optimize for consistency” vs “Optimize for scalability”:
http://technet.microsoft.com/en-us/library/cc737400(v=ws.10).aspx
In brief, I’d say they mean:
In consistency mode the namespace servers always poll the PDCe for the latest and greatest information on the namespaces they are hosting.
In scalability mode the namespace servers should poll the closest DC for information on the namespaces they are hosting.
The key piece of information in that article about scalability mode is: “Updates are still made to the namespace object in Active Directory on the PDC emulator, but namespace servers do not discover those changes until the updated namespace object replicates
(using Active Directory replication) to the closest domain controller for each namespace server.”
I read that as saying you can have a server running DFS-N as long as it has connectivity to a DC but if you want to make changes, do them from a box that has direct connectivity to the PDCe. Then let AD replication float those changes out to your other DCs
where the remote DFS-N server will eventually pick them up. Give it a try and see how you get on.
That being said, you may want to double check that you have configured the most appropriate FSMO role placement in your environment's AD design:
http://technet.microsoft.com/en-us/library/cc754889(v=ws.10).aspx
And a DFS response probably wouldn’t be complete without an AskDS link:
http://blogs.technet.com/b/askds/archive/2012/07/24/common-dfsn-configuration-mistakes-and-oversights.aspx
These links may also help:
http://blogs.technet.com/b/filecab/archive/2012/08/26/dfs-namespace-scalability-considerations.aspx
http://blogs.technet.com/b/josebda/archive/2009/12/30/windows-server-dfs-namespaces-reference.aspx
http://blogs.technet.com/b/josebda/archive/2009/06/26/how-many-dfs-n-namespaces-servers-do-you-need.aspx
I hope this helps,
Mark

Similar Messages

  • How do I adjust the page orientation in Pages?  I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    I want to keep the pages above the section break as portrait, and the ones below I want to change into landscape.  Is this possible?  I can only get it to be one or the other but not both.

    The work around is to do two documents, one in portrait format and one in landscape format. When finished export to Pdf. open in Preview by select both files and use Cmd + O or doubleclick. You can now in Previews thumbnail column the pages from one document into the other and then save.
    If you have created only one with i.e. all pages in portrait format but with the content for the landscape pages rotated on the pages, you can rotate the pages in Preview. Two ways to get the same result.

  • Is it possible http connection work well in simulator but not in mobile?

    i am developing database three tier client/server application.
    i want to connect mobile application to databse server via servlet page using tomcat server.
    my code is working well in java wireless toolkit and it can download and upload data using my servlet page in which i had used JDBC connectivity but when i am installing same JAR file into Nokia 6030 it will gives me error like java.io.IOException: error in http operation. i had used this code to establish connectivityhcon = (HttpConnection)Connector.open(url, 3);
    hcon.setRequestMethod(HttpConnection.POST);
    hcon.setRequestProperty( "User-Agent","Profile/MIDP-2.0, Configuration/CLDC-1.0");
    hcon.setRequestProperty("Content-Language","en-US");
    hcon.setRequestProperty( "Content-Type", "application/x-www-form-urlencoded" );
    dos = (DataOutputStream)hcon.openDataOutputStream();               
    byte abyte0[] = data.getBytes();      
    dos.write(abyte0);
    dos.flush();
    dis = (DataInputStream)hcon.openDataInputStream();
    while((ch = dis.read()) != -1)
               response = response+(char)ch;
    if(hcon.getResponseCode()==200 && !response.equals("ERROR"))     
         setData(response);
    else
         errorAlert("Server Error","Server can not handle your request at this time, Error msg : " + response);in this code i am sending data to server at url where i have used servlet post method this method work well in simulator but when i m instaling this program into deveice request generated from mobile didn't came to servlet.
    whe i am browsing same page's get method through WAP in mobile it is working but thruogh application not connecting.
    is there any more setting require to browse url via application like in Accesspoint proxy server of provider or i need to change code?.
    If anybody having the solution then please send me.
    thanx .
    jasmit vala.
    [email protected]

    Hi,
    I am also facing the same problem?
    Have u got any solution?
    pls let me know
    its urgent
    thanx in adv.
    Regards,
    Raj

  • Disable internet but not MMS, is it possible?

    Hi guys,
    my girlfriend has an iPhone 4, the "stable" situation was that she was able to send and receive MMS, but not to browse in internet (but through WiFi of course). She liked the situation, because in Italy rates to go in internet are not very convenient...
    Then Vodafone decided to provide her (as gift) with one month of free internet. She accepted and her iPhone "got configured"... somehow...
    Now that the month is expired, now and then some application connects and she pay quite a lot of money to Vodafone... The only way in which she can avoid the problem is by disabling 3G and GPRS data, however with this she can't send and receive MMS...
    Vodafone said that it is not in their services configuration the problem, but in her phone, and that she should find proper way to disable internet. Any idea of how to do it, without losing MMS?
    THANKS!!
    Marco

    I have an iPhone 3GS, and I live happily without being connected... Or better, I have WiFi in office and at home and I don't need more... Indeed my iPhone can send MMS, but it cannot browse internet without Vodafone configuring my phone somehow...
    The same situation applied to my girlfriend with her iPhone 4G, but after Vodafone "promotion", now the phone is configured and we cannot do anything about it...
    The question was if it was possible to configure iPhone 4G to go back to the previous situation... In 3GS, I have Settings -> General -> Network, I have options to configure APN connection data, while iPhone 4G doesn't seem to have it... Does anyone know how to configure the phone?
    Thanks,
    Marco

  • Is it possible to pass a string from an applet to the web site?

    Hi, everybody!
    Is it possible to pass a String from an applet to a web site (as a field value in a form, an ASP variable, or anything else). Basically, I have a pretty large String that is being edited by an applet. When a user clicks on the submit button, a different page will show up which has to display the modified string. The String is pretty large so it doesn't fit into the URL variable.
    Please, help!
    Thank you so much!

    Why do you want to do this in Java?
    Javascript is the correct language for these type of situations.
    for instance:
    in the head of your html document:
    <script language=javascript type="text/javascript">
    createWindow(form){
    if(form.text.value!=""){
    newDoc = new document
    newDoc.write(form.text.value)
    newWin = window.open(document,'newWin','width=200;height=150')
    </script>
    in the body:
    <form onSubmit="createWindow(this)">
    <p>
    Enter a String:<input type=text size=30 name="text">
    </p><p>
    <input type=submit value="submit"> 
    <input type=reset value="reset">
    </p>
    </form>

  • Data Migration from 11i to R12 Global - Open POs,lines, receipts & on hand upload, Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines?

    Hi Friends,
    We are in a phase of data migration from 11i to R12 
    I was discussed with client & they wants extraction of all open POs which was generated after 01 Jan 2014 to till date in 11i.
    Condition for open POs is PO qty-received qty=>0
    critical Example for open PO is :PO no: 10 has 4 lines, 3lines full qty has been received & for 1 line partial qty(say 50 out of 100) received.
    in this case he wants in R12 uploading as PO no:10 should entered as open PO with all 4lines & 3 lines complete receipt should be done, for 4th line partial qty i.e 50 should be received.
    the question is if we upload on hand qty first, then open POs & receipts, it will increase the onhand qty in new system(mismatch of on hand qty's 11i to R12) 
    Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines.
    Or Please advice best solution.
    Thanks & Regards
    Giri

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • I have a "company provided Ipad" now using IOS 6.1.3.  the company Will allow me to upgrade to IOS 7 but not to IOS 8.  Is that possible?

    I have a "company provided Ipad" now using IOS 6.1.3.  the company Will allow me to upgrade to IOS 7 but not to IOS 8.  Is that possible?

    No, since the iPad 2 is iOS 8 compatible it can only be updated to iOS 8.  Apple does not support upgrading to interim iOS versions, and removes those files from the servers when a new version is released.  The only path for that iPad 2 is iOS 8.0.2.

  • HT204053 the only way to creat an icloud account is with a ipad, iphone or imac. is it possible to creat the account from my windos PC? i already downladed i cloud, and i have an Apple ID but Not an Icloud account/

    the only way to creat an icloud account is with a ipad, iphone or imac. is it possible to creat the account from my windos PC? i already downladed i cloud, and i have an Apple ID but Not an Icloud account/

    Isa Garduño wrote:
    the only way to creat an icloud account is with a ipad, iphone or imac Apple computer.
    As you already knew, no, you cannot create a new iCloud account from anything but the above devices.
    http://support.apple.com/kb/HT4436

  • How To use the going back function in Safari (multitouch)? Going back on Websites ist only possible using the arrow Key on the left corner but not by using the sweep function like it is possible in macOS.

    How can i use the going back function in Safari like it is possible in MacOS? On the Mac i can chance back to previous Websites by sweeping with two Fingers. Unfortuntely is this Not possible on the ipad. I tried with one and to fingers but it doesn't work.
    The multitouch function is switched on but still Not working. What is wrong? Thx for help.

    To go back a web page in Safari touch the screen with one finger at the extreme left and swipe to the right.
    To go forward a web page in Safari touch the screen with one finger at the extreme right and swipe to the left.

  • Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?

    Is it possible to show a 'My Activity' web part on a SharePoint site if 'My Sites' is not available?
    For example, say there's a SharePoint installation dedicated to particular (custom) SharePoint site. The users go to the site to carry out their tasks. There's no 'My Site' set up in this installation (and for other reasons I'm told it's not an option).
    Is it possible to show a web part here that shows the user's recent activity? The built-in web part for this fails with the error 'Invalid URI: The URI is empty', and the details of it appear to say it's looking for the user's My Site to find out what to show:
    SPMicrofeedContext.SetMySiteHostForContext failed System.UriFormatException: Invalid URI: The URI is empty.     at System.Uri.CreateThis(String uri, Boolean dontEscape, UriKind uriKind)     at Microsoft.Office.Server.Microfeed.SPMicrofeedContext.SetMySiteHostForContext()
    So, while I'd be happy to write a web part (or app part) to display the information instead of using the default part, I'm not sure SharePoint is even storing the activity in a way I can access.
    Some pages like the following: http://sharepointmystery.com/2012/07/22/activity-feeds-in-sharepoint-2013/ make me think it won't be possible - it says: 'The major change from 2010 is that all the [activity] content is stored in the user’s personal site, not
    in a common database.'
    Are activity feeds dependent on 'My Sites' or is there a way to access the information when 'My Sites' is not present in the deployment? I can't find a definitive answer in Microsoft's documentation.

    To clarify, do you have the User Profile Service (including MySite Host) up and running on this environment? That's subtley different to the full MySite experience which is clearly not applicable...
    Interesting question - thanks for that. Until now I didn't realise there was a difference.
    The User Profile Service is up and running, but no MySite Host is set. (I don't believe MySite will be available anywhere here. I guess that means there's no valid MySite Host for me to use.)
    Many thanks,
        Geoff

  • Is It Possible to Add a Fileserver to a DFS Replication Group Without Connectivity to FSMO Roles Holder DC But Connectivity to Site DC???

    I apologize in advance for the rambling novella, but I tried to include as many details ahead of time as I could.
    I guess like most issues, this one's been evolving for a while, it started out with us trying to add a new member 
    to a replication group that's on a subnet without connectivity to the FSMO roles holder. I'll try to describe the 
    layout as best as I can up front.
    The AD only has one domain & both the forest & domain are at 2008R2 function level. We've got two sites defined in 
    Sites & Services, Site A is an off-site datacenter with one associated subnet & Site B with 6 associated subnets, A-F. 
    The two sites are connected by a WAN link from a cable provider. Subnets E & F at Site B have no connectivity to Site A 
    across that WAN, only what's available through the front side of the datacenter through the public Internet. The network 
    engineering group involved refuses to route that WAN traffic to those two subnets & we've got no recourse against that 
    decision; so I'm trying to find a way to accomplish this without that if possible.
    The FSMO roles holder is located at Site A. I know that I can define a Site C, add Subnets E & F to that site, & then 
    configure an SMTP site link between Sites A & C, but that only handles AD replication, correct? That still wouldn't allow me, for example, 
    to enumerate DFS namespaces from subnets E & F, or to add a fileserver on either of those subnets as a member to an existing
    DFS replication group, right? Also, root scalability is enabled on all the namespace shares.
    Is there a way to accomplish both of these things without transferring the FSMO roles from the original DC at Site A to, say, 
    the bridgehead DC at Site B? 
    When the infrastructure was originally setup by a former analyst, the topology was much more simple & everything was left
    under the Default First Site & no sites/subnets were setup until fairly recently to resolve authentication issues on 
    Subnets E & F... I bring this up just to say, the FSMO roles holder has held them throughout the build out & addition of 
    all sorts of systems & I'm honestly not sure what, if anything, the transfer of those roles will break. 
    I definitely don't claim to be an expert in any of this, I'll be the first to say that I'm a work-in-progress on this AD design stuff, 
    I'm all for R'ing the FM, but frankly I'm dragging bottom at this point in finding the right FM. I've been digging around
    on Google, forums, & TechNet for the past week or so as this has evolved, but no resolution yet. 
    On VMs & machines on subnets E & F when I go to DFS Management -> Namespace -> Add Namespaces to Display..., none show up 
    automatically & when I click Show Namespaces, after a few seconds I get "The namespaces on DOMAIN cannot be enumerated. The 
    specified domain either does not exist or could not be contacted". If I run a dfsutil /pktinfo, nothing shows except \sysvol 
    but I can access the domain-based DFS shares through Windows Explorer with the UNC path \\DOMAIN-FQDN\Share-Name then when 
    I run a dfsutil /pktinfo it shows all the shares that I've accessed so far.
    So either I'm doing something wrong, or, for some random large, multinational company, every sunbet & fileserver one wants 
    to add to a DFS Namespace has to be able to contact the FSMO roles holder? Or, are those ADs broken down with a child domain 
    for each Site & a FSMO roles holder for that child domain is located in each site?

    Hi,
    A DC in siteB should helpful. I still not see any article mentioned that a DFS client have to connect to PDC every time trying to access a DFS domain based namespace.
    Please see following article. I pasted a part of it below:
    http://technet.microsoft.com/en-us/library/cc782417(v=ws.10).aspx
    Domain controllers play numerous roles in DFS:
    Domain controllers store DFS metadata in Active Directory about domain-based namespaces. DFS metadata consists of information about entire namespace, including the root, root targets, links, link targets, and settings. By default,root servers
    that host domain-based namespaces periodically poll the domain controller acting as the primary domain controller (PDC) emulator master to obtain an updated version of the DFS metadata and store this metadata in memory.
    So Other DC needs to connect PDC for an updated metadata.
    Whenever an administrator makes a change to a domain-based namespace, the
    change is made on the domain controller acting as the PDC emulator master and is then replicated (via Active Directory replication) to other domain controllers in the domain.
    Domain Name Referral Cache
    A domain name referral contains the NetBIOS and DNS names of the local domain, all trusted domains in the forest, and domains in trusted forests. A
    DFS client requests a domain name referral from a domain controller to determine the domains in which the clients can access domain-based namespaces.
    Domain Controller Referral Cache
    A domain controller referral contains the NetBIOS and DNS names of the domain controllers for the list of domains it has cached. A DFS client requests a domain controller referral from a domain controller (in the client’s domain)
    to determine which domain controllers can provide a referral for a domain-based namespace.
    Domain-based Root Referral Cache
    The domain-based root referrals in this memory cache do not store targets in any particular order. The targets are sorted according to the target selection method only when requested from the client. Also, these referrals are based on DFS metadata stored
    on the local domain controller, not the PDC emulator master.
    Thus it seems to be acceptable to have a disconnect between sites shortly when cache is still working on siteB.
    If you have any feedback on our support, please send to [email protected].

  • Is it possible to connect an iMac to the internet but not to the network?

    Hello,
    I volunteered to purchase an iMac for our company. This huge company maintains a huge windows-only network environment and IT does not support any macs (nor do they want to have them on the network).
    Hence, since we really need this machine to be a mac and not a PC I had to promise to set it up as a stand-alone machine and to get anti-virus protection (as users will be coming in with their jump drives etc). At least for the latter reason (regular updates of virus definitions must be possible) we'd like to have it connected to the internet.
    How would I escape the dilemma that as soon as I'd hook it up via ethernet, it would of course get internet but at the same time would see all other machines on the network? (it will sure do so as I had tried it out with some other machine running on the same OS)
    Is there a way to configure Snow Leopard to allow for internet but not network access?
    Does it make sense at all (for security reasons that is)?
    thank you very much,
    HD

    Is there a way to configure Snow Leopard to allow for internet but not network access?
    Well, 'internet' is 'network access' so at one level your question makes no sense.
    If, on the other hand, what you want to do is segregate your Mac from the other machines then that's a different issue. There are numerous ways of doing that, but most would involve some level of interaction with the network administrators. Given their ana^H^H^H attitude towards Macs that may be an issue.
    The best way would be to setup a separate VLAN for the Mac. This will create a separate logical network within the company network with only this Mac and the network router in it. No PC would see the Mac, and the Mac wouldn't be scarred by seeing all those PCs. This cannot be done without buy-in from the network admins, though.
    A step down from that would be to use one PC in the network as a gateway to the rest of the network. The Mac would talk to this PC, and the PC would pass the data out to the rest of the network. This would require admin rights on the PC, though, which you may or may not have (I've seen a lot of corporate networks… :: shudder ::)
    The last option would be to setup an entirely separate internet connection for the Mac but there are logistical issues there, too.
    My advice: Buy a dozen Krispy Kremes for the network guys and sweet talk them into building you a VLAN.

  • Once completed the form, is it possible to receive the confirmation e-mail with a link addressing to a html archive?

    Once completed the form, is it possible to receive the confirmation e-mail with a link addressing to a html archive?

    I don't know if it is the best solution but you could filter the results to just that client's answers on the summary tab and then PDF that.

  • Is it possible to recover my data from iCloud backup without working wifi? I have as many other upgraded my iPhone 4S to iOS 7.0.2 with the result that the Wi-Fi or Bluetooth no longer works. However, i can connect to iTunes via cable but there is wrong v

    Is it possible to recover my data from iCloud backup without working wifi? I have as many other upgraded my iPhone 4S to iOS 7.0.2 with the result that the Wi-Fi or Bluetooth no longer works. However, i can connect to iTunes via cable but there is wrong version of backup.

    Answer is no.
    If you want the iCloud backup you have to have n internet connection, thus WiFi.
    The not working WiFi has happened with quite a number of users.
    It is not exactly clear what is the cause but there are suggestions to clear it up:
    Some people have had success by removing an apostrophe from the iPhone name. If your iPhone is called something like “John’s iPhone” then this might work. Go to Settings > General > About > Name and change it to something with no apostrophe.
    Some people have reported success by putting the iPhone into Airplane mode and then going to Settings > General > Reset > Reset Network Settings, but the problem may return.
    You could also try going to Settings > Control Center and disable Access on Lock Screen then turn your iPhone off and on again.
    Make sure that your router firmware is up to date.
    Try backing up your iPhone and then restoring it. Check how to factory reset an iPhone for details.
    If nothing is working for you, try contacting Apple or take your iPhone into an Apple Store.
    Succes, Lex

  • HT5219 I would like to use my iMac 7,1 as a monitor for my Mac mini 2012. Is that possible and if yes, what type of cable connection do I need? Thank you.

    I would like to use my iMac 7,1 as a monitor for my Mac mini 2012. Is that possible and if yes, what type of cable connection do I need? Thank you.

    No. Your iMac only has DVI video connection. You would need an iMac with Thunderbolt.

Maybe you are looking for