Please help me write a /var/named/named.local that works!

Dear Mac Wizards,
named.local in /var/named is severely broken, as a result reverse-lookup does not work. Here is the output of
$ sudo named-checkzone named.local /var/named/named.local
dnsmasterload: /var/named/named.local:3: ignoring out-of-zone data (0.0.127.in-addr.arpa)
dnsmasterload: /var/named/named.local:9: ignoring out-of-zone data (0.0.127.in-addr.arpa)
dnsmasterload: /var/named/named.local:11: ignoring out-of-zone data (1.localhost)
zone named.local/IN: could not find NS and/or SOA records
zone named.local/IN: has 0 SOA records
zone named.local/IN: has no NS records
Here is what named.local looks like for the moment. It SHOULD contain reverse-lookup info for the head node, 192.168.1.1, and all the subsequent nodes up to 192.168.1.11. Please assist! I don't want to hose my dns by doing this incorrectly. Thank you very much!
$ more named.local
$ORIGIN localhost.
$TTL 86400
0.0.127.in-addr.arpa. IN SOA localhost. root. (
2006102335 ; Serial
3H ; Refresh
15M ; Retry
1W ; Expire
1D ) ; Minimum
0.0.127.in-addr.arpa. IN NS localhost.
1 IN PTR localhost.
xserve   Mac OS X (10.4.8)   cluster configuration

