DNS not querying/ recognizing/ resolving internal domain name using nslookup

I've setup a virtual lab for practice purpose on VMware 8 workstation.
I have already asked this question in vm community but still got no answers hence asking it here.
In my vmware workstation 8, for practice lab purpose my setup is as follows:-
1] Win 2k8R2 Enetrprise edi.vm as my DC with DNS & DHCP configured and working perfect. DNS is getting resolved internally via NSLOOKUP. Server has manual ip assigned...192.168.1.xx series.
2] Win xp vm as my Client and getting dhcp lease address from the above DC and also the DNS is getting resolved internally via NSLOOKUP.
Now that these two vms are communicating perfectly with each other, I thought about connecting them to my physical internet.
So, in the Virtual network editor, I added a Host-only type network named
VMnet 04 with Use local dhcp service checkbook Disabled and on each of these vms, in network adapter settings, selected specific virtual network and pointed it to
VMnet 04 in both vms.
Now, in both the vms, an additional network connection got added and hence was successfully able to browse internet from both vms.
Now the REAL problem:--
After the above configuration, when I do NSLOOKUP on the DC, the DNS doesnt resolves external sites on the internet.
I havent specified any kind of conditional forwarding etc.., its a simple DNS setup.
I want it to resolve to the internal domain and also be connected to the internet .
What setting do I need to do in DNS or in VM network?
I tried almost all types of settings in vm virtual network editor by specifying dns manually and so on but none worked.

Sorry my bad.... slight mistake in my question...Here is my corercted query--
After successfully connecting to the internet, when I do NSLOOKUP on the DC, the DNS doesnt resolve my internal domain/site but instead resolves external sites on the internet.
My computer FQDN is nri.wwe.com
Domain dns name is wwe.com
The above should get resolve internally but it searches on the internet.
This is how it should work
& it works perfect when I disable the other NAT network adapter (i.e. disable internet connectivity on my virtual DC)
C:\>nslookup nri.wwe.com
Server:  nri.wwe.com
Address:  192.168.1.11
Name:    nri.wwe.com
Address:  192.168.1.11
But when I again enable internet connectivity, this it what happens.
C:\nslookup www.wwe.com
DNS request timed out.
    timeout was 2 seconds.
Server:  UnKnown
Address:  192.168.12.2
DNS request timed out.
    timeout was 2 seconds.
Non-authoritative answer:
DNS request timed out.
    timeout was 2 seconds.
Name:    www.wwe.com.nsatc.net
Address:  64.152.0.124
Aliases:  www.wwe.com
And when I again nslookup, this is what I get,
C:\>nslookup www.wwe.com
DNS request timed out.
    timeout was 2 seconds.
Server:  UnKnown
Address:  192.168.12.2
DNS request timed out.
    timeout was 2 seconds.
DNS request timed out.
    timeout was 2 seconds.
DNS request timed out.
    timeout was 2 seconds.
*** Request to UnKnown timed-out
Now this 192.168.12.2 is VM assigned DNS via VM Natting with its own DHCP. If we do it manually, none of the virtual machines can connect to the internet. So I cannot fiddle with it anymore as I have already that as well.

