Configration Server

We have 5 SunOne Directory Server and they are using one Directory server as configration server. But I need reinstall OS on that server. How I can reconfigure all the DS servers to use another configration server or just use itself. Thanks.

The directory configuration server instance is irrelevant to the operation of the Directory Server itself. You can shut it down, upgrade the OS, then bring it back without the Directory Server caring.
What the directory configuration is relevant to is the Administration server and Console. Those won't be usable when the directory configuration instance is down.
If you really want to move the directory configuration server instance to someplace new, it is possible to reconfigure the administration server instance on each machine to know about the new location.

Similar Messages

  • Dumping mount point one server to another server same configration

    We are trying to dump the mount point one server to another server same configration.If we copy all things from current server to newserver on same mount point /file system,same directory.I am doing this activities first time.Is it anybody clear my question?
    1.I don't need to install oracle and database
    2.what parameter I have to set for that?
    Oracle 10g
    OS:Solaris 5.10

    Oracle instances are physically disconnected from Oracle databases.
    The instance determines the database to open based on initialization parameters (init.ora and spfile) and environment variables: ORACLE_SID.
    The docs are at http://tahiti.oracle.com.
    You need to read the docs and understand the full scope of the issue. A couple of quick paragraphs in a forum is not what you need. Also consider asking your manager to hire a consultant to help you with the project and provide you with some mentoring.

  • Same xi server configration

    Dear all
    presenty we are using ECC5(is reatail) here is configre the FI,MM,SD
    module we are also using xi 3.0 comes sales data From POS (point of
    sale),
    we want another company configre FI ,MM, SD this is
    Manufacture plant it is also using a BAAN ERP ,
    he wants sale data come from ban and hit the sales related data in
    sap .
    can we configre the same clint of the diffrent company ,is this is
    possible?
    any license realted problem , or custimizing related problem becase
    when we impltemented data come from the BAAN ERP and POS(point of sale). is possible in sap XIP server .
    tahnsks with  best regards
    jainendra

    jainendra,
    The forum that you have posted your question in is for questions related to the SAP Business One Integration for SAP NetWeaver.  Your question is specific to XI.  My suggestion is to post your question in the NetWeaver forums as you will probably get a much faster response to your question.
    https://www.sdn.sap.com/irj/sdn/netweaver-forums
    Eddy

  • Defining IP Address and DNS configration on VMWare server?

    plz suggest as mentioned in subject.
    We have SuSe LINUX Version ans wants to define IP Address and DNS setting.
    We get some error which looks like as resulted due to IP or DNS setting.
    Guys..guide me to correct forum if reqd.

    Using VMWare there are two issues to keep in mind.
    a) Which kind of network are you using in VMWare
    b) Set up the IP information in your VMWare guest (SuSe)
    a) There are three network types in VMWare, host only, bridged and NAT.
    Usually I use host-only for my machines as they are used for internal testing.. Bridged will connect to the real network and maybe you get an IP address from there (when DHCP is used). NAT will use you computers IP and translate it.
    b) Setting the IP is easy - just use YAST and configure the IP address of your machine (either fixed or using DHCP). Setting up a DNS server yourself is out of the scope of this posting. Look on the internet for a howto to set up your DNS server. If you just need to configure a DNS server with your IP this can be done with YAST.
    cu
    Andreas

  • Servlet configration on "Sun Java System Application Server Platform Editio

    Hi Friends,
    I'm using Sun Java System Application Server Platform Edition 9.0
    my server is instatted on "C:\Sun\AppServer\" and rest is default istallation path
    my web page is calling from "C:\Sun\AppServer\domains\domain1\docroot\" folder
    I wrote a test servert and placed the complied class file in "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk\TestServlet.class" having following code
    using the command
    C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk>javac -cp C
    :\Sun\AppServer\lib\j2ee.jar TestServlet.java
    C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\classes\in\muk>
    {noformat}<code>package in.muk;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Date;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class TestServlet extends HttpServlet {
    public void doGet(HttpServletRequest req, HttpServletResponse res)
    throws IOException, ServletException {
              res.setContentType("text/html");
              PrintWriter out = res.getWriter();
              out.println("<html><head><title>TestServlet</title>");
              out.println("\t<style>body { font-family: 'Lucida Grande', " +
                   "'Lucida Sans Unicode';font-size: 13px; }</style>");
              out.println("</head><body><p>Current Date/Time: " +     new Date().toString() + "</p>");
              out.println("</body></html>");
              out.close();
    </code>{noformat}
    The content of my "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\web.xml" file is
    {noformat}<code><?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         version="2.5">
         <servlet>
              <servlet-name>TestServlet</servlet-name>
              <servlet-class>in.muk.TestServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>TestServlet</servlet-name>
              <url-pattern>/TestServlet</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    </code>{noformat}
    The content of "C:\Sun\AppServer\domains\domain1\docroot\WEB-INF\sun-web.xml"
    is -----
    {noformat}<code><?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 2.5//EN" "http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd">
    <sun-web-app error-url="">
    <class-loader delegate="true"/>
    <jsp-config>
    <property name="keepgenerated" value="true">
    <description>Keep a copy of the generated servlet class' java code.</description>
    </property>
    </jsp-config>
    </sun-web-app>
    </code>{noformat}
    The proble is I'm not able to call this servlet on web
    with URL
    http://localhost:8080/TestServlet
    it is giving "HTTP Status 404 - "
    Could you please help me in finding out where is the error

    Thanks for the reply.
    I am using Sun Java System Application Server Platform Edition 8.2 (build b06-fcs). Could be some problem in the application itself. Can you suggest what may be missing? As suggested in the bug description i used the wscompile -infix option as well.

  • Pix 506e firewall configring for mail( Exhange), Web, FTP server

    Hi
    I am Hemant, We have pix 506e firewall, D-link ADSL dsl-502t and my IBM xseries 236 server.
    I have fix static live ip 59.181.103.220 which i have got ISP (MTNL), and the same ip is given in fqdn in www.net4india.com (a company from where we have registered domaim name and taken space)
    My problem is i am not able to send mail through my mail server (loyalindia.co.in)but i am receiving mails from any server.
    My network design is as fallows:-
    ADSL (WAN)59.181.103.220, ADSL (LAN)59.181.103.221. Pix 506e (out) 59.181.103.222, Pix 506e (in) 192.168.1.1. My domain mail server loyalindia.co.in (Exchange server) ip 192.168.1.2
    I am tryied with (ADSL)natting and without natting but the problem is same.
    If i am removing the pix 506e and directly connecting the server to adsl i am able to receive and send mails properly.
    can anybody who can support me?.

    Hello
    I think there won't be one QUCK START to get all of this up and running, there are multiple examples on the following page, a few that might help would be:
    http://www.cisco.com/en/US/products/hw/vpndevc/ps2030/prod_configuration_examples_list.html
    PIX/ASA : Connecting Three Internal Networks with Internet Configuration Example
    PIX/ASA : Connecting Two Internal Networks with Internet Configuration Example
    ASA 7.x/PIX 6.x and Above: Open/Block the Ports Configuration Example
    PIX/ASA 7.x: Enable VoIP (SIP, MGCP, H323, SCCP) Services Configuration Example
    PIX/ASA 7.x and FWSM: NAT and PAT Statements
    PIX/ASA 7.x and later : Port Redirection(Forwarding) with nat, global, static and access-list Commands
    Configuring PIX Firewall with Mail Server Access on the DMZ
    Configuring the PIX Firewall with Mail Server Access on Inside Network
    Please rate if you find the post helpful.
    Regards
    Farrukh

  • Application Server  Configration

    i want to configer oracle 10g or oracle 10g Application server i have oracle 10g database but i have no idea how to configer to it
    if any body guide me step by step and concept i shall be thank full to taht person
    atif akram
    oracle dba
    my email is
    [email protected]

    Hi
    first You should read some doc pages
    for 10g DB
    http://www.oracle.com/technology/documentation/database10g.html
    for 10gAS
    http://www.oracle.com/technology/documentation/appserver10g.html
    lajos

  • Dedicated web cache server configration -- Help pls!!!

    We have a server (A) dedicated for web cache purpose, and outside the firewall. The web cache is pointing to machine B's mid-tier port.
    Inside the firewall, we have this mid-tier (portal) and infrastructure installed on one machine (B).
    The config. works when we use the intranet to access. However, when attempting from a computer outside the firewall, the authentication fails. Any comments on the problem?

    We have a server (A) dedicated for web cache purpose, and outside the firewall. The web cache is pointing to machine B's mid-tier port.
    Inside the firewall, we have this mid-tier (portal) and infrastructure installed on one machine (B).
    The config. works when we use the intranet to access. However, when attempting from a computer outside the firewall, the authentication fails. Any comments on the problem?

  • Unable to send email from content server

    Hi,
    I have a requirement of sending the notification email to user from the stellent when he subscribe to it.To test it i logged in to content server as sysadmin.
    Administration->Actions->Send test email.
    I had filled some dummy data and when i click on send it gives me a error
    Content Server Request Failed
    Unable to send email. Could not send mail message from [email protected] with subject line: Test email from Content Server.
    intradoc.common.ServiceException: !csMailCouldNotSend,[email protected],Test email from Content Server
         at intradoc.server.InternetFunctions.sendMailToEx(Unknown Source)
         at intradoc.server.SystemAuditHandler.sendEmail(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at intradoc.common.IdcMethodHolder.invokeMethod(Unknown Source)
         at intradoc.common.ClassHelperUtils.executeMethodReportStatus(Unknown Source)
         at intradoc.server.ServiceHandler.executeAction(Unknown Source)
         at intradoc.server.Service.doCodeEx(Unknown Source)
         at intradoc.server.Service.doCode(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.doAction(Unknown Source)
         at intradoc.server.Service.doAction(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.doActions(Unknown Source)
         at intradoc.server.Service.doActions(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.executeActions(Unknown Source)
         at intradoc.server.Service.executeActions(Unknown Source)
         at intradoc.server.ServiceRequestImplementor.doRequest(Unknown Source)
         at intradoc.server.Service.doRequest(Unknown Source)
         at intradoc.server.ServiceManager.processCommand(Unknown Source)
         at intradoc.server.IdcServerThread.run(Unknown Source)
    Caused by: intradoc.common.ServiceException:
         at intradoc.common.SmtpClient.sendMail(Unknown Source)
         at intradoc.server.InternetFunctions.sendMail(Unknown Source)
         ... 21 more
    Caused by: java.lang.Exception: !csSMTPInvalidMessage,"System Administrator" <[email protected]>!csSMTPUnableToFindRecipients,1
         at intradoc.common.SmtpClient.writeMultiMsg(Unknown Source)
         ... 23 more
    Caused by: java.lang.Exception: !csSMTPResponseIndicatesFailure,550 5.7.1 Unable to relay for [email protected]
         at intradoc.common.SmtpClient.writeMsg(Unknown Source)
         ... 24 more
    I had set the internet configration in admin server to this values..
    HttpServerAddress=blrdxp-rchithul.corp.capgemini.com
    MailServer=BLREX002.corp.capgemini.com
    [email protected]
    SmtpPort=25
    HttpRelativeWebRoot=/idc/
    CgiFileName=idcplg
    UseSSL=No
    WebProxyAdminServer=true
    But i am still getting the error.kindly help me...
    Thanks in Advance
    Regards
    Rakesh

    Hi Rakesh,
    You have to request you Network team to add the ip address of the machine where you have installed content server to your Exchange Server.
    Let me know if it works.
    Deepak

  • Report Server (Please help ! )

    Hello!
    I have installed infrastructure and AS onsame machine. In startthe default report server (rep_myserver) performe very well but after about 60 reports it went to down. Now when i try to start it from AS Home page it start and immidiatly stoped.
    Log files are showing only start and stop time without any other details. Trace files are also empty.
    Please help me to solve this problem. Is it a configration problem or i need a patch to solveit.
    Thanks
    UsmanRana

    Hi UsmanRana,
    Make sure your rep_myserver.conf file has the following line in it and that it isn't commented out:
    <trace traceOpts="trace_all">
    Then restart your report server and look in the "logs" subdirectory for the rep_myserver.trc file. It should show you what happened that caused the report server to shut down.
    regards,
    Stewart

  • CQ5 server performance is very slow ?

    Hello,
    I deployed my project on publish server, but both the server responding very slow, Is it the CQ5 server the very slow?
    Please let me know how to make more faster performance of CQ5 server, please let me know is there any configration we have to do?
    For showing the page around it takes 10min, how to solve such issues.
    Please let me know any perfoamance tuning guide/tricks.
    Regards,
    Satish

    For starters answers to a few questions would help:
    1. What kind of hardware config is in place? (RAM, disk-space)
    2. Which OS are you running instances? Are both author and publish on same machine?
    3. Have you checked error logs?
    From the problem description you have provided 1st seems to be the main issue.
    - Ashish

  • Sql server Configuration option when moving packages from dev env to production env

    hi folks:
      Our SSIS engine is SQL2008R2 and I am in charge of ssis package development and deployment from dev env to production env. 
      This is what I've done using configurations to move packages from dev to production.
      1. on my local machine, I've created a database called SSIS_Config and a table that stores all 
      configration settings
      CREATE TABLE [dbo].[SSIS Configurations]
    ConfigurationFilter NVARCHAR(255) NOT NULL,
    ConfiguredValue NVARCHAR(255) NULL,
    PackagePath NVARCHAR(255) NOT NULL,
    ConfiguredValueType NVARCHAR(20) NOT NULL
    2. on dev ssis server, there is the same table [dbo].[SSIS Configurations] on SSIS_Config db which stores all configurations
    Once package has been deployed to dev env and run with success, I'll move it from dev to prod
    3. On Prod ssis server, there is the same table [dbo].[SSIS Configurations]  on SSIS_COnfig db which stores all configurations
    once ssis pkg has been deployed using deployment manifest, it runs without errors as all production db connection
    will be updated manually in the table [dbo].[SSIS Configurations] 
    Our production env is unique as it's completely locked down and the only way to connect is through remote in session. 
    At this moment, I am maintaining three [dbo].[SSIS Configurations]  tables : on my local machine, on SSIS dev server and on SSIS prod server. 
    This works fine so far as I am the sole developer... Soon, we will have more developers joined to develop ssis package .
    I am wondering if there is anyway to cut the table maintained on my local machine and only use ones on dev server and prod server ? 
    I've tried using the table on dev server to disperse connectionstrings, it works file on dev env.  However, when I deployed to product server,
    since there is no sql connection between dev and prod, the configuration information can not be retrieved and theirfore package is failed.
    Any ideas on how to move packages from local to dev to prod env.? 
     Thanks
     Hui
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

    Thanks Nearby BI guy. Am I correct  that  in your SSIS packages, there is only one connection manager which gets ConnectionStr  populated from package configurations which is .xmlconfig
    file and  you then use expressions to populate  connectionStrs of other connection managers through the ssisconfiguration tables? 
    Also for the one on Production environment, the contents of .xmlconfig has to be manually
    changed in order to match the one on production env.
    Is that correct?
    I am thinking about using environment variables to point to the Config Database on each
    local/dev/prod environment, but some environments may have strict policy on the usage of environment variables.
     thanks
     Hui
    --Currently using Reporting Service 2000; Visual Studio .NET 2003; Visual Source Safe SSIS 2008 SSAS 2008, SVN --

  • Data guard  broker configration

    dear
    i had configured data gurd on oracle 10g, but when i am configraring data guard broker ,i am getting error
    DGNGRL> create cinfiguration DEV as primary database is dev
    connect internal is dev;
    configration dev created with primary database "dev"
    dgmgrl> add database clone as
    connect identifire is clone
    maintailned as physical;
    i am getting error
    Error: ORA-16796: one or more properties could not be imported from the database
    Edited by: user8244545 on May 5, 2009 4:23 AM

    i have already done but unfortunatly still same my problem.
    i think it's tnsname.ora problem.
    llet me know in detail how to i configure listener.ora & aswell as tnsnames.ora on both primary & standby nodes
    listener.ora on PRIMARY NODE
    LISTENER_DG =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = portal.safexpress.com)(PORT = 1521))
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    SID_LIST_LISTENER_DG =
    (SID_LIST =
    (SID_DESC=
    (GLOBAL_DBNAME=DEV_DGMGRL.safexpress.com)
    (ORACLE_HOME=/u01/oracle/product/10.2)
    (SID_NAME=DEV)
    (SERVICE_NAME=DEV.safexpress.com)
    TNSNAME.ORA on PRIMARY NODE
    DEV =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = tcp)(HOST = portal.safexpress.com)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = DEV)
    CLONE=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=testsfx1.safexpress.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVER=DEDICSTED)
    (SERVICE_NAME=CLONE)
    LISTENER.ORA ON STANDBY NODE
    LISTENER_DG=
    (DESCRIPTION=
    (ADDRESS_LIST=
    (ADDRESS=(PROTOCOL=tcp)(HOST=testsfx1.safexpress.com)(PORT=1521)(IP= FIRST)
    (ADDRESS=(PROTOCOL=ipc)(KEY=extproc))))
    TNSNAMES.ORA on STANDBY NODE
    CLONE=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=testsfx1.safexpress.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVER=DEDICSTED)
    (SERVICE_NAME=CLONE)
    DEV=
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=portal.safexpress.com)(PORT=1521))
    (CONNECT_DATA=
    (SERVER=DEDICATED)
    (SERVICE_NAME=DEV)
    Please let us know where i'm wrong & correct it.
    thanks
    Regards
    irfan
    Edited by: user8244545 on May 5, 2009 5:19 AM
    Edited by: user8244545 on May 5, 2009 5:23 AM

  • Does ASA ezVPN support reactive primary vpn server feature

    hi,
    i am going to configure asa5505 as the azvpn client . and configre primay and secondary vpn server in the list.
    i find some feature that is support by ios ROUTER  ezvpn, not sure it will be support on ASA ezVPN???
    Question? will the ezvpn   fall back to the primary vpn server , if primary back on line,  on ASA ?
    Reactivate Primary Peer
    The Reactivate Primary Peer feature allows a default primary peer to be defined. The default primary peer (a server) is one that is considered better than other peers for reasons such as lower cost, shorter distance, or more bandwidth. With this feature configured, if Easy VPN fails over during Phase 1 SA negotiations from the primary peer to the next peer in its backup list, and if the primary peer is again available, the connections with the backup peer are torn down and the connection is again made with the primary peer.

    No, the Primary peer won't be tried again until the phase 1 tunnel is torn down and reactivated. Re-keys do not count. Hope this helps.

  • Nslookup returns server unknown

    Hello,
    I am not sure if I have a reason to be uncomfortable but the results below do make me uncomfortable. Note that I do not have any problems accessing my network resources and the internet from any program. However...
    Here is the ipconfig on my pc:
       Connection-specific DNS Suffix  . : mydomain.com
       Description . . . . . . . . . . . : Intel(R) Centrino(R) Advanced-N 6230
       Physical Address. . . . . . . . . : 88-53-2E-30-87-75
       DHCP Enabled. . . . . . . . . . . : Yes
       Autoconfiguration Enabled . . . . : Yes
       IPv6 Address. . . . . . . . . . . : fcee:4:7:9:0:6:3ede:f16d(Preferred)
       Lease Obtained. . . . . . . . . . : Saturday, February 02, 2013 1:32:46 PM
       Lease Expires . . . . . . . . . . : Thursday, February 14, 2013 1:32:45 PM
       Link-local IPv6 Address . . . . . : fe80::3039:a6e1:8fc:9bec%13(Preferred)
       IPv4 Address. . . . . . . . . . . : 192.168.0.162(Preferred)
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Lease Obtained. . . . . . . . . . : Sunday, February 03, 2013 12:18:48 PM
       Lease Expires . . . . . . . . . . : Sunday, February 03, 2013 1:18:47 PM
       Default Gateway . . . . . . . . . : 192.168.0.17
       DHCP Server . . . . . . . . . . . : 192.168.0.123
       DHCPv6 IAID . . . . . . . . . . . : 327701294
       DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-18-4C-D3-C3-14-FE-B5-C1-FD-04
       DNS Servers . . . . . . . . . . . : fcee:4:7:9:10::
                                           fcee:4:7:9:11::
                                           192.168.63.122
                                           192.168.63.123
       NetBIOS over Tcpip. . . . . . . . : Enabled
       Connection-specific DNS Suffix Search List :
                                           mydomain.com
    And here is the reason for concern (ran on my pc):
    C:\Windows\system32>nslookup www.yahoo.com
            Server:  UnKnown
            Address:  fcee:4:7:9:10::
            *** UnKnown can't find
    www.yahoo.com: No response from server
    But if I specify explicitly any of the DNS servers:
            C:\Windows\system32>nslookup
    www.yahoo.com white
            Server:  white.mydomain.com
            Address:  192.168.63.122
            Non-authoritative answer:
            Name:    ds-any-fp3-real.wa1.b.yahoo.com
            Addresses:  2001:4998:f00b:1fe::3001
                      2001:4998:f00b:1fe::3000
                      2001:4998:f00d:1fe::3001
                      98.139.183.24
            Aliases: 
    www.yahoo.com
                      fd-fp3.wg1.b.yahoo.com
                      ds-fp3.wg1.b.yahoo.com
                      ds-any-fp3-lfb.wa1.b.yahoo.com
    Or
            C:\Windows\system32>nslookup
    www.yahoo.com skylark
            Server:  skylark.mydomain.com
            Address:  192.168.63.123
            Non-authoritative answer:
            Name:    ds-any-fp3-real.wa1.b.yahoo.com
            Addresses:  2001:4998:f00b:1fe::3001
                      2001:4998:f00b:1fe::3000
                      98.139.183.24
            Aliases: 
    www.yahoo.com
                      fd-fp3.wg1.b.yahoo.com
                      ds-fp3.wg1.b.yahoo.com
                      ds-any-fp3-lfb.wa1.b.yahoo.com
    Ping works fine (as any other app out there that I tried):
    C:\Windows\system32>ping www.yahoo.com
            Pinging ds-any-fp3-real.wa1.b.yahoo.com [98.139.183.24] with 32 bytes of data:
            Reply from 98.139.183.24: bytes=32 time=59ms TTL=47
            Reply from 98.139.183.24: bytes=32 time=72ms TTL=49
            Reply from 98.139.183.24: bytes=32 time=121ms TTL=47
            Reply from 98.139.183.24: bytes=32 time=105ms TTL=49
            Ping statistics for 98.139.183.24:
                Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
            Approximate round trip times in milli-seconds:
                Minimum = 59ms, Maximum = 121ms, Average = 89ms
    More about the environment:
            - Very small domain - two AD servers (both Windows Server 2012), two computers (running Windows 8) and three or four devices (printer, phone, WiFi access point, etc.).
            - The network (DHCP, DNS, servers and gateway static addresses etc.) is both IPv4 and IPv6.
            - There are DNS running on both DC servers.
            - The servers have static IPv4 and 6 addresses.
            - The servers have both DNS addresses (both IPv4 and 6) in their IP configuration.
            - Single forward lookup zone - mydomain.com (and of course _msdcs...).
            - Two reverse lookup zones one for IPv4 and one for IPv6.
            - DHCP has the two DNS servers in the options.
    Call me old-fashioned but I've been using "nslookup yahoo.com" to diagnose my network problems for years and now when it doesn't answer unless i specify the dns server, makes me nervous. Am I right and if I am can you suggest possible problems in
    my configrations.
    Thanks Val

    It's only showing "unknown" for the IPv6 address.
    Go into your IPv6 properties, and set the IP and DNS address settings to be obtained automatically.
    Then in Manage network adapters windows, change the view options to show Menu, then click on Advanced, Advanced, and make sure IPv4 is on top instead of IPv6.
    Ace Fekay
    MVP, MCT, MCITP/EA, MCTS Windows 2008/R2 & Exchange 2007, Exchange 2010 EA, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Technical Blogs & Videos: http://www.delawarecountycomputerconsulting.com/
    This post is provided AS-IS with no warranties or guarantees and confers no rights.

Maybe you are looking for

  • How can I create a iCloud email address to replace a apple ID.

    I am wanting to change my apple ID to an Icloud address but when I try the default is to create another apple ID - which I dont want to do.  Is this possible?

  • How To Give Print Option In Module Pool

    Hi , I am displaying the Output in table control. I have to give the Print option. I have tried to enable the same in the PF status but it is not working as it is in Report. Regards, Srinivas

  • Layout in ALV Grid in OO ABAP

    Hello friends, I want the ALV Grid to be displayed with a default layout. I am able to get the saved layout on the selection screen but when I select that layout still the output layout is not taking it. Please refer the code which I have written. AT

  • Activating Country version India for specific fiscal years

    hi guruz, what is the significance of the 'Activate Country version India for specific fiscal years' option in the SPRO -> Financial Accounting -> Financial accounting Global Settings -> Tax on Sales and purchase -> Basic Settings -> India -> Activat

  • How to activate iPhone without original sim?!

    So bear with me as I explain this predicament. SO I bought a brand new phone off ebay, I check and the phone was not blacklisted.  However the phone was linked with the sellers phone number and I needed the last four of his social and billing zip to