The answer to this question eventually came from a combination of this short discussion (http://discussions.apple.com/thread.jspa?messageID=660760) and a lot of document reading.
named.local SHOULD look like this:
$TTL 86400
@ IN SOA localhost. root. (
2006102436 ; Serial
3H ; Refresh
15M ; Retry
1W ; Expire
1D ) ; Minimum
IN NS localhost.
1 IN PTR localhost.
If you use server admin to configure DNS zones, extra lines get inserted:
$ORIGIN localhost.
$TTL 86400
0.0.127.in-addr.arpa. IN SOA @.0.0.127.in-addr.arpa. root. (
2006102436 ; Serial
3H ; Refresh
15M ; Retry
1W ; Expire
1D ) ; Minimum
0.0.127.in-addr.arpa. IN NS @
1 IN PTR localhost.
“What's that ‘$ORIGIN localhost.’ on the first line? And why has the SOA turned into ‘@.0.0.127.in-addr.arpa.’ ?” Asks a previous discussion. No one seems to know-we only know that when these lines appear, your reverse-lookup gets hosed and BIND doesn't work like it should.
In case anyone cares, you can write your own zone files by hand. I'll translate one here as an example:
db.192.168.1
$TTL 86400
1.168.192.in-addr.arpa. IN SOA XXXX.XXX.private. sgifford.brown.edu. (
2006102400 ; serial
3h ; refresh
1h ; retry
1w ; expiry
1h ) ; minimum
1.168.192.in-addr.arpa. IN NS xxxx.xxxx.private.
11.1.168.192.in-addr.arpa. IN PTR node11.xxxx.private.
1.1.168.192.in-addr.arpa. IN PTR hebb.xxxx.private.
8.1.168.192.in-addr.arpa. IN PTR node08.xxxx.private.
2.1.168.192.in-addr.arpa. IN PTR node02.xxxx.private.
both zone files start with the phrase “$TTL 86400”. This stands for “Time To Live”. This tells the domain server how long to cache the records retrieved from the zone file. You could just as easily say “$TTL 1440m” or “$TTL 24h” or “$TTL 1d”. It’s all the same to the server. However, if you want changes that you make to the zone to propagate quickly, you might which to make this time shorter.
The next section is called the SOA, which stands for “start of authority”. The first line declares that zone’s primary domain name is hebb.private, that the class of zone is IN, and that the email address of the person responsible for maintaining the domain is [email protected], with a “.” instead of a “@”.
Then comes the SOA and a series of mysterious lines, all of which are conveniently labeled in English. The serial # is an interesting one. It is used by the BIND demon, which loads the DNS zones at startup. If you change the zone file but do NOT change the serial number, Bind will ignore the changes. This is key. So, how do you write a new one? Fortunately, there is a standard format to these numbers: serial number = YYYYMMDDNN. So the serial number in db.192.168.1 is 2006102400, meaning that it is the first version of this file written on 10-24-2006. If you look at the hebb.private.zone file, you will see that the serial number is 2006102413. This was the 13th version of this file written on 10-24-2006. Ironically enough, it was the one that finally worked. I hope that you never have to use this piece of information, but FYI the maximum number of versions per day is 100.
Below the serial number is a short list that looks like this:
3h; refresh
1h; retry
1w; expiry
1h); minimum
These mean pretty much what they look like they should mean. Refresh is how often the BIND will come looking for a new serial number: in this case every 3 hours. If the master DNS server fails to accept changes to the zone-as it will if this file is not written correctly-BIND will Retry every hour. If BIND fails to update the master DNS server with the new zone information, the DNS server will continue to act on the last valid information that it had until its Expiry, which I have set here for 1 week. That’s probably the shortest period of time that I would choose-any shorter and you may or may not have time to catch and correct the changes before dns comes crashing down. The last field, the minimum, has a singular purpose: to cache negative TTL answers. If you take a node offline, but leave its record in the zone file, BIND will continue to query for that node, despite there being no answer. How long BIND continues to query is set here. Unlike the expiry, I would set this value to be something small, because BIND will continue to query and take up system and network resources until it gets an answer, or until the Minimum amount of time passes.
Now that you understand what amounts to the header information in this file, we get into the real meat of it: where it defines the nameserver and lays out the map of the domain. All of this takes place in the lines:
xxxx.private. IN NS xxxx.xxxx.private.
xxxx.private. IN A 192.168.1.1
node11 IN A 192.168.1.11
xxxx IN A 192.168.1.1
node08 IN A 192.168.1.8
node02 IN A 192.168.1.2
node03 IN A 192.168.1.3
node04 IN A 192.168.1.4
node05 IN A 192.168.1.5
node06 IN A 192.168.1.6
node07 IN A 192.168.1.7
node09 IN A 192.168.1.9
node10 IN A 192.168.1.10
fileserver IN A 192.168.1.xxx
The first line contains the “NS” – the nameserver used to lookup a domain. The next line begins a series of lines, each of which are “A” record that is used to link the fully qualified domain name to an IP address. In the reverse map, db.192.168.1, you will see, instead of “A” record, “PTR”:
1.168.192.in-addr.arpa. IN NS xxxx.xxxx.private.
11.1.168.192.in-addr.arpa. IN PTR node11.xxxx.private.
1.1.168.192.in-addr.arpa. IN PTR hebb.xxxx.private.
8.1.168.192.in-addr.arpa. IN PTR node08.xxxx.private.
2.1.168.192.in-addr.arpa. IN PTR node02.xxxx.private.
3.1.168.192.in-addr.arpa. IN PTR node03.xxxx.private.
4.1.168.192.in-addr.arpa. IN PTR node04.xxxx.private.
5.1.168.192.in-addr.arpa. IN PTR node05.xxxx.private.
6.1.168.192.in-addr.arpa. IN PTR node06.xxxx.private.
7.1.168.192.in-addr.arpa. IN PTR node07.xxxx.private.
9.1.168.192.in-addr.arpa. IN PTR node09.xxxx.private.
10.1.168.192.in-addr.arpa. IN PTR node10.xxxx.private.
109.1.168.192.in-addr.arpa. IN PTR fileserver.xxxx.private.
PTR stands for “DNS Pointer”, and makes reverse-mapping possible.
Now that you know what you’re looking at, you can begin to see how straightforward it is to edit a zone by hand. You can change any of these values, change the serial number and wait for BIND to come around and refresh in 3 hours. Or, you can stop and restart the nameserver using the following commands:
$ sudo serveradmin stop dns
$ sudo serveradmin start dns
BIND should come around looking for the zone file. If it doesn’t, you can call:
# named –f
Named reads the default configuration of /etc/named.conf, which will direct it to look in the zone files for configuration information. If you are having major troubles with DNS, run named in the foreground with the highest level of debugging possible, level 9:
# named –g -d 9
You can also redirect the output to a file for easier inspection:
# named –g -d 9 >& /tmp/named.out &
Good luck-may the force be with you.
xserve Mac OS X (10.4.8) cluster configuration
xserve Mac OS X (10.4.8) cluster configuration

