DNS set properly?

After all the issues I was having with the server, I decided to do a clean install. This time I have it set as a standalone server until I get the DNS set properly.
Right now, the way I have my DNS configured is this:
^ 0.16.172.in-addr.arpa. - Reverse Zone
- 172.16.0.100 - Reverse Mapping - server1.markhadjar.com.
^ markhadjar.com. - Primary Zone
- server1 - Machine - 172.16.0.100
- mail - Machine - 172.16.0.100
- www - Machine - 172.16.0.100
highlighting markhadjar.com. shows that my name servers are set as:
Zone: markhadjar.com.
Nameserver Hostname: server1.markhadjar.com.
Is all this correct?
Running checkip -checkhostname results in:
Primary Address: 172.16.0.100
Current Hostname: server1.markhadjar.com
DNS HostName: server1.markhadjar.com
The names match. There is nothing to change.
Traceroute works when using server1.markhadjar.com and 172.16.0.100
however, when I type in just the domain markhadjar.com it can't find anything. I have reason to believe this is why some of my services before were not working properly.
Before doing the clean install, I was only able to get Mail and VPN to work. AB/iCal would not work. iChat would only work if I used [email protected] and having the server set to server1.markhadjar.com but it would not work with [email protected]
Any help would be appreciated!
THanks

If you are trying to access your server from your local client machine you need to have the client looking to your server added to the DNS lookup path. Trying to access the server from outside is a whole different story.