Similar Messages

  • CA stops Internal domain names for certificates

    I have got this information from digicert http://www.digicert.com/internal-names.htm  is there any way to ensure all clients works properly.
    Should we have to change our internal domain names to external ones, this will be a problem and visible. It gives us insecured feeling.
    Experts please throw your views.
    Thanks!
    Regards, Ganesh, MCTS, MCP, ITILV2 This posting is provided with no warranties and confers no rights. Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread.

    Hi,
    Thanks for the great information from Andy.
    Following is some detailed information on Split DNS, just for your reference:
    Split-brain DNS is known by a number of names, for example, split DNS or split-horizon DNS. Simply, it describes a DNS configuration where there are two DNS zones with the same namespace – but one DNS zone services internal-only requests, and the other
    DNS zone services external-only requests. However, many of the DNS SRV and A records contained in the internal DNS will not be contained in the external DNS, and the reverse is also true. In cases where the same DNS record exists in both the internal and external
    DNS (for example, www.contoso.com), the IP address returned will be different based on where (internal or external) the query was initiated.
    Hope it is helpful
    Thanks
    Mavis
    Mavis Huang
    TechNet Community Support

  • Error 'DAYOFWEEK' is not a recognized built-in function name.

    hi friend I used the following query with sql server 2008 to select group by records
    SELECT
    sum(ljoin) as lct,
    sum(rjoin) as rct,
    CONCAT(DATE_FORMAT(DATE_ADD(date, INTERVAL(1-DAYOFWEEK(date)) DAY),'%Y-%m-%e'), ' TO ',
    DATE_FORMAT(DATE_ADD(date, INTERVAL(7-DAYOFWEEK(date)) DAY),'%Y-%m-%e')) AS DateRange
    FROM Pairs_Details
    WHERE userid='jitu'
    GROUP BY YEARWEEK(date)
    it return the  following error 'DAYOFWEEK' is not a recognized built-in function name.
    But I can not get my desire result there are my following table, data and desire output which I want
    Pairs_Details table definition:
    CREATE TABLE [dbo].[Pairs_Details](
    [sno] [int] IDENTITY(1,1) NOT NULL,
    [userid] [nvarchar](50) NULL,
    [date] [datetime] NULL,
    [ljoin] [int] NULL,
    [rjoin] [int] NULL
    ) ON [PRIMARY]
    Example data:
    sno userid date ljoin rjoin
    1 jitu 2014-01-21 15:48:24.000 1 NULL
    2 jitu 2014-01-22 15:48:24.000 NULL 1
    3 tetu1234 2014-01-22 15:48:24.000 1 NULL
    4 jitu 2014-01-24 15:48:24.000 NULL 1
    5 saurbh123 2014-01-25 15:48:24.000 1 NULL
    6 jitu 2014-01-26 15:48:24.000 1 NULL
    7 tetu1234 2014-01-28 16:40:05.000 NULL 1
    8 jitu 2014-01-28 16:40:05.000 NULL 1
    Desired output: for perticular userid 'jitu'
    userid | ljoin | rjoin | DATERANGE |
    jitu | 2 | 2 | 2014-01-21 15:48:24.00 TO 2014-01-27 16:40:05.000 |
    please any can help me.
    thanks.
    Jitendra Kumar Sr. Software Developer at Ruvixo Technologies 7895253402

    Try below code..
    SET DATEFIRST 2;
    ;WITH CTE AS
    SELECT * , DATEPART(WW, [date]) AS week_num
    FROM pairs_details
    SELECT userid, SUM(ISNULL(ljoin,0)) as ljoin, SUM(ISNULL(rjoin,0)) as rjoin
    FROM CTE b
    GROUP BY userid, week_num
    still missing date_range concatenated field.. I will get back to it... Meanwhile you can use this..
    Please mark as answer, if this has helped you resolving the issue.
    Good Luck :) .. Visit www.sqlsaga.com for more t-sql code snippets and BI related how to articles.

  • SSMS 2012: Import XML File to SQL Table - 'value' is not a recognized built-in function name!!??

    Hi all,
    I have the following xml file (books1.xml):
    <bookstore>
    <book>
    <BookID>1</BookID>
    <title>Everyday Italian</title>
    <author>Giada De Laurentiis</author>
    <year>2005</year>
    <price>30.00</price>
    </book>
    <book>
    <BookID>2<BookID>
    <title>Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
    </book>
    <book>
    <BookID>3<BookID>
    <title>XQuery Kick Start</title>
    <author>James McGovern</author>
    <year>2003</year>
    <price>49.99</price>
    </book>
    <book>
    <BookID>4<BookID>
    <title>Learning XML</title>
    <author>Erik T. Ray</author>
    <year>2003</year>
    <price>39.95</price>
    </book>
    </bookstore>
    In my Microsoft SQL Server 2012 Management Studio, I executed the following SQL Query code:
    --XQuery w3schools example using books1.xml in C:\Temp folder
    ---SQL Query W3books Title
    ---9 March 2015
    USE XML_XQUERY
    GO
    CREATE TABLE W3Books(
    BookID INt Primary Key,
    Title VARCHAR(30));
    INSERT INTO W3Books (BookID, Title)
    SELECT x.book.query('BookID'), value('.', 'INT'),
    x.book.query('title'), value('.', 'VARCHAR(30)')
    FROM (
    SELECT CAST(x AS XML)
    FROM OPENROWSET(
    BULK 'C:\Temp\books1.xml',
    SINGLE_BLOB) AS T(x)
    ) AS T(x)
    CROSS APPLY x.nodes('W3Books/book') AS x(book);
    SELECT BookID, Title
    FROM W3Books;
    I got the following error messages:
    Msg 195, Level 15, State 10, Line 7
    'value' is not a recognized built-in function name.
    Msg 156, Level 15, State 1, Line 16
    Incorrect syntax near the keyword 'AS'.
    I don't know why I got the error of 'value' is not a recognized built-in function name. Please kindly help and tell me what is wrong in my code and how to correct the error.
    Thanks, Scott Chang
    P. S.
    (1) I mimicked the xml file and SQL Qeury code of Import XML File to SQL Table in
    http://pratchev.blogspot.com/2008/11/import-xml-file-to-sql-table.html. The xml file and the code of this sample worked in my SSMS 2012 program.
    (2) I am learning the "CAST" and "CROSS APPLY" in the Create Instances of XML Data of Microsoft MSDN - it is very abstract to me.

    Hi Stan210, Thanks for your nice response.
    I corrected my xml file as you pointed out.
    I made some changes in some code statements of my SQLQueryW3BookTitle.sql as you instructed:
    --XQuery w3schools example using books1.xml in C:\Temp folder
    ---SQL Query W3books Title
    ---10 March 2015
    USE XML_XQUERY
    GO
    CREATE TABLE W3Books(
    BookID INt Primary Key,
    Title VARCHAR(30));
    INSERT INTO W3Books (BookID, Title)
    SELECT x.book.value('/BookID[1]', 'INT'),
    x.book.value('/title[1]', 'VARCHAR(30)')
    FROM (
    SELECT CAST(x AS XML)
    FROM OPENROWSET(
    BULK 'C:\Temp\books1.xml',SINGLE_BLOB) AS T(x)
    ) AS T(x)
    CROSS APPLY x.nodes('bookstore/book') AS x(book);
    SELECT BookID, Title
    FROM W3Books;
    I executed my revised sql and I got the following Message and Results:
    Msg 515, Level 16, State 2, Line 6
    Cannot insert the value NULL into column 'BookID', table 'XML_XQUERY.dbo.W3Books'; column does not allow nulls. INSERT fails.
    The statement has been terminated.
    (0 row(s) affected)
    Results:
    BookID    Title
    I don't know why I just got the names of columns in Results and the "Cannot insert the value NULL into column 'BookID', table 'XML_XQUERY.dbo.W3Books'; column does not allow nulls, insert fails." in Messages.  Please kindly help, advise me
    how to correct the errors and respond again.
    Many Thanks again,
    Scott Chang

  • Httpd: Could not determine the server's fully qualified domain name, using

    Hello, I am checking why the response time of the display of the pages of the sites are slow, then I checked the error_log file in /var/log/httpd and I got this texts: (I am hosting 3 sites in the server)
    [Mon May 14 21:21:37 2007] [alert] httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
    Processing config directory: /etc/httpd/sites/*.conf
    Processing config file: /etc/httpd/sites/000010.129.0.37_80avepublishing.com.conf
    Processing config file: /etc/httpd/sites/000110.129.0.37_80escuelamovil.com.conf
    Processing config file: /etc/httpd/sites/000210.129.0.37_80sabiduria.com.mx.conf
    Processing config file: /etc/httpd/sites/0003any_80default.conf
    Processing config file: /etc/httpd/sites/virtualhostglobal.conf
    [Mon May 14 21:21:37 2007] [alert] httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
    [Mon May 14 21:21:38 2007] [notice] Apache/1.3.33 (Darwin) mod_jk/1.2.6 DAV/1.0.3 mod_ssl/2.8.24 OpenSSL/0.9.7l PHP/4.4.4 configured -- resuming normal operations
    [Mon May 14 21:21:38 2007] [notice] Accept mutex: flock (Default: flock)
    [Mon May 14 22:12:18 2007] [error] [client 10.129.0.37] File does not exist: /Library/WebServer/Documentsescuelamovil/robots.txt
    [Mon May 14 22:12:18 2007] [error] [client 10.129.0.37] File does not exist: /Library/WebServer/Documentsescuelamovil/error.html
    with the alert:
    [Mon May 14 21:21:37 2007] [alert] httpd: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
    the virtual host file (virtualhostglobal.conf) is:
    # This file is auto-generated by the Server Admin Web
    # backend plugin whenever settings are saved.
    # The Listen and NameVirtualHost directives are generated
    # based on the VirtualHost directive inside
    # each site configuration file found in this directory.
    # Please add appropriate Listen and NameVirtualHost directives
    # if a site is manually edited
    # i.e. the site is moved from sites to sites_disabled (or vice versa)
    # or the site's Virtual Host ip address and/or port is modified
    # Last updated at 2007-05-07 14:22:34 -0500
    Listen 10.129.0.37:16080
    NameVirtualHost 10.129.0.37:16080
    Listen *:16080
    NameVirtualHost *:16080
    how can I correct this alert?
    thanks
    Dual 2 GHz PowerPC G5   Mac OS X (10.4.9)   4GB DDR SDRAM, MAC OS X Server
    Dual 2 GHz PowerPC G5   Mac OS X (10.4.9)   4GB DDR SDRAM, MAC OS X Server

    >how can I correct this alert?
    Fix your DNS.
    This non-fatal error is Apache's way of telling you that it can't work out the hostname of the machine it's running on.
    It uses reverse DNS to determine this information. If you don't have a reverse DNS entry for your server's IP address, this is what you get.
    Fix your DNS and the alert will go away, or just ignore it.

  • [SQL Server]'TO_DATE' is not a recognized built-in function name

    Running 11g dg4msq and getting the error :
    SQL> select * from all_users@dg4msql;
    select * from all_users@dg4msql
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Oracle][ODBC SQL Server Driver][SQL Server]'TO_DATE' is not a recognized
    built-in function name. {10196,NativeErr = 195}

    Hi,
    This problem happened on Windows platforms after upgrading the RDBMS used to access the gateway from 10.2.0.3 to 10.2.0.4 patch 22.
    The solution is to install and apply Oracle Database 10.2.0.4 Patch 29 (Windows Bundle Patch 29) or later to the RDBMS that is running the query and connecting to the Gateway.
    This is detailed in the following note available on My Oracle Support -
    Query Using DG4MSQL Returns Error After Upgrade of RDBMS From 10.2.0.3 to 10.2.0.4 (Doc ID 1078940.1)
    Regards,
    Mike

  • Puny code and IDN(International Domain Name)

    quote:
    code in google.cfm
    <cflocation url='
    http://www.google.co.kr/search?q=#listFirst(cgi.server_name,'.')#'
    addToken='no'>
    The code above is in
    http://www.dot.kr/test/google.cfm.
    if you click the above link it will go to google search page
    with the keyword "
    www."
    if you change the sub-domain "www" to another word, it will
    go to google search page with the keyword "
    another word."
    You can test it with the links below.
    http://book.dot.kr/test/google.cfm
    book
    http://note.dot.kr/test/google.cfm[
    note
    http://adobe.dot.kr/test/google.cfm
    adobe
    http://movie.dot.kr/test/google.cfm
    movie
    http://coldfusion.dot.kr/test/google.cfm
    coldfusion
    http://e.dot.kr/test/google.cfm
    the alphabet
    e
    The links above works fine as I expected.
    when the sub-domain is English, it works fine like the links
    above.
    But the sub-domain is non-English, it goes to google search
    page with the keyword in PUNY Code (xn-code).
    For example,
    The following link doesn't work correctly because the
    sub-domain is non-English.
    http://é.dot.kr/test/google.cfm
    the alphabet
    é
    If you click the link above, it will go to google search page
    with the keyword "
    xn--9ca" instead of "
    é"
    xn--9ca" is the PUNY Code (xn code) of the IDN(international
    domain name) "
    é."
    I like to make it go to google search page with the IDN
    keyword instead of
    the puny code keyword when a user enters IDN sub-domain.
    (I like to make it go to google search page with the IDN
    keyword "
    é" instead of the puny code keyword "
    xn--9ca')
    Any suggestion will be appreciated.

    As IE7 is on the road, most major browsers support
    IDN(International Domain Name)
    I think Server-scripting language should support IDN,
    i.e. we should read IDN in server-scripting languages.
    I've heard that there are some clues for reading IDN in PHP.
    http://pear.speedpartner.de/apidoc/I18N_Punycode/I18N_Punycode/_Punycode_Punycode_php.html
    http://phlymail.de/index.php?sid=79a...oads&what=idna
    http://www.phpclasses.org/browse/file/5845.html
    Then, why can't ColdFusion read IDN?
    For example,
    #cgi.HTTP_HOST in ColdFusion read EDN(English Domain Name).
    We need a kind of cgi variables which is likely named
    "cgi.HTTP_IDN" which can read IDN instead of PunyCode.
    How can I read IDN in ColdFusion?
    Any suggestion will be appreciated.

  • 'SUBSTRING_INDEX' is not a recognized built-in function name.

    actually iam modifing the servlet code to connect with MSSQL.previously it was MYSQL.now compiling is ok.
    while running it shows error at the top of the linked page as...
    error
    [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]'SUBSTRING_INDEX' is not a recognized built-in function name.
    ->can any one give me the solution for this error.

    Don't use that function because it doesn't exist in SQL-Server.
    OR
    Change your SQL to use a function that does exist.
    OR
    Create a user defined function in SQL server that has that name.

  • Cant Launch Firefox from Mac with UTF8 International Domain name

    From a Mac running OSX 10.7, I Launch Firefox with a UTF-8 string containing an international domain name:
    I try to launch http://www.vihtilä.fi and Firefox responds: Can’t connect to http://www.vihtil\xc3\xa4.fi but the address bar string is correct. If I copy the address bar string, and paste it back into the address bar, then hit enter, the site opens. Safari and Chrome launch the correct site.
    \xc3\xc4 is the UTF8 representation of 'ä'
    Firefox on Windows works correctly, but I pass it a WCHAR (UTF16) name.

    That is weird.<br />
    The forum makes a correct and working link (www.vihtilä.fi) via preview, but changes the URL to the escaped encodeURI version when it is posted.
    I can't replicate what you are doing, but the page opens via a desktop shortcut with "<b>-url http://www.vihtilä<i></i>.fi</b>" command line parameter.

  • Reading idn(International Domain Name)

    quote:
    <cfoutput>
    #listFirst(cgi.server_name,'.')#
    </cfoutput>
    I have the code like the above in my webPage
    "subDomain.cfm."
    (1)
    http://korea.dot.kr/test/subDomain.cfm
    (2)
    http://한국.dot.kr/test/subDomain.cfm
    If you click the link (1) in the above, you will read
    "korea."
    If you clikc the link (2) in the above, you will read
    "xn--3e0b707e."
    "xn--3e0b707e" is the puny code for the IDN
    "한국" which means "korea" in korean language.
    I like to read the IDN "한국" instead of the puny
    code "xn--3e0b707e."

    As IE7 is on the road, most major browsers support
    IDN(International Domain Name)
    I think Server-scripting language should support IDN,
    i.e. we should read IDN in server-scripting languages.
    I've heard that there are some clues for reading IDN in PHP.
    http://pear.speedpartner.de/apidoc/I18N_Punycode/I18N_Punycode/_Punycode_Punycode_php.html
    http://phlymail.de/index.php?sid=79a...oads&what=idna
    http://www.phpclasses.org/browse/file/5845.html
    Then, why can't ColdFusion read IDN?
    For example,
    #cgi.HTTP_HOST in ColdFusion read EDN(English Domain Name).
    We need a kind of cgi variables which is likely named
    "cgi.HTTP_IDN" which can read IDN instead of PunyCode.
    How can I read IDN in ColdFusion?
    Any suggestion will be appreciated.

  • I Published a report on the report server but it's not showing in the internal application we use to access reports

    Hi, 
    I Published a report on the report server but it's not showing in the internal application we use to access reports. The name of the application we use is called MAMA and this application has access to all the reports on the SQL report server. My email is
    [email protected] my cell phone number is 201-888-7952. 
    Thanks. 

    Hi Roger,
    Based on my understanding, you publish a report on the report server. When you access reports with internal application, the report doesn’t display, right?
    In your scenario, since you mentioned you have published the report to report server, please go to report manager, check if you can see the published report and open the report properly. If the published report is displayed on report manager, it should not
    be the issue in Reporting Services. In this scenario, since the MAMA application has established connection with on report server, it may not update items on report server after you publish your report onto report server. So please try to “refresh” in MAMA
    or reconnect the report server. If issue persists, I suggest you contact the MAMA application vendor to get some more effective advices.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Resolving arabic domain name in Solaris DNS server

    Hi..
    I just quickly want to know how can i define arabic font domain name to get resolve in my DNS server?
    I tried to put entry with arabic name but editor making it abnormal, i recently get arabic locale installed on server through north Africa region. Locale is now showing me "AR" ..
    Thank you

    Sorry my bad.... slight mistake in my question...Here is my corercted query--
    After successfully connecting to the internet, when I do NSLOOKUP on the DC, the DNS doesnt resolve my internal domain/site but instead resolves external sites on the internet.
    My computer FQDN is nri.wwe.com
    Domain dns name is wwe.com
    The above should get resolve internally but it searches on the internet.
    This is how it should work
    & it works perfect when I disable the other NAT network adapter (i.e. disable internet connectivity on my virtual DC)
    C:\>nslookup nri.wwe.com
    Server:  nri.wwe.com
    Address:  192.168.1.11
    Name:    nri.wwe.com
    Address:  192.168.1.11
    But when I again enable internet connectivity, this it what happens.
    C:\nslookup www.wwe.com
    DNS request timed out.
        timeout was 2 seconds.
    Server:  UnKnown
    Address:  192.168.12.2
    DNS request timed out.
        timeout was 2 seconds.
    Non-authoritative answer:
    DNS request timed out.
        timeout was 2 seconds.
    Name:    www.wwe.com.nsatc.net
    Address:  64.152.0.124
    Aliases:  www.wwe.com
    And when I again nslookup, this is what I get,
    C:\>nslookup www.wwe.com
    DNS request timed out.
        timeout was 2 seconds.
    Server:  UnKnown
    Address:  192.168.12.2
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    DNS request timed out.
        timeout was 2 seconds.
    *** Request to UnKnown timed-out
    Now this 192.168.12.2 is VM assigned DNS via VM Natting with its own DHCP. If we do it manually, none of the virtual machines can connect to the internet. So I cannot fiddle with it anymore as I have already that as well.

  • MSExchangeTransport 12014 3rd Party SSL Certificate does not match internal domain name.

    I have a co-existance of Exchange 2003 and Exchange 2010 and after installing a new 3rd party cert I'm getting The following error.   All mail is flowing and OWA is working. 
    Microsoft Exchange could not find a certificate that contains the domain name Exchange.domain.local in the personal store on the local computer. Therefore, it is unable to support the STARTTLS SMTP verb for the connector Default EXCHANGE with a FQDN parameter
    of Exchange.domain.local. If the connector's FQDN is not specified, the computer's FQDN is used. Verify the connector configuration and the installed certificates to make sure that there is a certificate with a domain name for that FQDN. If this certificate
    exists, run Enable-ExchangeCertificate -Services SMTP to make sure that the Microsoft Exchange Transport service has access to the certificate key.
    Our GoDaddy UC SAN cert is not allowed to have .local SAN names, so I have no way of adding it to the cert.   Is it possible for me to install a local CA and generate a self signed cert for the personal store or would it be better to disable
    TLS for the receive connector?  

    Change the name on the Receive Connector (2010) or on the SMTP Virtual Server (2003) to match the name in the new certificate. One of them is sending the "exchange.domain.local" in the 220 banner when it accepts a connection.
    --- Rich Matheisen MCSE&I, Exchange MVP

  • Internal Domain Names (good or bad?)

    I'm just trying to establish what's good or bad about internal domain naming. I've currently got server.office (when viewed internally) but server.externaldomain.co.uk when viewed externally. But now the time has come to upgrade the servers and it seems a good time to reevaluate the naming and ip status of stuff. My question is that should a network's server and computers have internal dns (ala .office) or external naming linked to internal ip's (computer01.external.co.uk - 10.0.0.2)? What's the advantages of both.
    Thanks.

    Personally I'd stick with the same name from a user's perspective, independent of whether you're using separate DNS zones internally.
    Using mail as an example, you might configure 'mail.domain.co.uk' as the hostname for your mail server.
    By publishing that name in both the internal and external DNS you only need to tell users to configure their mail client to talk to mail.domain.co.uk and they'll always get connected. The magic of DNS means they'll resolve the public IP address if they're outside the network, and the private IP address if they're in the office (or on VPN, etc.). Now users don't need to maintain separate mail profiles for internal and external accounts.
    Now, whether or not mail.domain.co.uk is the actual hostname of the machine on the internal network is a different matter altogether. This could easily be CNAME'd to mailserver.office on the internal zone, allowing you to maintain the .office zone on the inside network which has advantages in that you know you should never serve .office to external clients.
    Personally, in my network, there are no externally-visible hostnames that match the actual machine names.

  • Internal Domain names

    I know what a domain name is for the external web, but what forms of words are acceptable to OS X Server for an intranet? I don't want to have to pay to register a domain name acceptable to the rest of the web, I just want something meaningful for my intranet such as "diary" or "wiki" - or even an IP address alone.
    Do they all have to end in .local or will a single word be OK? Should they all start with http://www. or something else? OS X Server help just assumes any website being set up is for world use, and there are no instructions if you just want to set up a private intranet visible only to people on the internal network but invisible to the outside world.
    Where can I go for guidance/what formats are acceptable, please?
    Many thanks.

    Internal domains can be whatever you want. It doesn't have to be a .com, .net or even .local
    If you want you can have your own domain .bar then you can have foo.bar as a hostname in that domain.
    Since it's only used internally it won't have any impact on anyone outside of your network.
    Similarly, if you really wanted to, you could call your own domain 'apple.com' and then have a hostname of basilisk.apple.com pointing to your machine. Of course, this would impact your ability to get to any other .apple.com hostname, so you might not want to do that, but it is possible.
    As for the 'single word' question, by definition a hostname is a component of your domain which would mean that 'foo' isn't strictly valid, however, you can configure your machine (System Preferences -> Network -> TCP/IP -> Search Domains) to automatically append specific domain names to any lookup. If you set this to 'bar' then a lookup for 'foo' would automatically look up 'foo.bar' and you'd get the result you're looking for.
    Finally, for now, there is no requirement to have 'www' as pointing to your web server. That's just a common convention used around the internet. It's just as valid to have fred.bar as your web server and barney.bar as your mail server if that's what you want.

Maybe you are looking for

  • How can I restore files from /User/ohthatchris/Library ?

    I've been having a bit of a saga with Time Machine, and I think I'm almost there but I need a tip or two. I run TM on a Time Capsule, and have for some time. I wanted to do some renovation when I updated my air to Mountain Lion, as follows: Final BU

  • How to get the number of days of a month belonging to a date interval

    Hi, i am getting mad around a problem, i have 2 dates and a month, i wanto to retrieve the number of days belonging to the month that are in the interval. eg: month january 2011 . begin_date = 11/JAN/2011, END_DATE 30/MAY/2011 result is 21 month janu

  • 1099 reporting in ECC 6

    We recently upgraded from ECC 5 to ECC6.  I've noticed that there are some minor changes to the 1099 reporting program (RFIDYYWT).  I've looked for some documentation explaining the differences but have not had any luck.  Does anyone know where there

  • Please help in my first jdbc code

    hi, in this code i want to get author book name from my database but the problem that : the compiler give error on these lines : statement= connection.createStatement(); ResultSet resultset = statement.executeQuery(""); statement.close(); please see

  • Shimmering once iMovie burned using iDVD

    Hi - I have created a presentation (both scanned photos and video clips) in iMovie 6 and burned it using iDVD. The presentation looks great on iMovie, but after I've burned it and watched it on my DVD, there seems to be a "shimmering" effect on some