DBLHelper issue - Name resolution

I have an issue with the DNS Name resolution. Unfortunately I have the red frown:( next to my subscriber.
However, I can ping the subscriber from the publisher with the hostname, and vice versa. I confirmed that all host entries are present as well. Anyone have an idea what else to check for?

Ok, normally check the lmhosts and host files:
Then do a nbtstat -R and ipconfig /flushdns
If you have already tried Reinitialize option in DBLhelper u may try it manually.
http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a00801d11a6.shtml
http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_tech_note09186a00801e7ddf.shtml#topic1
Let us know after that.

Similar Messages

  • Module Function Name Resolution - Issues with DefaultCommandPrefix

    Just getting started on module development, running PS4, and I've run into an... inconsistency... that I'm trying to understand. I've got two test functions, Get-Something and Set-Something in a script module. In my manifest file I specify a DefaultCommandPrefix
    of 'Test'.
    My issue is the function name resolution doesn't result in an executable result if you leave PowerShell up to it's own process.
    To begin with I closed all sessions and deleted all files in the CommandAnalysis directory. After starting a session I waited for the CommandAnalysis cache to populate. Then I ran a series of test commands to illustrate how, most of the time, the function
    name PowerShell registers with tab completion can't be executed because it lacks the 'Test' prefix. Even worse, much of the time tab completion won't recognize the correct (i.e., with prefix) name of the function and honor tab completion for it.
    Having just learned of the CommandAnalysis cache I assumed I would see it change as PowerShell 'learned' more about the module because the name resolves differently over time. I've included three files at the end of this post, the module code (ModuleTest.psm1),
    the manifest (ModuleTest.psd1) and the capture of output to the PowerShell session (ModuleTest.txt). I've tried to include the times I used <tab> and <ret> for tab completion and execution as well as (comments in parenthesis for things I did like
    starting a new session and checking the CommandAnalysis cache for changes).
    An example is, when first starting a session typing 'get-som<tab>' will resolve to 'Get-Something' (prefix 'Test' missing) and typing 'get-test<tab>' won't resolve to 'Get-TestSomething'. Try to execute the 'Get-Something' from tab completion
    and you'll get the 'name not recognized, blah, blah'.
    Now if you type 'get-som<tab>' PowerShell will resolve to 'ModuleTest\Get-Something' - looks promising... but no.  Try to execute the 'ModuleTest\Get-Something' from tab completion and you'll still get the 'name not recognized, blah, blah'.
    Even though the same key strokes resolved differently there were no changes made to the CommandAnalysis cache so I'm lost on why it produces two different (though equally useless) results.
    Manually importing the module and sometimes running Get-Command -Module ModuleTest will make tab completion of the function names behave correctly. Is this a known issue with using DefaultCommandPrefix in script modules or is there something I need to include
    in the manifest to enforce strict name recognition (including the prefix)?
    <ModuleTest.psm1>
    function Get-Something
     Write-Host "Get-Something Executed"
    function Set-Something
     Write-Host "Set-Something Executed"
    <ModuleTest.psd1>
    # Script module or binary module file associated with this manifest
    ModuleToProcess = 'ModuleTest.psm1'
    # Version number of this module.
    ModuleVersion = '1.0.0.0'
    # ID used to uniquely identify this module
    GUID = '241877ff-64be-40c8-a603-8d5acf7a48d8'
    # Author of this module
    Author = 'wb3'
    # Company or vendor of this module
    CompanyName = ''
    # Copyright statement for this module
    Copyright = '(c) 2015. All rights reserved.'
    # Description of the functionality provided by this module
    Description = 'Module description'
    # Minimum version of the Windows PowerShell engine required by this module
    PowerShellVersion = '2.0'
    # Name of the Windows PowerShell host required by this module
    PowerShellHostName = ''
    # Minimum version of the Windows PowerShell host required by this module
    PowerShellHostVersion = ''
    # Minimum version of the .NET Framework required by this module
    DotNetFrameworkVersion = '2.0'
    # Minimum version of the common language runtime (CLR) required by this module
    CLRVersion = '2.0.50727'
    # Processor architecture (None, X86, Amd64, IA64) required by this module
    ProcessorArchitecture = 'None'
    # Modules that must be imported into the global environment prior to importing
    # this module
    RequiredModules = @()
    # Assemblies that must be loaded prior to importing this module
    RequiredAssemblies = @()
    # Script files (.ps1) that are run in the caller's environment prior to
    # importing this module
    ScriptsToProcess = @()
    # Type files (.ps1xml) to be loaded when importing this module
    TypesToProcess = @()
    # Format files (.ps1xml) to be loaded when importing this module
    FormatsToProcess = @()
    # Modules to import as nested modules of the module specified in
    # ModuleToProcess
    NestedModules = @()
    # Default command prefix
    DefaultCommandPrefix = 'Test'
    # Functions to export from this module
    FunctionsToExport = '*'
    # Cmdlets to export from this module
    CmdletsToExport = '*'
    # Variables to export from this module
    VariablesToExport = '*'
    # Aliases to export from this module
    AliasesToExport = '*'
    # List of all modules packaged with this module
    ModuleList = @()
    # List of all files packaged with this module
    FileList = @()
    # Private data to pass to the module specified in ModuleToProcess
    PrivateData = ''
    <ModuleTest.output>
    PS C:\Scripts\PowerShell> Get-ChildItem -Path 'C:\Program Files\WindowsPowerShell\Modules' -Recurse<ret>
        Directory: C:\Program Files\WindowsPowerShell\Modules
    Mode                LastWriteTime     Length Name
    d----          3/5/2015   9:06 AM            ModuleTest
        Directory: C:\Program Files\WindowsPowerShell\Modules\ModuleTest
    Mode                LastWriteTime     Length Name
    -a---          3/5/2015   8:50 AM       2907 ModuleTest.psd1
    -a---          3/5/2015   9:01 AM        140 ModuleTest.psm1
    PS C:\Scripts\PowerShell> Get-Module -ListAvailable<ret>
        Directory: C:\Program Files\WindowsPowerShell\Modules
    ModuleType Version    Name                                ExportedCommands
    Script     1.0.0.0    ModuleTest                          {Get-Something, Set-Something}
    PS C:\Scripts\PowerShell> get-som<tab>
    PS C:\Scripts\PowerShell> Get-Something<ret>
    Get-Something : The term 'Get-Something' is not recognized as the name of a cmdlet, function, script file, or operable
    program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + Get-Something
    + ~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Get-Something:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-som<tab>
    PS C:\Scripts\PowerShell> ModuleTest\Get-Something<ret>
    ModuleTest\Get-Something : The term 'ModuleTest\Get-Something' is not recognized as the name of a cmdlet, function,
    script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is
    correct and try again.
    At line:1 char:1
    + ModuleTest\Get-Something
    + ~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (ModuleTest\Get-Something:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab>
    PS C:\Scripts\PowerShell> Get-TestSomething<ret>
    Get-Something Executed
    (New Session)
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab><ret>
    get-tes : The term 'get-tes' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + get-tes
    + ~~~~~~~
        + CategoryInfo          : ObjectNotFound: (get-tes:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    PS C:\Scripts\PowerShell> Import-Module ModuleTest<ret>
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab><ret>
    PS C:\Scripts\PowerShell> Get-TestSomething
    Get-Something Executed
    (New Session)
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab><ret>
    get-tes : The term 'get-tes' is not recognized as the name of a cmdlet, function, script file, or operable program.
    Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
    At line:1 char:1
    + get-tes
    + ~~~~~~~
        + CategoryInfo          : ObjectNotFound: (get-tes:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    PS C:\Scripts\PowerShell> Get-Command -Module ModuleTest<ret>
    CommandType     Name                                              
    ModuleName
    Function        Get-TestSomething                                 
    ModuleTest
    Function        Set-TestSomething                                 
    ModuleTest
    (No change in CommandAnalysis cache)
    PS C:\Scripts\PowerShell> get-tes<tab>
    PS C:\Scripts\PowerShell> Get-TestSomething<ret>
    Get-Something Executed
    PS C:\Scripts\PowerShell> moduletest\get<tab><ret>
    PS C:\Scripts\PowerShell> Get-TestSomething<ret>
    Get-Something Executed
    William Busby, PMP

    Hi William,
    yes, that's something you'll either have to do the hard way or live with admin confusion.
    If you're using Sapien's PowerShell Studio as an Editor (hint: Usually a great idea), you can very easily rename a function, even in a multi-file module project, by rightcklicking on the function-name and selecting "rename".
    Alternatively you can do a bulk rename with Powershell:
    Get all functions in your module (Load it and check exportedcommands)
    loop over each function-name
    calculate new name
    search your entire project for all references and replace them.
    Let me see ...
    function Rename-ModulePrefix
    [CmdletBinding()]
    Param (
    [Parameter(Position = 0, Mandatory = $true)]
    [string]
    $ModuleName,
    [Parameter(Position = 1, Mandatory = $true)]
    [string]
    $OldPrefix,
    [Parameter(Position = 2, Mandatory = $true)]
    [string]
    $NewPrefix,
    [Parameter(Position = 3)]
    [string]
    $Path
    # Catch all typos
    Import-Module $ModuleName -ErrorAction 'Stop'
    # Get root path if not manually passed
    if (-not $PSBoundParameters["Path"])
    $Path = (Get-Module $ModuleName).Path
    # Get module files
    $Files = Get-ChildItem -Path $path -Recurse -Include "*.ps1", "*.psm1", "*.psd1"
    # Iterate over each file
    foreach ($file in $Files)
    # Null variable in case you get an empty file somewhere and run this from Win 7
    $data = $null
    # Get Content of file
    $data = Get-Content $file
    # Replace strings
    foreach ($c in (Get-Module $ModuleName).ExportedCommands)
    $newName = $c.Name -replace $OldPrefix, $NewPrefix
    $data = $data | ForEach-Object { $_ -replace $c.Name, $newName }
    # Write back to file
    $data | Set-Content $file
    While I didn't proof it, in theory this should do it (Make a backup before running it :) ).
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Connecting from a remote computer / name resolution issues

    My work has two SQL Server 2005 databases, one installed on a Windows XP machine (running some equipment) and one installed on a Windows 7 machine (backing up the files from the XP instance).  Both computers run only the default instance.  I had
    replication set up and functioning (data being created on the XP maching was being replicated to the Win 7 machine) for the last three weeks in July.  I recently noticed that the replication is no longer working (the files were no longer being copied),
    and when I tried to check the status I got an error about named pipes, or, if I disabled named pipes "tcp provider error 0 no such host is known".
    At the time I found the replication problem, I could connect to both databases through SSMS on the Windows 7 machine.  On the XP machine, I could use SSMS to browse to the Win 7 instance but SSMS would not connect to the Win 7 instance by name (same
    errors about no such host known); the connection does go through by IP address.  I can ping from the Win 7 machine to the XP machine both by IP address and by name.  I could ping from the XP machine to the Win 7 machine by IP address but NOT by name.
    I tried running the workgroup wizard on the XP machine, thinking this might help with the name resolution problem.  In the wizard, I changed the workgroup name to a new name.  I changed the workgroup name on the Win 7 machine to match.
    This change did not affect the ping status - I can still ping by both name and IP address from the Win 7 machine, and still only the IP address works from the XP machine.  However, now SSMS on the Win 7 machine no longer sees the XP machine!  Trying
    to log in with either the machine name and the IP address, I now get a "timeout expired" message, and the SSMS login browser does not show the XP machine on the network.
    Any pointers on where to look for the cause of this problem would be very welcome.

    There was some problem (bug?) with the remote connections flag on the Win 7 server.  Someone had posted in the comments to a technet article that unchecking the remote connections box, restarting the server, then re-checking it helped them.  I
    tried it, and that fixed the problem with the Win 7 machine being unable to see the XP machine.
    Olaf's suggestion about the Hosts file fixed the problem with the XP machine having to use the IP address - now it can connect by name as well.
    Now I just have left the problem of a broken subscription to my replication, but that's a separate issue so I'll consider this thread closed.  Thanks to everyone who offered suggestions.

  • Can't start Peer Name Resolution Protocol

    I can't start the service 'Peer Name Resolution Protocol' which is required for HomeGroups.
    There are 3 Peer services on my machine. One is running (Peer Networking Identity Manager). The other one (Peer Networking Grouping) is not because it depends on 'Peer Name Resolution Protocol' which fails to start.
    Both Homegroup services are started and I have IPV6 enabled on my NIC and in my LAN properties.
    The event log has this:
    'The Peer Name Resolution Protocol cloud did not start because the creation of the default identity failed with error code: 0x80630801.'
    Using the Event ID web search it leads me to this:
    Event ID 102 — PNRP Protocol
    I tried what they suggested (it's for Vista) but to no avail.  Perhaps some Permission got borked.  Is there a way to recreate the RSA folder and sub-folders with correct Permissions or perhaps it's some other type of problem?
    I do notice I have a lot of entries in "C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys"
    Any help in getting this Service started will be appreciated.

    Hi,
    This issue can occur by corrupted PNRP service. You can perform the following steps to troubleshoot the issue.
    1. Please download the correct Network Connection registry file from the link below:
    http://cid-6df3bca839e981ef.skydrive.live.com/self.aspx/.Public/PRNP.txt
    2. There will be the PRNP.txt file. Please right click it and rename it to PRNP.reg file.
    3. Double click the PRNP.reg file and click Yes to import the file.
    Note: To avoid unexpected situation, please back up the computer registry before importing the registry file.
    4. Then, please verify the Peer Name Resolution Protocol service and other failure service again.
    a. Click "Start", go to run, type "services.msc" (without quotation marks) in the open box and press Enter.
    Note: If you are prompted for an administrator password or confirmation, type your password, or click Continue.
    b. Right click the "Peer Name Resolution Protocol" service and choose Properties.
    c. Click on the "Log On" tab, please ensure the option "Local System account" is selected and the option "Allow service to interact with desktop" is unchecked.
    d. Click on the "General" tab; make sure the "Startup Type" is "Automatic". Then please click the button "Stop" under "Service Status" to stop the service.
    e. Then please click the button "Start" under "Service Status" to start the service.
    f. Click OK.
    What's the result?
    If the issue persists, please also perform the suggestions from the following article.
    Home Group Issues
    Thanks,
    Novak

  • Enabling Firewall breaks Bonjour name resolution (and other problems)

    Hi there, I thought I had a simple setup but trying to enable VPN & Firewall has shown me there are some issues I need help with:
    Setup: MacOS X Server 10.5.8 on MacPro
    - Machine is Mobile Account Server for 5 other machines connected to network
    - DHCP is obtained from Router in 10.1.10.x range. Server hardcodes its IP in that range (outside of DHCP addressable range)
    - Services running are: AFP, Open Directory, SMB, Software Update
    - All client workstations connect to server using "servername.local"
    This has all been working fine. However over the weekend I tried enabling VPN as we have a public IP address we can use. VPN works fine except:
    a) Plugging an additional ethernet cable into port 2, and configuring that port to have the external "public" IP information caused the "license in use issue" that has been reported here (http://discussions.apple.com/thread.jspa?messageID=9958588&tstart=0) so I had to use the solution of duplicating the existing ethernet config and entering the additional external IP to run both off the same port.
    b) I can't get L2TP working, but I can get P2PP. Seems like other people are having similar issues (http://discussions.apple.com/click.jspa?searchID=-1&messageID=9704644)
    But anyway, so I have P2PP VPN working and without a firewall previous functionality hasn't been impacted. Now of course, I'd be silly to leave this machine with the Firewall turned off as it is now a sitting duck out on the inter-tubes.
    I thus enabled the Firewall service with these settings:
    - Any service: Allow only traffic from "any" to these ports: (I enabled the ports for P2PP and L2TP)
    - 10-net: Allow all traffic from "10-net"
    This I assume would restrict access from the external interface, but let all internal subnet communication be unrestricted (like it was before I enabled the firewall). However this doesn't seem to be the case. I noticed that simple non-VPN connections to AFP service took a long time to happen using "afp://servername.local", several minutes before the authentication dialog appeared.
    Furthermore if I brought up "Software Update" on a managed client set to pull from "servername.local:8088", the connection would fail.
    If I disabled the firewall service, the slowdown and local Software Update would work fine.
    But if I try setting: "Allow all traffic from 'any'" on the Firewall (which should be almost like turning it of) it doesn't have a positive effect and slowdown of name resolution and failure to connect to local software update still occurred.
    Is there something in the Firewall being enabled that breaks Bonjour name resolution? Anyway to enable the Firewall and still keep Bonjour .local name resolution? Does this problem have anything to do with issue (a) we have to work-around?
    Thanks for any recommendations,
    Matt

    Hi Flanjman,
    Additional this article may give you more tips.
    https://connect.microsoft.com/SQLServer/feedback/details/674454/name-resolution-not-yet-available
    I’m glad to be of help to you!
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Slow name resolution

    hi all,
    My mac has been miss-behaving since I upgraded to Mountain Lion.
    name resolution takes 10 seconds or more, which is ridiculous!
    on my linux box sitting right next to my mac, takes less than a second.
    Anyone else having the same issue?
    #### On my mac ####
    # time nslookup google.com 8.8.8.8
    Server:                    8.8.8.8
    Address:          8.8.8.8#53
    Non-authoritative answer:
    Name:          google.com
    Address: 173.194.38.136
    Name:          google.com
    Address: 173.194.38.135
    Name:          google.com
    Address: 173.194.38.131
    Name:          google.com
    Address: 173.194.38.132
    Name:          google.com
    Address: 173.194.38.130
    Name:          google.com
    Address: 173.194.38.133
    Name:          google.com
    Address: 173.194.38.128
    Name:          google.com
    Address: 173.194.38.137
    Name:          google.com
    Address: 173.194.38.142
    Name:          google.com
    Address: 173.194.38.129
    Name:          google.com
    Address: 173.194.38.134
    real          0m10.278s
    user          0m0.004s
    sys          0m0.003s
    ####### on my linux box #######
    # time nslookup google.com 8.8.8.8
    Server:                    8.8.8.8
    Address:          8.8.8.8#53
    Non-authoritative answer:
    Name:          google.com
    Address: 173.194.38.136
    Name:          google.com
    Address: 173.194.38.135
    Name:          google.com
    Address: 173.194.38.131
    Name:          google.com
    Address: 173.194.38.132
    Name:          google.com
    Address: 173.194.38.130
    Name:          google.com
    Address: 173.194.38.133
    Name:          google.com
    Address: 173.194.38.128
    Name:          google.com
    Address: 173.194.38.137
    Name:          google.com
    Address: 173.194.38.142
    Name:          google.com
    Address: 173.194.38.129
    Name:          google.com
    Address: 173.194.38.134
    real          0m0.304s
    user          0m0.100s
    sys          0m0.100s

    Hi Fer!
    Thanks for your tip about trying a different user - it didn't work, but it got me thinking
    I tried my daughter's new MB Pro with ML, and it worked flawlessly. So, thoroughly ****** off, I wasn't going to give up easily - I got out my Wireshark and started digging. After a few hours I came up with several handy tips, a couple of which fixed my problems. Here they are, copied from the blog I keep (to remember stuff like this). With any luck, they will save others some of the time we wasted.
    Thanks again for your help and inspiration!
    I’ve been incredibly frustrated by how poorly DNS resolves since upgrading first to Lion, then later to Mountain Lion (on a new machine, but migrating my old files). The impact of this was particularly bad connecting to SMB/CIFS/Samba shares – some would mount after several minutes, others not at all.
    Early on it became clear the problems were related to my router (DDWRT) not supporting IPv6 but then neither does my ISP. Here are a few things to try:
    DNS Resolver Order
    Normally /etc/hosts is first in line for DNS resolution. But it seems improper line termination, presumably a carriage return/linefeed instead of just a linefeed, causes all sorts of problems. Many posts describe ways to force reloading of the hosts file, but the root cause seems to be improper line termination. Always make sure you use a Unix compatible editor.
    To check the order resolvers are called:
    scutil --dns
    /etc/hosts Entries
    These two were the main source of my problems:
    1. My host has multiple names – these must all be present, and fully qualified:
    127.0.0.1 hosta hosta.foo.com 127.0.0.1 hostb hostb.foo.com
    2. All localhost entries must have ::1 entries too, or OS X will send IPv6 requests to resolve them externally. And this despite IPv6 being disabled on the interface!
    ::1 hosta hosta.foo.com ::1 hostb hostb.foo.com
    Turn off IPv6 in Network Preferences
    Go to System Preferences -> Network -> Advanced -> TCP. In the Configure IPv6 list, you may have an “Off” option. If so, select it. If not, see next tip.
    Turn off IPv6 from Terminal
    List available network services:
    networksetup -listallnetworkservices
    Turn off IPv6 on chosen device (name from above list):
    networksetup -setv6off your_device_name (i.e. Wi-Fi, Ethernet)
    Now the Configure IPv6 list  for that device will show “Off”  (see previous tip).
    MobileMe Remnants
    Apparently older OS X installations migrated to newer releases may still have hooks to no-longer existant MobileMe servers. Many users report that removing these greatly speeds up SMB connection. The following removes those references if present and are harmless if not.
    defaults delete -g iToolsMemberDomain defaults delete -g iToolsMember

  • Wsimport - how to do auto name resolution?

    Hi,
    Is there any way to tell wsimport command to automatically resolve naming conflicts.
    apache cxf supports it for its wsdl2java. Is there something similar for wsimport.
    My problem is that my wsdl has schemas with name like CurrencyType, currencyType, currency_type.
    This schema is provided by an external system.
    When I use wsimport to generate java files it gives naming conflicts.
    I was successfully able to generate the java files after using an external customization file.
    But there are many such schemas and we want to avoid the headache of maintaining the customization files.
    I couldnot fine any way to do auto name resolution using wsimport the way it is supported by cxf.
    thanks,
    Shrikant

    Dear Mukthar,
    Appreciate your answer.... but still it is not meeting my requirement....
    i will have an idea please suggest how it works
    I can go for Enhancement.....the process is iam thinking like this........
    At the end of GR entry screen it should go to next entry screen and there i can directly book my exp to consumption a/c debit and credit to inventory GL (which is a new inventory GL is not having post auto tick and is having in Inventory group).
    Similar Way for Goods Issue also.....
    i hope it can reach my requirement.....
    suggest further please
    regards
    dhananjayul.K

  • Lync Server 2013 Edge Server NetBios name resolution

    We are working on a lync deployment in a very secure environment where we have Lync edge server deployed, in order to enable ports and traffic between the remote users and the edge servers and vice-versa there is a security vulnerability scan done that has
    shown NetBios name resolution a security threat.
    I just wanted to know if there is any guidence on NetBios name resolution for Lync Edge Servers. Can we disable NetBios services on the edge servers and what could be the possible issues if any?

    My 2 cents worth..
    The Edge server is best suited as a non domain member, all communication with the Edge Server both from the Lync Front Ends and the clients is by means of the DNS name. There are no Lync related services (from my knowledge) that require\use NetBIOS when
    communication from or to the Edge Servers. I have disabled NetBIOS on Edge just recently for similar reasons and am yet to be notified of any issues.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Lync Sorted blog

  • Policies not applying + Computer name resolution failure

    Hi everyone,
    We are having issues with the applying of GPOs on our client PCs. We have two DCs - one (Lomu) configured with the master FSMO roles. The issue is completely intermittent, affecting a lagre number of machines that have been reimaged over the Summer (approx.
    50 out of 150 machines reimaged are affected).
    The results of a dcdiag are below:
    Directory Server Diagnosis
    Performing initial setup:
       Trying to find home server...
       * Verifying that the local machine LOMU, is a Directory Server.
       Home Server = LOMU
       * Connecting to directory service on server LOMU.
       * Identified AD Forest.
       Collecting AD specific global data
       * Collecting site info.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=ryburn,DC=inte
    rnal,LDAP_SCOPE_SUBTREE,(objectCategory=ntDSSiteSettings),.......
       The previous call succeeded
       Iterating through the sites
       Looking at base site object: CN=NTDS Site Settings,CN=Default-First-Site-Name
    ,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
       Getting ISTG and options for the site
       * Identifying all servers.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=ryburn,DC=inte
    rnal,LDAP_SCOPE_SUBTREE,(objectClass=ntDSDsa),.......
       The previous call succeeded....
       The previous call succeeded
       Iterating through the list of servers
       Getting information for the server CN=NTDS Settings,CN=LOMU,CN=Servers,CN=Def
    ault-First-Site-Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       Getting information for the server CN=NTDS Settings,CN=VM-MARADONA,CN=Servers
    ,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       * Identifying all NC cross-refs.
       * Found 2 DC(s). Testing 1 of them.
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\LOMU
          Starting test: Connectivity
             * Active Directory LDAP Services Check
             Determining IP4 connectivity
             * Active Directory RPC Services Check
             ......................... LOMU passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\LOMU
          Starting test: Advertising
             The DC LOMU is advertising itself as a DC and having a DS.
             The DC LOMU is advertising as an LDAP server
             The DC LOMU is advertising as having a writeable directory
             The DC LOMU is advertising as a Key Distribution Center
             The DC LOMU is advertising as a time server
             The DS LOMU is advertising as a GC.
             ......................... LOMU passed test Advertising
          Test omitted by user request: CheckSecurityError
          Test omitted by user request: CutoffServers
          Starting test: FrsEvent
             * The File Replication Service Event log test
             ......................... LOMU passed test FrsEvent
          Starting test: DFSREvent
             The DFS Replication Event Log.
             Skip the test because the server is running FRS.
             ......................... LOMU passed test DFSREvent
          Starting test: SysVolCheck
             * The File Replication Service SYSVOL ready test
             File Replication Service's SYSVOL is ready
             ......................... LOMU passed test SysVolCheck
          Starting test: KccEvent
             * The KCC Event log test
             Found no KCC errors in "Directory Service" Event log in the last 15 min
    utes.
             ......................... LOMU passed test KccEvent
          Starting test: KnowsOfRoleHolders
             Role Schema Owner = CN=NTDS Settings,CN=LOMU,CN=Servers,CN=Default-Firs
    t-Site-Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
             Role Domain Owner = CN=NTDS Settings,CN=LOMU,CN=Servers,CN=Default-Firs
    t-Site-Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
             Role PDC Owner = CN=NTDS Settings,CN=LOMU,CN=Servers,CN=Default-First-S
    ite-Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
             Role Rid Owner = CN=NTDS Settings,CN=LOMU,CN=Servers,CN=Default-First-S
    ite-Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
             Role Infrastructure Update Owner = CN=NTDS Settings,CN=LOMU,CN=Servers,
    CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal
             ......................... LOMU passed test KnowsOfRoleHolders
          Starting test: MachineAccount
             Checking machine account for DC LOMU on DC LOMU.
             * SPN found :LDAP/LOMU.ryburn.internal/ryburn.internal
             * SPN found :LDAP/LOMU.ryburn.internal
             * SPN found :LDAP/LOMU
             * SPN found :LDAP/LOMU.ryburn.internal/RYBURN
             * SPN found :LDAP/8ee4cad0-4018-428e-b85b-07af05cf933c._msdcs.ryburn.in
    ternal
             * SPN found :E3514235-4B06-11D1-AB04-00C04FC2DCD2/8ee4cad0-4018-428e-b8
    5b-07af05cf933c/ryburn.internal
             * SPN found :HOST/LOMU.ryburn.internal/ryburn.internal
             * SPN found :HOST/LOMU.ryburn.internal
             * SPN found :HOST/LOMU
             * SPN found :HOST/LOMU.ryburn.internal/RYBURN
             * SPN found :GC/LOMU.ryburn.internal/ryburn.internal
             ......................... LOMU passed test MachineAccount
          Starting test: NCSecDesc
             * Security Permissions check for all NC's on DC LOMU.
             * Security Permissions Check for
               DC=ForestDnsZones,DC=ryburn,DC=internal
                (NDNC,Version 3)
             * Security Permissions Check for
               DC=DomainDnsZones,DC=ryburn,DC=internal
                (NDNC,Version 3)
             * Security Permissions Check for
               CN=Schema,CN=Configuration,DC=ryburn,DC=internal
                (Schema,Version 3)
             * Security Permissions Check for
               CN=Configuration,DC=ryburn,DC=internal
                (Configuration,Version 3)
             * Security Permissions Check for
               DC=ryburn,DC=internal
                (Domain,Version 3)
             ......................... LOMU passed test NCSecDesc
          Starting test: NetLogons
             * Network Logons Privileges Check
             Verified share
    \\LOMU\netlogon
             Verified share
    \\LOMU\sysvol
             [LOMU] User credentials does not have permission to perform this
             operation.
             The account used for this test must have network logon privileges
             for this machine's domain.
             ......................... LOMU failed test NetLogons
          Starting test: ObjectsReplicated
             LOMU is in domain DC=ryburn,DC=internal
             Checking for CN=LOMU,OU=Domain Controllers,DC=ryburn,DC=internal in dom
    ain DC=ryburn,DC=internal on 1 servers
                Object is up-to-date on all servers.
             Checking for CN=NTDS Settings,CN=LOMU,CN=Servers,CN=Default-First-Site-
    Name,CN=Sites,CN=Configuration,DC=ryburn,DC=internal in domain CN=Configuration,
    DC=ryburn,DC=internal on 1 servers
                Object is up-to-date on all servers.
             ......................... LOMU passed test ObjectsReplicated
          Test omitted by user request: OutboundSecureChannels
          Starting test: Replications
             * Replications Check
             [Replications Check,LOMU] DsReplicaGetInfo(PENDING_OPS, NULL) failed,
             error 0x2105 "Replication access was denied."
             ......................... LOMU failed test Replications
          Starting test: RidManager
             * Available RID Pool for the Domain is 11603 to 1073741823
             * LOMU.ryburn.internal is the RID Master
             * DsBind with RID Master was successful
             * rIDAllocationPool is 11103 to 11602
             * rIDPreviousAllocationPool is 11103 to 11602
             * rIDNextRID: 11249
             ......................... LOMU passed test RidManager
          Starting test: Services
             * Checking Service: EventSystem
             * Checking Service: RpcSs
             * Checking Service: NTDS
                Could not open NTDS Service on LOMU, error 0x5 "Access is denied."
             * Checking Service: DnsCache
             * Checking Service: NtFrs
             * Checking Service: IsmServ
             * Checking Service: kdc
             * Checking Service: SamSs
             * Checking Service: LanmanServer
             * Checking Service: LanmanWorkstation
             * Checking Service: w32time
             * Checking Service: NETLOGON
             ......................... LOMU failed test Services
          Starting test: SystemLog
             * The System Event log test
             Found no errors in "System" Event log in the last 60 minutes.
             ......................... LOMU passed test SystemLog
          Test omitted by user request: Topology
          Test omitted by user request: VerifyEnterpriseReferences
          Starting test: VerifyReferences
             The system object reference (serverReference)
             CN=LOMU,OU=Domain Controllers,DC=ryburn,DC=internal and backlink on
             CN=LOMU,CN=Servers,CN=Default-First-Site-Name,CN=Sites,CN=Configuration
    ,DC=ryburn,DC=internal
             are correct.
             The system object reference (serverReferenceBL)
             CN=LOMU,CN=Domain System Volume (SYSVOL share),CN=File Replication Serv
    ice,CN=System,DC=ryburn,DC=internal
             and backlink on
             CN=NTDS Settings,CN=LOMU,CN=Servers,CN=Default-First-Site-Name,CN=Sites
    ,CN=Configuration,DC=ryburn,DC=internal
             are correct.
             The system object reference (frsComputerReferenceBL)
             CN=LOMU,CN=Domain System Volume (SYSVOL share),CN=File Replication Serv
    ice,CN=System,DC=ryburn,DC=internal
             and backlink on CN=LOMU,OU=Domain Controllers,DC=ryburn,DC=internal
             are correct.
             ......................... LOMU passed test VerifyReferences
          Test omitted by user request: VerifyReplicas
          Test omitted by user request: DNS
          Test omitted by user request: DNS
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test
             CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test
             CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : ryburn
          Starting test: CheckSDRefDom
             ......................... ryburn passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ryburn passed test CrossRefValidation
       Running enterprise tests on : ryburn.internal
          Test omitted by user request: DNS
          Test omitted by user request: DNS
          Starting test: LocatorCheck
             GC Name:
    \\LOMU.ryburn.internal
             Locator Flags: 0xe00033fd
             PDC Name:
    \\LOMU.ryburn.internal
             Locator Flags: 0xe00033fd
             Time Server Name:
    \\LOMU.ryburn.internal
             Locator Flags: 0xe00033fd
             Preferred Time Server Name:
    \\LOMU.ryburn.internal
             Locator Flags: 0xe00033fd
             KDC Name:
    \\LOMU.ryburn.internal
             Locator Flags: 0xe00033fd
             ......................... ryburn.internal passed test LocatorCheck
          Starting test: Intersite
             Skipping site Default-First-Site-Name, this site is outside the scope
             provided by the command line arguments provided.
             ......................... ryburn.internal passed test Intersite
    Just wondering if anyone has similar issues as us on this?
    When running gpupdates, we receive this message:
    The processing of Group Policy failed. Windows could not resolve the computer name. This could be caused by one of more of the following:
    a) Name Resolution failure on the current domain controller.
    b) Active Directory Replication Latency (an account created on another domain controller has not replicated to the current domain controller).
    Thanks,
    Tom.

    Hi,
    I would suggest you check the group policy service log under event viewer\Applications and Services log\Microsoft\Windows\Group Policy, find the error log and check the Details, then apply the solutions mentioned in the link below depending on the detailed
    error code.
    http://technet.microsoft.com/en-us/library/dd392593(v=ws.10).aspx
    As
    arnavsharma mentioned, members in GP forum are more familiar with this topic.
    Yolanda Zhu
    TechNet Community Support

  • How to use DNS server for name resolution for items which don't exist in active directory domain controller DNS

    Dear Experts,
    In our office we have a domain controller call it 'Office.com', all computers and corporate servers e.g. exchange, antivirus etc. are member of this 'office.com', it is also having a DNS. All users in office have there preferred DNS set to the corporate
    DNS
    We are working for ministry and offering services to them from our data center so have many servers which are for ministry but they are in our data center. For all these servers we created another DNS server which contains all entries for these servers in
    forward and reverse lookup zones. In this DNS we also created a forward lookup zone for our corporate servers and zone name is 'office.com'
    What we are trying to have is name resolution of all servers which are listed in other DNS build in our office on Win 2008 R2 for ministry servers
    If the user change his preferred DNS to ministry DNS he can resolve the ministry server but then we can not control any thing through group policy since they are using other DNS and not the corporate DNS. 
    How this can be done ? like any group policy applied to corporate domain controller must take effect on users and in addition to this user must also be able to resolve server names in ministry project DNS
    Please assist ASAP.
    regards,

    Hello,
    ok so the GPO setting doesn't apply in any case.
    Clients machines use the first DNS server in the list of configured ones on the NIC. If that one is available search for additional DNS servers will stop.
    What i can not really understand is your description about the second DNS server. This should normally either another DC with AD integrated DNS, so everything is replicatedwithin AD replication or you use a secondary DNS on domain member server that pulls
    the informations from the Master.
    It sounds for me that you have configured a machine with DNS server role and created manually the zone with the same name as the domainand manually create there the required A records?
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • Remote LAN Name Resolution on VPN not working after upgrading to iOS8

    Has anyone come across the problem since upgrading to iOS8 where remote LAN name resolution does not work when connected to the remote LAN with VPN.  Everything worked fine on iOS7 and continues to work okay on devices that have not been upgraded.
    If I'm connected with WiFi on the local network, I am able to resolve the FQDN to a local IP address.  The problem arises when I'm away from the office, on either LTE or another WiFi and I start a VPN connection to the office.  The VPN connects without any problems.  If I try to connect to a desktop with the FQDN it never connects.  I will work if I connect with the IP address.  If I try to do an nslookup of the FQDN, I don't get a response.  I am however able to get a response when performing an nslookup for google.com.
    The VPN we are using is PPTP to a Windows network.

    Has anyone come across the problem since upgrading to iOS8 where remote LAN name resolution does not work when connected to the remote LAN with VPN.  Everything worked fine on iOS7 and continues to work okay on devices that have not been upgraded.
    If I'm connected with WiFi on the local network, I am able to resolve the FQDN to a local IP address.  The problem arises when I'm away from the office, on either LTE or another WiFi and I start a VPN connection to the office.  The VPN connects without any problems.  If I try to connect to a desktop with the FQDN it never connects.  I will work if I connect with the IP address.  If I try to do an nslookup of the FQDN, I don't get a response.  I am however able to get a response when performing an nslookup for google.com.
    The VPN we are using is PPTP to a Windows network.

  • What is the benefit in using OID for names resolution?

    I have been wondering about this for awhile. I have been working on getting this to work in Iplanet along with Pat Lehane ([email protected]), and it works now.
    What are the benefits in using OID for names resolution when you can just use the static tnsnames.ora. Database and database names are not created dynamically and they don't change that often. Would creates a new database every day and has to worry about changing the static tnsnames.ora file. In my environment, we run Oracle applications from a server, so there is only one tnsnames.ora file, on the file server.
    It would appear that using OID would cause extra traffic (LDAP lookups) on your network.
    I would like some opinions from both Oracle and Oracle users. Thanks

    hi,
    A benefit of using OID for names resolution is that it allows you to centralize net8 naming (i.e., tnsnames) information in the same place (OID) where other types of administrative information (about users, enterprise groups, enterprise roles, etc) gets stored. If you are more comfortable using tnsnames.ora files for net8 naming, that is perfectly fine!
    An important reason that Oracle had for providing Net8 naming functionality in OID is that the legacy 'Oracle Names' functionality of Oracle 7 will eventually be desupported. This is discussed in metalink Note #135696.1 on http://metalink.oracle.com .
    Hope this helps.

  • Find monitor instance name , device name , resolution and frequency of multiple monitors (VGA and HDMI)

    hi,
    In my system multiple monitors are connected (VGA and  HDMI). In need to know the
    monitor instance name , device name , resolution and frequency of each monitor.. any solution?
    i used wm class 'WmiMonitorConnectionParams'  to determine Video output technology connection type and InstanceName.
    But i didn't get the device name , resolution and frequency of each monitor.??
    There are other wmi class like :
    WmiMonitorBrightnessEvent 
    WmiMonitorConnectionParams 
    WmiMonitorRawEEdidV1Block 
    WmiMonitorListedFrequencyRanges 
    WmiMonitorDigitalVideoInputParams 
    WmiMonitorAnalogVideoInputParams 
    WmiMonitorID 
    WmiMonitorBrightnessMethods 
    WmiMonitorBasicDisplayParams 
    WmiMonitorColorCharacteristics 
    WmiMonitorDescriptorMethods 
    WmiMonitorListedSupportedSourceM… 
    WmiMonitorBrightness 
    WmiMonitorColorXYZinCIE 
    WmiMonitorSupportedDisplayFeatures
     WmiMonitorBasicDisplayParams
     Win32_VideoController
    Win32_VideoConfiguration
    Win32_VideoSettings Win32_DisplayControllerConfiguration
    Win32_DisplayConfiguration
    But unable to determine monitor having  its corresponding values? please help me to find a solution .
    is there any other method to get multi monitor details?
    thank  you

    Hi sumith,
    I read some documents about WmiMonitorConnectionParams class, it should be able to get the video putput technology by the D3DKMDT_VIDEO_OUTPUT_TECHNOLOGY enumeration.
    D3DKMDT_VIDEO_OUTPUT_TECHNOLOGY enumeration
    So what happens when you are using WmiMonitorConnectionParams class? What prevent you? Anyway, please see a example of using WmiMonitorConnectionParams class, maybe you could get some hints on it.
    http://stackoverflow.com/questions/10085900/querying-wmi-for-d3dkmdt-video-output-technology
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • PL/SQL, synonyms to packages and name resolution

    I have some question about name resolution in PL/SQL. First, I need to describe situation, because it is quite complicated.
    There are three schemas: A1, B1 and O. A1 and B1 are containing proprietary software and I cannot modify objects there (but I can modify configuration tables, so in this way I can call any package from anyhere). O schema is my own schema. A1 and B1 schemas are in one "module", there are also A2 and B2 schemas in second "module" and AN and BN in n-th "module".
    In normal situation, A1 schema contains synonym to package B1.PKG (on B1 schema) and uses it to call B1.PKG with DEFINER rights. The same for every "module".
    I need to extend some functionality of B.PKG by buliding some kind of "wrapper" on my own O schema. It is only one MY_PKG and should be used by every "module". In this place I need some kind of magic :)
    I want to place package MY_PKG with AUTH_ID CURRENT_USER clause on my O schema and use A1..AN schema to call it. Package MY_PKG have to call package placed on one of B1..BN schemas, so I need to create synonym on O schema for package, for example, B1.PKG just to compile the MY_PKG package.
    Now, I call MY_PKG package from A1 schema and I expect MY_PKG will use synonym to B1.PKG placed on A1 schema, instead of using synonym on my O schema. That's not happening. MY_PKG still uses synonym on O schema, so it ruins whole concept :)
    Actually, I use some set of packages that already work properly in that way, but there is some difference. In my other packages I use SQL and synonyms to tables and views placed on _one_ A schema. I use those synonyms only for compiling. When packages are calling from A1..AN schemas, they use proper objects on proper A1..AN schema. In this case I try to do the same, but with package instead of tables and view. I find it difficult probably because SQL and PLSQL resolves names in other way.
    Here is the question, is it possible to make such thing as decribed above? Of course, I can use execute immediate to run proper packages directly from O schema, but I don't want :)
    Sorry for my bad english, I hope you understand whole concept.
    DB version: 11.2.0.3

    The documentation is pretty clear that invoker rights applies only to certain statements...
    Using PL/SQL Subprograms
    SELECT, INSERT, UPDATE, and DELETE data manipulation statements
    The LOCKTABLE transaction control statement
    OPEN and OPEN-FOR cursor control statements
    EXECUTEIMMEDIATE and OPEN-FOR-USING dynamic SQL statements
    SQL statements parsed using DBMS_SQL.PARSE()
    So clearly static PL/SQL references will not be resolved in this way.
    I can't actually remember (I have found AUTHID CURRENT_USER to be very rarely useful) but you may be able to get around this by executing dynamic PL/SQL blocks but given the potential downsides of dynamic SQL and PL/SQL you almost certainly don't want to.

  • Name Resolution:Package vs schema

    I have two schema
    1.userA
    2.userB
    In userA I have function test1 & test2
    In userB I have a package userA which has a function test1;
    userB is granted permission to execute test1 and test2 in userA
    grant execute on userA.test1 to userB;
    grant execute on userA.test2 to userB;
    Now I am logged in as userB and execute the following
    select userA.test1(3) from dual;
    Function in package userB is executed;
    select userA.test2(3) from dual;
    It gives the error userA.test2 invalid identifier...
    Now here is my inference..
    When SQL encounters an identifier it first searches for packages...If a package is found all further resolutions are based on that package..So it never finds test2..
    Is this right?I needed confirmation on this
    thanks in advance

    From the "Oracle® Database PL/SQL User's Guide and Reference 10g Release 2 (10.2)" Appendix B section titled "Differences in Name Resolution Between PL/SQL and SQL"
    The name resolution rules for PL/SQL and SQL are similar. You can avoid the few differences if you follow the capture avoidance rules. For compatibility, the SQL rules are more permissive than the PL/SQL rules. SQL rules, which are mostly context sensitive, recognize as legal more situations and DML statements than the PL/SQL rules.
    * PL/SQL uses the same name-resolution rules as SQL when the PL/SQL compiler processes a SQL statement, such as a DML statement. For example, for a name such as HR.JOBS, SQL matches objects in the HR schema first, then packages, types, tables, and views in the current schema.
    * PL/SQL uses a different order to resolve names in PL/SQL statements such as assignments and procedure calls. In the case of a name HR.JOBS, PL/SQL searches first for packages, types, tables, and views named HR in the current schema, then for objects in the HR schema.

Maybe you are looking for

  • How can I use a variable for an interface log and error fle

    I want to use a variable for the interface's log and error file so that when I migrate from Dev to QA to Prod I don't have to do a lot of editing. Specifically on the "flow" tab for the "target", I want a variable to be the first part of the path for

  • Mavericks isn't allowing me to connect to my school's internet.

    On Mountain Lion when I connected to the network occasionally it would have a connection error, and I'd turn my wifi off and when I turned it back on it would auto connect and would work fine. Now this doesn't work on Mavericks, and a screen pops up

  • Userexit in va41

    I wish to check every field in va41 before saving va41. Please tell some userexit/badi/etc thanks rajeev

  • Applet Security (cant write to local drive)

    Hi, I am developing a simple applet on a local machine and I want this applet to have the ability to a file somewhere on the local hard drive. I've added the code to write to a file data.txt, when the code executes I get the exception error: com.ms.s

  • Asynchronous to multiple synchronous calls

    Hi, so far , I've only done simple scenarios in PI. Now , I need to make an asynchronous call from ECC to PI and then in PI , I need to call three web services, 1) authentify 2) read data 3) update data Where operation 2 only is called if 1 is succes