Similar Messages

  • Purge DNS setting on my Mac

    I cannot access my email due to a change on my website. I have been told I need to purge the DNS setting on my mac so that the new settings will then be stored.
    What happened is I had to redirect people accesing my website because my isp doesn't have SQL server. Once the redirection happened I couldn't access my email, from anywhere. On my PC's I "flushed" the DNS settings so the updated setting would be stored. I need to do this on my mac.
    How do I do this?
    Thanks!

    DNS Fundamentals
    The following section will go over DNS fundamentals. A Domain Name Server's primary duty is to take IP addresses and return host names, and vice versa. For example, a computer's IP address of 15.1.1.10 will be converted to 'starfury.zone.com' by the DNS. There are several different types of records that are used with a DNS. The most important is the A-record, which returns an IP address for a host name. The A-record's inverse is the PTR record, which returns a host name for an IP address. The PTR record is a little strange because it is created by reversing the IP address and adding 'in-addr.arpa.' to the end. There is also a CNAME record which is a host name alias to another host, this allows multiple host names to resolve to one IP address. These three record types are illustrated below.
    A-record name -> IP address host.domain.com -> 12.1.8.51
    PTR IP address -> name 51.8.1.12.in-addr.arpa. -> host.domain.com
    CNAME host name alias name.domain.com (A-record name) = othername.domain.com
    The next type of DNS record is only used by SMTP Mail Servers. It is called an MX record, or mail exchanger. An MX-list is used with a host to specify how mail for that host should be delivered. The MX-list contains all the possible mail exchanger hosts along with preference values indicating which host should be the final recipient of mail. A host with a lower number value has higher preference (a host with a value of 10 would be preferred over a host valued at 15). If two hosts have the same preference value, they do load-balancing between them. MX records are best explained by example.
    MX-list record for mail.company.com
    10 mail.company.com
    20 mail-backup.company.com
    30 isp-backup.isp.net
    In this example a mail server attempting to deliver mail to 'mail.company.com' will ask DNS for the MX-list shown here. The server will then try and deliver the mail to the host on the MX-list that has the lowest numerical preference value. In this case it would be 'mail.company.com'. The server will then look up the IP address for 'mail.company.com' and deliver the mail to that address. If that host is not available the mail server will attempt to connect to the next best host, 'mail-backup.company.com'. If 'mail-backup.company.com' is also not available the mail server will then try 'isp-backup.isp.net'. Supposing 'isp-backup.isp.net' was up it would accept the mail and then assume responsibility for forwarding it on to 'mail.company.com' because that host is the preferred final destination for mail addressed to 'mail.company.com'. If all three of these hosts are down the attempting mail server will wait for a while (usually around 5-20 minutes) and try all three again in preference order.
    There is a lot more complexity to DNS than what has been described, but that is enough background information to get started. This next section will describe the ways in which the Apple Mail Server uses DNS to deliver mail.
    How the Apple Mail Server uses DNS
    The Apple Mail Server uses DNS to discover what host names should be considered "local" and to properly deliver mail to other mail servers. Without a DNS available the mail server will be essentially nonfunctional. Many mail delivery problems are the result of a misconfigured DNS server. The Apple Mail Server is designed to use the information returned by DNS to auto-configure itself so that it "knows" what names it can be called by.
    Who am I?
    One of the first things the mail server does when it starts up is determine what its own names are. It will use DNS to look up the PTR record for the server computer's IP address to discover the name or names that goes with it (Example server IP 15.0.0.21 = 'mail.zone.com'). This name will be marked as a "local" host in the host list. The server will also mark any hosts that end up being local when resolved through DNS. If a mail comes in that is addressed to 'alias.zone.com' and this name maps to 'mail.zone.com' using a CNAME record, then it will be marked local as well. MX-list hosts can also become "local" hosts if they point to the same computer, (zone.com MX-list; 5 mail.zone.com 10 nowhere.zone.com) 'zone.com' will be "local". All mail addressed to "local" hosts will be delivered to users in the mail servers Users & Groups list. Any hosts which are not local will need to be contacted for message delivery.
    Server IP address 15.0.0.21
    PTR for 21.0.0.15.in-addr.arpa. -> mail.zone.com
    A-record for mail.zone.com -> 15.0.0.21
    CNAME for mail.zone.com -> alias.zone.com
    MX-list for zone.com
    5 mail.zone.com
    10 nowhere.zone.com
    Local Host Names: mail.zone.com, alias.zone.com, zone.com
    Using MX-lists
    MX-lists are usually used in two ways. (1) Providing an alternative/backup mail server for a host, and (2) mapping a domain wide address to a specific mail server. It is important to have a backup mail server available to handle mail for your domain when your primary mail server goes down. You should configure an MX-list for your host which indicates mail for your mail server 'mail.wigit.com' should be delivered to 'mail.wigit.com' unless it is down, in which case it should be delivered to your backup server, 'mail-backup.wigit.com', or your Internet Service Provider's mail server, 'mail-backup.isp.net'.
    MX-list for mail.wigit.com
    10 mail.wigit.com
    15 mail-backup.wigit.com
    20 mail-backup.isp.net
    The second use for the MX-list is to provide a "shortcut" email address for your mail users. An MX-list can be created for a host that doesn't have an A-record, this is called an MX-only record. It is used to simplify email addresses, instead of having an email address of '[email protected]' you can simply use '[email protected]'. To do this, create an MX-only record which indicates mail for 'wigit.com' should go to 'mail.wigit.com'. You'll also want to include your mail server backups in this MX-list.
    MX-only list for wigit.com
    10 mail.wigit.com
    15 mail-backup.wigit.com
    20 isp-backup.isp.net
    The mail server will also use the MX-list for all outgoing mail. It will look up the MX-list for each host and determine which computer should be contacted to deliver the mail. If the mail server comes across a host that does not have an MX-list it will attempt to connect to the A-record address for that host. The server will also try the A-record address if all hosts on the MX-list are unreachable.

  • Changing my dns setting saved my iPad!  But what is "dns"?

    http://dekoded.com/2010/05/09/ipad-slow-youtube-fix/
    I have to share this because it worked for me.
    I was having trouble viewing YouTube videos because of very slow loading times. I was advised to change my dns setting and like magic-- YouTube flows smoothly now!
    But what is "dns"? Will changed setting affect anything else?
    I was ready to take my iPad back because this was a deal breaker for me but now...I may just keep it!

    DNS is the Domain Name Service, and it's used to translate Internet network addresses into names.
    Computers on the Internet, from servers down to your iPad, have to have an identifying address so that they can receive message properly. Internet addresses look like this:
    123.123.123.001
    Which is fine if you're a router, but hopeless if you're a person. DNS associates a name (e.g www.megacorp.com) with the address. When you enter the name the server resolves it to the address.
    There are lots of DNS servers doing this: ISPs have them, big companies have them, and there are public ones (e.g Google and OpenDNS). They sometimes get out of sync, so changing DNS can fix some odd problems

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • I am trying to setup Microsoft office mail and need assistance  - I am receiving the error, unable to find server and DNS setting in the Network

    I am trying to setup Microsoft office mail and need assistance  - I am receiving the error, unable to find server and DNS setting in the Network

    Which version of OSX and what email provider are you using.

  • Could someone who has dns set up correctly confirm that this test works?

    The test that's here http://docs.info.apple.com/article.html?artnum=106798 says if you attempt to visit this link:
    http://17.254.0.91
    and you are taken to Apple's page then you probably don't have your DNS set up correctly.
    Can anyone confirm, who has their DNS set up correctly, that attempting to visit that link does not work for them please?
    TIA

    Right, thanks for that info. I don't understand what all the code stuff is at all, but I do understand this:
    If you type in the link stated and you are taken to Apple’s page then DNS IS SET UP CORRECTLY.
    I'm still confused though. In that article/test in part of its explanation of DNS it says:
    If you encounter some applications that continue to work, it may be because they are set up to go directly to an IP address, bypassing the need for DNS service.
    Surely typing in http://17.254.0.91 into your browser is a way of making your browser access apple's site *bypassing DNS*? -- because you're using the IP address irradicating the need for changing a name into an IP address. The way to test if DNS is working, surely, is to try and access apple's site via www.apple.com? Not http://17.254.0.91.
    Thanks.

  • DNS Set Up system throw as ORA-12154; TNS :could not resolve the connect id

    Hi,
    While i'm creating DNS set up system throws below message
    unable to connect
    SQLState=08004
    DNS Set Up for instantclient(win32-10.2.0.4) system throw as ORA-12154; TNS :could not resolve the connect identified specified.
    operationg system:xp
    dir path:C:\Oracle\instantclient10_2
    TNSNAMES.ORA(C:\Oracle\instantclient10_2\NetWork\ADMIN) Contants
    YourTNSName =sankar
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST =localhost)(PORT =1521))
    (CONNECT_DATA =
    (SID =sankar)
    (SERVER = DEDICATED)
    dir contains:
    sqresus.dll,
    sqresja.dll
    sqoras32.dll
    sqora32.dll
    oraociei10.dll
    oraocci10.dll
    orannzsbb10.dll
    ojdbc14.jar
    ocijdbc10.dll
    ociw32.dll
    oci.dll
    classes12.jar

    user7197586 wrote:
    Hi
    I have been created one DBLink it's created but when i am trying to access the data through the link it's raise error as
    "ORA-12154: TNS:could not resolve the connect identifier specified"
    CREATE
    PUBLIC DATABASE LINK
    Vrd_tcplink
    CONNECT TO
    "SAPVRD"
    IDENTIFIED BY
    "manager123"
    USING
    'VRD_TCP.WORLD'
    created this above dblink
    Kindly Suggest to wau out.
    Regards,
    Sachin
    When using a dblink, the database with the link is acting as a client to the remote database ... exactly like sqlplus running on the db server.
    read: http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/ ora-12154tns-03505

  • My ipod keeps searching for network, even when the network info is all set properly. It has suddenly started doing this. Also, buffering forever...

    My ipod keeps searching for network, even when the network info is all set properly. It has suddenly started doing this. Also, buffering forever... I have tried to reset the network few times, but not working.

    Hello Nazer_502,
    I would be concerned too if my iPhone was acting this way.  It sounds like it is overheating and not holding a charge. I recommend following the steps listed below when experiencing an issue like this:
    Battery life seems short
    Click ( www.apple.com/batteries/iphone.html) for tips on how to prolong iPhone's battery life.
    Try turning iPhone off and then on again.
    Connect iPhone to iTunes and restore iPhone.
    If the screen shows a low-battery image, the battery is low on power and needs to charge for up to ten minutes before you can use it.
    When charging iPhone, make sure to leave it charging until it is fully charged. You'll know the battery is fully charged when the battery icon in the upper-right corner of the screen looks like this .
    Note: When charging using a computer, don't connect iPhone to a keyboard. Also, the computer must be turned on and not in sleep or standby mode. If iPhone is connected to a computer that's not turned on or is in sleep or standby mode, the iPhone battery may drain.
    You can find the full article here:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • DataGrid column width is not set properly

    Hi,
            In the below example I has called the OptimizeDataGrid method on Button Click event to resize the Column according to the data. First time of the button click event it called the function whereas the Datagrid Column width alone is not set properly.whereas on second time it is working properly.
    For Eg : In the below statement the text value is coming as 55 and widthPadding is comes as 25. but the sum of these two value is not in the dg.columns[col].width.
    dg.columns[col].width = text + widthPadding;
    But the same is working on the second time of the Button click event. is any help me out to resovle this issue. Thanks in Advance.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
        width="100%" height="100%" >
        <mx:Script>
            <![CDATA[
                import mx.utils.ObjectUtil;
                import mx.collections.ArrayCollection;
                import mx.core.UITextField;
                import mx.events.AdvancedDataGridEvent;
                import mx.binding.utils.BindingUtils;
                import mx.controls.Alert;           
                import mx.controls.AdvancedDataGrid;
                import mx.controls.advancedDataGridClasses.*;
                import mx.controls.DataGrid;
                import mx.controls.dataGridClasses.*;
                [Bindable]
                private var dpFlat:ArrayCollection = new ArrayCollection([            
                  {Region:"aabbCC", Territory:"Central Californiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
                      Territory_Rep:"Joe Smith", Actual:29134, Estimate:30000}, 
                  {Region:"AAbbcc", Territory:"Nevada",
                      Territory_Rep:"Bethany Pittman", Actual:52888, Estimate:45000}
                private function optimizeDataGrid(dg:Object,widthPadding:uint = 0,heightPadding:uint = 0):void
                    if ((!dg is DataGrid))
                        return;
                    var col:uint;
                    var colWidth:uint;
                    var tf:TextFormat;
                    var renderer:UITextField;
                    var widths:Array = new Array(dg.columnCount);
                    var height:uint = 0;
                    var dgCol:Object;
                    var text:uint = 0;
                    if (dg.columnCount > 0 && dg.dataProvider != null)
                        for (col = 0; col < dg.columnCount; ++col)
                            widths[col] = 0;
                        for each (var item:Object in dg.dataProvider)
                            for (col = 0; col < dg.columnCount; ++col)
                                renderer = new DataGridItemRenderer();
                                dg.addChild(renderer);
                                dgCol = dg.columns[col];
                                renderer.text = dgCol.itemToLabel(item);
                                widths[col] = Math.max(renderer.measuredWidth, widths[col]);
                                height = Math.max(renderer.measuredHeight, height);
                                dg.removeChild(renderer);
                        for (col = 0; col < dg.columnCount; ++col)
                            dg.addChild(renderer);
                            renderer.text = dg.columns[col].headerText;
                            widths[col] = Math.max(renderer.measuredWidth,widths[col]);
                            dg.removeChild(renderer);
                            text = widths[col];
                            dg.columns[col].width = text + widthPadding;
                        if (height != 0)
                            dg.rowHeight = height + heightPadding;
            ]]>
        </mx:Script>
        <mx:DataGrid id="myADG"
               dataProvider="{dpFlat}" rowCount="{dpFlat.length}" sortableColumns="false">       
                 <mx:columns>
                    <mx:DataGridColumn dataField="Region" />              
                    <mx:DataGridColumn dataField="Territory_Rep" headerText="Territory Rep" />
                     <mx:DataGridColumn dataField="Territory" />
                    <mx:DataGridColumn dataField="Actual" />
                    <mx:DataGridColumn dataField="Estimate" />
                </mx:columns>
       </mx:DataGrid>
       <mx:Button label="click" id="click" click="optimizeDataGrid(myADG,25,5);"/>
    </mx:Application>
    Regards
    Harikumar

    With horizontalScrollPolicy="off" (the default), it is hard to control
    column widths because the columns are sometimes overridden to make sure they
    fit on the screen.

  • NLS_LANG not set properly for printing

    Dear all,
    Am setting up pasta for printing using note : How to Setup Pasta Quickly and Effectively (Doc ID 356501.1) 12.0.4 on solaris 10
    a)    Verify the instance’s character set and ensure that the “ICX: Client IANA Encoding” and the “FND: NATIVE CLIENT ENCODING” profiles match the instance’s character set.
    select value from nls_database_parameters
    where parameter = 'NLS_CHARACTERSET';
    AR8MSWIN1256
    b)    Verify that the “Tk2Motif*fontMapCs” parameter within the file Tk2Motif.rgb or Tk2Motif_UTF8.rgb (for UTF8 instances) specifies the correct character set.
    EBS Release 12
    grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    bash-3.00$ grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    !Tk2Motif*fontMapCs: iso8859-2=EE8ISO8859P2
    !Tk2Motif*fontMapCs: iso8859-15=WE8ISO8859P15
    c)    Verify that the NLS_LANG within the Apps listener shows the correct character set.
    grep envs $TNS_ADMIN/listener.ora
    bash-3.00$ grep envs $TNS_ADMIN/listener.ora
                     ( envs='MYAPPSORA=/sets/backup/mar20/appl/MAR19/apps/apps_st/appl/APPSMAR19_setshapps01.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/admin/scripts/gsmstart.sh' )
                     ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,SHLIB_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,LIBPATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,APPLFSTT=MAR19,APPLFSWD=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appl/admin;/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appltmp;/sets/backup/mar20/appl/MAR19/apps/apps_st/comn/webapps/oacore/html/oam/nonUix/launchMode/restricted' )The above doesn't reveal my character set properly. is this normal ?.. can I ignore this ?.If I have to change, how to change this ?
    Please advise
    Kai
    Edited by: KaiS on Mar 21, 2010 12:39 AM

    Kai,
    bash-3.00$ grep MapC $ORACLE_HOME/guicommon/tk/admin/Tk2Motif.rgb
    !Tk2Motif*fontMapCs: iso8859-2=EE8ISO8859P2
    !Tk2Motif*fontMapCs: iso8859-15=WE8ISO8859P15Change the above to:
    Tk2Motif*fontMapCs: iso8859-6=AR8MSWIN1256
    See (Note: 816879.1 - HOW TO CONFIGURE PASTA FOR ARABIC) for details.
    bash-3.00$ grep envs $TNS_ADMIN/listener.ora
    ( envs='MYAPPSORA=/sets/backup/mar20/appl/MAR19/apps/apps_st/appl/APPSMAR19_setshapps01.env,PATH=/usr/bin:/usr/ccs/bin:/bin,FNDSM_SCRIPT=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/admin/scripts/gsmstart.sh' )
    ( envs='EPC_DISABLED=TRUE,NLS_LANG=American_America.AL32UTF8,LD_LIBRARY_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,SHLIB_PATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,LIBPATH=/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib32:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/lib:/usr/dt/lib:/usr/openwin/lib:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc:/sets/backup/mar20/appl/MAR19/apps/tech_st/10.1.2/jdk/jre/lib/sparc/native_threads,APPLFSTT=MAR19,APPLFSWD=/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appl/admin;/sets/backup/mar20/appl/MAR19/inst/apps/MAR19_setshapps01/appltmp;/sets/backup/mar20/appl/MAR19/apps/apps_st/comn/webapps/oacore/html/oam/nonUix/launchMode/restricted' )Change the "NLS_LANG=American_America.AL32UTF8" to "NLS_LANG=American_America.AR8MSWIN1256) -- You could also leave the same line as you should be able to print Arabic with "AL32UTF8".
    Once you are done, bounce all the application services (including the CM) and check then.
    Regards,
    Hussein

  • RTSP packet header information not set properly

    How does the QuickTime Streaming Server set the field "Owner/Creator, Session Id (o):" in the RTSP packet header.
    When analyzing the packets we get "Owner/Creator, Session Id (o): - 58 2721648327 IN IP4 127.0.0.0" which is not our Server's external IP.
    When trying to connect threw a stateful packet inspection firewall, we can't connect to our stream because of the field "o" not being set properly.

    Was there ever a solution to nagardd's original post? I am experiencing the same issue w/ the netmask not being set even though it's setup to do so in /etc/netmasks.
    My /etc/netmasks
    root@fsintntwrkrus1 cat /etc/netmasks
    # The netmasks file associates Internet Protocol (IP) address
    # masks with IP network numbers.
    # network-number netmask
    # The term network-number refers to a number obtained from the Internet Network
    # Information Center.
    # Both the network-number and the netmasks are specified in
    # "decimal dot" notation, e.g:
    # 128.32.0.0 255.255.255.0
    172.25.40.0 255.255.255.0
    *172.25.237.0 255.255.254.0*
    My ifconfig after boot
    root@fsintntwrkrus1 ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    ipge0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 172.25.40.10 netmask ffffff00 broadcast 172.25.40.255
    ether 0:14:4f:22:21:20
    ipge1: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    inet 172.25.237.241 netmask ffff0000 broadcast 172.25.0.0
    ether 0:14:4f:22:21:21

  • Adclonectx.pl throwing classpath is not set properly error

    I recreated the appsutil folder on DB tier and now when I am running the below command to create the context file I am getting error.
    perl adclonectx.pl outfile=E:\R12\11.1.0\appsutil
    The above command is giving error, 'Please ensure that Classpath is set properly'
    Even though I have set the classpath to the below I am getting the error.
    SET CLASSPATH=E:\R12\11.1.0\jdbc\lib\ojdbc5.jar;E:\R12\11.1.0\appsutil\java\xmlparserv2.jar;E:\R12\11.1.0\appsutil\java;E:\R12\11.1.0\jlib\netcfg.jar;E:\R12\11.1.0\jlib\ldapjclnt11.jar
    SET PERL5LIB=E:\R12\11.1.0\perl\5.8.3\lib\MSWin32-X64-multi-thread;E:\R12\11.1.0\perl\5.8.3\lib;E:\R12\11.1.0\perl\site\5.8.3\lib\MSWin32-X64-ulti-thread;E:\R12\11.1.0\perl\site\5.8.3\lib;E:\R12\11.1.0\appsutil\perl

    Sami,
    Are you passing the template in the command as in (R12 adbldxml.pl AutoConfig Tool to Generate the Context File on the Database Tier [ID 1079053.1])?
    If this is a RAC-to-RAC cloning, please see (R12 RAC to RAC cloning fails with 'Please ensure that Classpath is set properly' [ID 966321.1]).
    Thanks,
    Hussein

  • My external speakers have stopped working. A circle with a line through it shows up when I try to adjust the volume.  I have been in system prefrences to check all the sound settings and everything is set properly.  What do I need to do to fix this. Help!

    My external speakers have stopped working. A circle with a line through it shows up when I try to adjust the volume.  I have been in system prefrences to check all the sound settings and everything is set properly.  What do I need to do to fix this. Help!

    Though I have doubts for success, you might try a SMC reset.  It can do no harm.  Otherwise, barring suggestions from others, the Apple Store or qualified repair facility is the last option.
    http://support.apple.com/kb/HT3964
    Ciao.

  • [Solved}Error: Unable to initialize gtk, is DISPLAY set properly?

    i am using aa software that require root access , but when i run it with root access is shows
    Error: Unable to initialize gtk, is DISPLAY set properly?
    I am using kde desktop , but when loginas root in kde and run that application it works fine.
    i have googled a lot on this but did not find any solution.
    Last edited by sanjuchopra (2012-01-19 10:59:39)

    You should NEVER login graphically as root. What software do you want to use? Is it REALLY necessary to give it root access=
    If you want to run it as root, you should do the following in a terminal:
    $ xhost +      enable X access from terminals
    $ su    login as root
    # /path/to/programname
    Or better yet if you use sudo.
    Better yet if you start the program with
    gksu <programname>
    This way you'll be asked for password and won't need a terminal.
    By the way, if the program requires gtk to be in your sistem, maybe you should check that they're installed, giving
    pacman -S gtk2
    Last edited by olorian (2012-01-16 18:34:39)

  • Need to Reconfigure DNS Setting on My AirPort

    Comcast is making changes that require a reconfiguration of the DNS setting on my AirPort (Extreme). Without the reconfiguration, I am unable to connect to the internet. How do I change the DNS setting to "Dynamic DNS" so that any settings can be made automatically by Comcast? I'm clueless.
    Any help is appreciated. Thanks.

    If you're referring to Microsoft Remote Desktop Connection then you need to post your question on a Microsoft forum as this forum is for troubleshooting Apple Remote Desktop...apples software for managing Mac on your network.
    Please clarify which software you're referring to.