Similar Messages

  • PLEASE HELP - I need an Apple Care phone number that works in Nepal.

    I am at my wit's end. I just moved to Kathmandu, and of course my macbook pro decided to die on me! I have tried an SMC and PRAM reset to no avail, and now there is nothing when I try to turn it on - no whizzing fan or sounds at all. My battery power is at full strength.
    I need my computer to do my work as well as to stay connected to Canada, and I am feeling really frustrated that I cannot find ANY number or information on the Apple site, despite Nepal being listed as a participating Apple Care country.
    Please, please help!
    Jessica

    Go here - https://locate.apple.com/asia/en/ - and serach for a Nepal service center.
    Good luck,
    Clinton

  • My iphone wouldnt stop restarting so i backed it up and restored it but when i did i had NOTHING on my phone i lost all my contacts my 1,700 photos my texts, emails please help me i have a time machine, will that work?

    I restarted my iphone after it wouldnt stop restarting every 5 seconds so i plugged it into i tunes backed it up and restored it but when i did my phone had no data and that back up i made is gone... is there anyway i can get this back please eveything is gone, 1,700 photos 500 contacts all my emails and texts. i have a Time Machine can i restore itunes that way and have it?

    I suggest plugging your iPhone into a wall socket, and letting it sit for many hours (while connected to WiFi).

  • Bluetooth shuttted down after I updated to Mavericks, please help me !  I am 70 Years old and worked very happy with my iMac (21,5" mid 2010, 3,2 GHz Intel Core 3) until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2. 2 Days all was OK. Next M

    Bluetooth shuttted down after I updated to Mavericks, please help me !
    I am 70 Years old and worked very happy with my iMac (21,5“ mid 2010, 3,2 GHz Intel Core 3)
    until I updated him from  SnowLeopard 10.6.8 to Mavericks 10.9.2.
    2 Days all was OK. Next Morning-Start he needs (until now) 3 minutes to show me a SCREEN only milky white. After that he starts like ever with all ICONS in about 1 minute. (together 4 min.)
    ..But I must notice, that I cannot make anything, because the „BLUETOOTH APPLE WIRELESS KEYBOARD  and the APPLE  MAGIC MOUSE“ doesn't work anything like before.
    I could nothing do, I must drop my APPLE only out.
    That I maked ever 10x and all was the same... (Maveriks also 4x new updated)
    I taked my Logitech-Bluetooth-Mouse from the WIN-Laptop, dropped it in USB from iMAC...and in one second I could work only with this MOUSE...I buyd the Logitech COMBO K520 and all was OK now with my lovely APPLE iMAC to work with him...But without APPLE KEYBOARD and MAGIC MOUSE...and with a 4 min. -START until now.
    I  asked the EXPERTS from APPLE-SUPPORT under Tel. 0800-6645451 in Germany, became a Number, maked many Things by starting new, but the mistake after all is the same like before.
    When I look into ...Apple/ Info/System/ Hardware/ Bluetooth   ..my APPLE says: NO INFOs FOUND (Es wurden keine Informationen gefunden.)
    Under Hardware/ Diagnose : Selbsttest beim Einschalten: zuletzt ausgeführt: 15.05. 14, Ergebnis: Bestanden (that means OK) !!
    I asked many Peaple, who sold APPLE-Computers in the STORS, but they all had no IDEA, how they can help.
    I think, it could be a DRIVER when Starting the BIOS, JAVA RUNTIME a.s.o...
    Is an Expert under YOU to help me by my Problem with this iMAC ?

    dietmarfromdeu,
    if you start up your iMac in Safe mode, do you still have Bluetooth problems with your Apple wireless keyboard and Magic Mouse?

  • Can someone please help. I have a really old MacBook that is running really slow. I want to wipe everything and reinstall the latest software but don't know how to do this. Also is there a way of keeping Microsoft Office when doing this? Thanks in advance

    Can someone please help. I have a really old MacBook that is running really slow. I want to wipe everything and reinstall the latest software but don't know how to do this. Also is there a way of keeping Microsoft Office when doing this? Thanks in advance

    You do realise that wiping the disk means that everything on the disk is erased. Everything. Photos, music, emails, ...
    So the first piece of advice is to make sure you have a back up of everything.
    You need the OS disk to reintsall the operating system. You will use that disk first to erase the drive, then to reinstall the OS.
    Here's the link for the US.  http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    As for MS Office, you will need the original disk that it came on to reinstall it.

  • Please help. How can i get my mic to work??

    + Hi all
    I have a creative inspire 5. 5700 hooked up to my X-FI extreme music via Digital I/O port.
    However im a bit pissed off because i cant get a microphone to work, it seems that the port i use my speakers for is the same port as the microphone..
    Any ideas how to get my mic to work without unplugging the digital I/O?
    Cheers

    /Re: Please help. How can i get my mic to work? The only solution that I can think of is to get the?X-Fi I/O Dri've. Unfortunately, Creative does not sell this anymore on their store. You can buy it online, though most places I find it at, it is refurbished.
    This is what it looks like: http://us.creative.com/products/prod...5&product=4659#
    The other alternati've is the X-Fi I/O Console. This, however is rather expensi've (I think it is anyways).
    http://us.creative.com/products/prod...duct=47&listby=
    Unfortunately those are the only ways I know of. The X-Fi Xtreme Music does not hook into normal front panel solutions.

  • Please help, my Canon Image Formula P-215 will not work w/ Mavericks

    Please help, my canon image formula p-215 will not work w/ the new mavericks upgrade, is there a work around?

    I ran into the same problem, I posted what worked for me in another topic in this forum:
    https://discussions.apple.com/message/25208435#25208435
    Hope it helps

  • Please help to write a query in this format

    Sir,
    I am having a table like following
    Deptno job
    10 aaa
    11 bbb
    12 ccc
    10 ddd
    11 eee
    12 ffff
    10 ggg
    deptno-number
    job- varchar
    in the above table I want the out put like following in a single query ,is it possible.
    10 aaa,ddd,ggg (concatenation of all jobs under that particular deptno)
    11 bbb,eee
    12 ccc,ffff
    I tried with Connect by clause, but i am not able to successfully execute it.
    select dept,substr(max(substr(sys_connect_by_path (job,', '),2)),1,100)
    as job
    from test
    start with dept = 10
    connect by job = prior job
    and prior dept = dept
    group by dept;
    please help me.
    regards
    Mathew

    Hi Mathew,
    One approach is to write a specific function to solve the problems. The get_job function listed below returns a list of employees for the specified department.
    CREATE OR REPLACE FUNCTION get_job (p_deptno in emp.deptno%TYPE)
    RETURN VARCHAR2
    IS
    l_text VARCHAR2(32767) := NULL;
    BEGIN
    FOR cur_rec IN (SELECT Job FROM test WHERE deptno = p_deptno) LOOP
    l_text := l_text || ',' || cur_rec.ename;
    END LOOP;
    RETURN LTRIM(l_text, ',');
    END;
    SHOW ERRORS
    The function can then be incorporated into a query as follows.
    COLUMN employees FORMAT A50
    SELECT deptno,
    get_job(deptno) AS Job
    FROM test
    GROUP by deptno;
    DEPTNO JOB
    10 aaa,ddd,ggg
    11 bbb,eee
    12 ccc,ffff
    Thanks,
    Nagesh.

  • Can you please help me write below query in efficient way

    Hello-
    I have wrote one query and its very slow to get the data because i am counting the code at every column from the table in from clause.
    SELECT SUM(diag_total) diag_total,
    SUM(diag_complete) diag_complete,
    SUM(diag_remaining) diag_remaining,
    SUM(diag_declined) diag_declined
    FROM (SELECT hpc.dmpc_hicn,(SELECT COUNT(DISTINCT d.msd_icd9_ref)
    FROM d4c_map_suspects_to_diagnosis d
    WHERE trim(d.msd_sd_hicn) = trim(hpc.dmpc_hicn)) diag_total,
    (SELECT COUNT(DISTINCT dd.dspd_icd9)
    FROM d4c_suspect_provider_diagnosis dd
    WHERE dd.dspd_ds_id_ref = 1000
    AND trim(dd.dspd_hicn) = trim(hpc.dmpc_hicn)
    AND trim(dd.dspd_npi) = trim(hpc.dpmc_provider_no)) diag_complete,
    -- AND hpc.dmpc_ss_id_ref = 1020) diag_complete,
    (SELECT COUNT(DISTINCT dd.dspd_icd9)
    FROM d4c_suspect_provider_diagnosis dd
    WHERE dd.dspd_ds_id_ref = 1010
    AND trim(dd.dspd_hicn) = trim(hpc.dmpc_hicn)
    AND trim(dd.dspd_npi) = trim(hpc.dpmc_provider_no)) diag_remaining,
    -- AND hpc.dmpc_ss_id_ref = 1020) diag_remaining,
    (SELECT COUNT(DISTINCT dd.dspd_icd9)
    FROM d4c_suspect_provider_diagnosis dd
    WHERE dd.dspd_ds_id_ref = 1020
    AND trim(dd.dspd_hicn) = trim(hpc.dmpc_hicn)
    AND trim(dd.dspd_npi) = trim(hpc.dpmc_provider_no)) diag_declined
    --AND hpc.dmpc_ss_id_ref = 1020) diag_declined
    FROM d4c_provider_assignment pc, d4c_hicn_provider_claims hpc
    WHERE pc.pa_assignedto = &imrrid
    AND trim(pc.pa_providerid) = trim(hpc.dpmc_provider_no));
    Can you please help me in this?
    Thanks in advance.
    Kind regards,
    Nik

    May be this?
    You dont even need sum as we are doing count for the whole data at a time. Please check the results and let us know if there is any issue.
    SELECT COUNT (DISTINCT d.msd_icd9_ref) diag_total
          ,COUNT (DISTINCT CASE WHEN dd.dspd_ds_id_ref = 1000 THEN dd.dspd_icd9 END) diag_complete
          ,COUNT (DISTINCT CASE WHEN dd.dspd_ds_id_ref = 1010 THEN dd.dspd_icd9 END) diag_remaining
          ,COUNT (DISTINCT CASE WHEN dd.dspd_ds_id_ref = 1020 THEN dd.dspd_icd9 END) diag_declined
      FROM d4c_provider_assignment pc
          ,d4c_hicn_provider_claims hpc
          ,d4c_suspect_provider_diagnosis dd
          ,d4c_map_suspects_to_diagnosis d
    WHERE     pc.pa_assignedto = &imrrid
           AND TRIM (pc.pa_providerid) = TRIM (hpc.dpmc_provider_no)
           AND TRIM (dd.dspd_hicn(+)) = TRIM (hpc.dmpc_hicn)
           AND TRIM (dd.dspd_npi(+)) = TRIM (hpc.dpmc_provider_no)
           AND TRIM (d.msd_sd_hicn(+)) = TRIM (hpc.dmpc_hicn);

  • Please help to write a java code for generate Random numbers

    I need a program for generate Random integer numbers by using roulette wheel theory. I search several ares, but I'm unable to find out at lease a Pseudo code for implement this. If you know or have a code for this, Please send me a mail to [email protected] or post here.

    Gagana wrote:
    I need a program for generate Random integer numbers Have a look at the java.util.Random class:
    [http://java.sun.com/j2se/1.5.0/docs/api/java/util/Random.html]
    Or Google:
    [http://www.google.com/search?q=random+java]
    by using roulette wheel theory. What is that?
    ... Please send me a mail to [email protected]
    No, that defeats the purpose of a public forum. And no one is going to e-mail you (other than someone trying to sell V1AGRA).

  • Hi i am using  personal hot spot before updating 6.1.3.now iam using ios 6.1.3 version the personal hot spot is not working..can you please help me on this?how to use that,its in a default mode?

    Hi previously i use personal hotspot,after updating my 6.1.3 ios in india iam not able to use that.It is in a default mode.
    Can you please help me how to use personal hotspot.
    Thanks,
    Goutham.

    Im really good at programming but really suck at algorithms
    >If your are 'really good' at programming, you will be able to solve this problem. Because, it has nothing to do with algorithm.
    >>can someone please please write in a algorithm form for me , i need it by friday i would greatly be thankful for u
    >Wrong person, in the wrong place.

  • PLEASE HELP! BB CURVE 8520 EMAIL AND BBM NOT WORKING! :(

    Ok, i would really appreciate it if someone could help me with my BB curve. i've tried the shop i bought it from and many other people and all ive been told is to send it away to be fixed. i really need my phone every day and dont want to send it away so im trying for a quick fix kind of thing, thanks to anyone who replies.
    My blackberry was bought in October 2010 so its not old, from an o2 shop, it was working completely fine and great up until about 1 month ago.
    i was trying to get onto the internet and a message came up saying 'unable to connect to server please contact service provider or try again later' or something similar to that.
    from this appeared my phone is no longer receiving or sending any emails from or to anyone at all and my blackberry messenger has also stopped working.
    i can open my email and bbm but when i open my bbm i type out my message and hit send and the message sends with a tick to show this but the little D for delivered never appears and my friends are not receiving my messages and im not receiving their messages either.
    my phone says its connected to the internet and wifi, at the top of the screen the signal is full and it says EDGE most of the time or sometimes GPRS. i dont know what's wrong but its so annoying
    i know this message is long but i want to give all details so someone can help me properly, ive tred resetting pulling the battery out, deleting and resetting up my wifi and all that, can anyone please help me? thanks so much if you can! its much appreciated! i can upload an image of what my screen says if it helps just let me know!
    Melissa_Ball

    Hi, I'd recommend checking to make sure that you still have a Blackberry Data Plan by contacting your Network Provider (i.e O2)

  • PLEASE HELP ME. 12.1.1 itunes does NOT work for my windows 7 64 bit

    I have read all the tutorials on here and elsewhere online and nothing works. My cousin goes to school for MIS help and she couldnt even figure out whats going on.
    I HAVE DONE THIS NUMEROUS TIMES!
    - Made sure my windows had all the necessary updates and everything was installed.
    - I uninstalled ALL itunes products in the proper order according to apple discussions.
    - Went through all the folders in program files.
    - Reinstalled it and I get an error message. ( Apple mobile device service (apple mobile device service) failed to start. Verify that you have sufficient privileges to start system services )
    - I have gone through the Services window and tried stopping and restarting the program but I get an error message. (Windows could not start the Apple  Mobile Device Service service on Local Computer - Error 1053: the service did not respond to the start or control request in a timely fashion) I have gone through all the start and stop tutorials and none of them have worked.
    - I have tried clicking ignore and sometimes it finishes installing but then gives me an new error message. ( iTunes was not installed correctly. Please reinstall iTunes. Error 7 (windows error 193) - I tried reinstalling and nothing.
    - I tried finding the ituneshelper download but couldnt find it, I've also tried repairing and nothing works.
    - I had downloaded and older version of itunes a few days ago that WAS working the 12.1 version (NOT 12.1.1)  but then my cousin came to see if she could fix it and now I can't even download that version.
    I am OUT OF options and I dont want to have to spend the money on support. Can some one PLEASE HELP ME!!! I have been trying to fix this for days.

    Hi Thank you,     the apple  mobile service links did not work, i had tried them all. however that same link with the previous versions worked. I had to download the one below and I can at least use itunes.
    iTunes 12.1.0.71 for Windows (64-bit - for older video cards) - itunes64setup.exe (2015-01-28)
    I tried this one but it did not work.
    iTunes 12.1.0.71 for Windows (64-bit) - itunes6464setup.exe(2015-01-28)

  • I have a 4th gen iPod touch and I can not connect to the Internet even though my iPad works and my computer let's me get into the Internet. It gives me a message cannot to server. Please help I have tried to reset it but that does not work

    I have a iPod touch 4th gen. And I cannot get into the Internet I get a message that say cannot connect to server. The other computer and my iPad still work with the Internet . I have reeked to reset it but that does not work. Please help me.

    I do not know wat "reeked to reset" means.
    Try the following:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears
    - Power off and then on your router.
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections

  • Please help me my iphone 4 switch off and not working

    please help me my iphone switch off and not working

    Hello safaabh,
    I would be concerned too if my iPhone would not power on.  I found an article with steps you can take when you encounter an issue like this.  I recommend following the steps below:
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 15 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    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.

Maybe you are looking for

  • SQL Query -- Please Help

    Table1 QTE_ID     SEQ_NO 1435177     2 1435177     5 1435177     7 1435177     8 1435177     12 1435177     14 Table2 QTE_ID     SEQ_NO     CMMT_CURR_AMT 1435177     1     98500 1435177     2     98500 1435177     3     0 1435177     4     98500 1435

  • Switchin to selection screen from end-of-selection

    Hi Experts,     I am creating a report, where I generate an ALV output. From selection screen, I am going to some 4, 5 output screens. selection screen -> output screen1 -> output screen2 -> output screen3. Can I go to selection screen from output sc

  • Problem in accessing application server file using open dataset

    Hi All, I am trying to access application server file using open dataset command, its working fine for normal path which imention. But when i am giving path of XI server file, its not working. How to access XI server file using open dataset. Please l

  • UK app needed but currently in New Zealand

    I am from the UK  but I am currently in New Zealand, so currently have a New Zealand iTunes account.  Can I temporarily switch it back to a uk one so I can download an app which is only available at the UK store and then switch it back to New  Zealan

  • Double click does not work

    I used to be able to double-click on cfm files on my computer (XP pro) or right-click and select "Edit in Homesite+" and they would open perfectly in Homesite. (I'm running Homesite 5.5.) Now, for some reason, neither of those work -- when I try them