Maybe you are looking for

  • The 'work' calendar in ical won't sync with my iphone. All others ok

    I have HOME, WORK  and a google calendar. I have an Ipad2 and an iPhone. For both, under Info in iTunes, I have All Calendars slected. The ipad gets all three, the iPhone will not get WORK. I even unchecked ALL and chose them individually. Still no g

  • Does anybody have any experience integrating a tumblr account with iWeb?

    I was thinking about using tumblr as a way of establishing a more mobile blog solution, and integrating it as seamlessly as possible with my iweb site. I'm not a fan of the iframe solution, as it just personally seems sort of inelegant. (no offense i

  • Help, I can't sync music to my new iphone 4S

    I just got a replacement iphone and upgraded to a 4S (from a 4).  Everything else synced just fine, even my podcasts!  But not my music?  Can someone please help?

  • To select columns based on user's input

    hi all.. i am beginner in oracle forms 6i.. i want to select columns in my query according to user's input? how can i do it in my oracle forms 6i? i am using a graph in my oracle form and i want to plot graph according to user input? in my graph i ha

  • F.27- Customer Statements

    Good Morning SAP Guru's, I have a problem when I execute F.27.  When I input all the information to request a statement for an individual customer, I get an error message:  No date was selected message FB465.  The customer has an account balance per