DNS needs restart twice

I needed to delete a domain from my primary DNS.
In order to do so, I removed the matching entry from named.conf and also the zone file. Then stopped DNS service and restarted it using the serveradmin command.
Upon the first restart, the DNS service still showed "stopped". When I then restart the DNS another time, it seems to work.
On SA it is the same: Pushing the button to stop the service disables DNS, but to enable DNS again, it is necessary to press the "Start service" button twice.
The log file shows these two lines that may be affiliated with the problem:
Jan 11 00:00:11.650 dnsrdatafromtext: db.194.77.100.zone:2: near eol: unexpected end of input
Jan 11 00:00:11.650 zone 100.77.194.in-addr.arpa/IN: loading master file db.194.77.100.zone: unexpected end of input
Beside of removing the domain entry from named.conf I don't changed anything on other entries or the above mentioned db.194.77.100.zone file overall.
Is this something I have to live with, is it anything bad or all okay ?
By the way, all I did yesterday was to repair permissions on the boot volume. But beside this, nothing else was done.

Before and after the "100.77.194..."-zone are other domain zones. Not sure what kind of information you requested, but here is all content of named.conf, except domain zones:
From beginning of the named.conf file till the first zone, it shows:
// Include keys file
include "/etc/rndc.key";
// Declares control channels to be used by the rndc utility.
// It is recommended that 127.0.0.1 be the only address used.
// This also allows non-privileged users on the local host to manage
// your name server.
// Default controls
controls {
inet 127.0.0.1 port 54 allow {any;} keys {
"rndc-key";
options {
directory "/var/named";
recursion false;
* If there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. Previous versions of BIND always asked
* questions using port 53, but BIND 8.1 uses an unprivileged
* port by default.
// query-source address * port 53;
// a caching only nameserver config
zone "." IN {
type hint;
file "named.ca";
zone "localhost" IN {
type master;
file "localhost.zone";
allow-update { none; };
zone "0.0.127.in-addr.arpa" IN {
type master;
file "named.local";
Then the first domain zone starts.
After my custom zones, this appears:
logging {
category default {
defaultlog;
channel defaultlog {
file "/Library/Logs/named.log";
severity info;
print-time yes;
Not sure if this is the information you need. Just let me know.

Similar Messages

  • T61 needs restart twice a day

    Hi,
    I'm using first version of T61 with windows vista ultimate.
    I regulary update my system.
    The problem is after sometime the system wont work properly, I wont be able to start new applications.
    And few opened applications doesnt work.
    If firefox is open sometimes it works.
    And I have to restart the system and then system works fine for sometime.
    Also when I hibernate and resume my system doesnt get internet.
    Please somebody help me. Its really getting annoying.
    Regards,
    Giri

    hi
    if your browsing the net, it can become awful cluttered at times
    get yourself a good cleaner like CCleaner and clear out all temp files regularly
    also there is often no need to do a whole restart, just log off and log back on again resets lots of things
    most importantly, turn prefetch etc off on your browsing and thikn about putting vista in the bin unlesss you got loadsa money for extra RAM
    it eats it
    hope something in there helps
    T42 - T21 - Tecra 8200 all xp

  • HT3180 My wireless router needed restart. And, no Apple TV signal. How do I reset the Apple TV box.

    My wireless router needed restart. And, no Apple TV signal. How do I reset the Apple TV box? no lite. nothing

    The remote app requires both to be on the same network and home sharing to be enabled, you will need the physical remote to set this up. You can purchase a replacement through Apple.

  • Weblogic server 10.3 needs restart to reflect jsp changes.

    Hello,
    I am using weblogic 10.3.5. My problem is when I make changes to JSPs, it is not getting reflected when I refresh the page. Always I have to perform restart of the server.
    I checked my weblogic.xml and I have the below configuration also.
    <jsp-param>
    <param-name>pageCheckSeconds</param-name>
    <param-value>0</param-value>
    </jsp-param>
    I saw this thread: Weblogic server 10.3 needs restart to reflect jsp changes. , but it not helping me.
    Can anyone help me?
    Thanks.

    you should also need to change the name space please try below
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.1/weblogic-web-app.xsd"
    xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app">
    <jsp-descriptor>
    <page-check-seconds>0</page-check-seconds>
    </jsp-descriptor>
    </weblogic-web-app>
    http://docs.oracle.com/cd/E23943_01/web.1111/e13712/weblogic_xml.htm#BEIBCAJH
    http://docs.oracle.com/cd/E23943_01/web.1111/e13712/weblogic_xml.htm#i1038490
    Regards,
    Sunil

  • Do SameSubnetDelay or SameSubnetThreshold setting need restart windows failover cluster ?

    Hi ,
    I set SameSubnetDelay=2000 and SameSubnetThreshold = 10,but after a failover, when i check the cluster log, we still found SameSubnetDelay and SameSubnetThreshold  use default setting.
    So i want to konw do these settings need restart windows failover cluster core resource group to take effect?
    Our windows version: Windows 2008 R2 SP1
    Many thanks.

    Thanks for your reply.
    After set up new values for these two settings , i checked the values use "cluster /prop " command, it indeed show new values. 
    But after a sql server cluster instance failover, i checked the cluster log to find the cause of failover ,in the cluster log it showed default values for these settings. There were two times like this.
    I will keep watching this, and next time i will post the setting values and cluster log.

  • Does Arch have any tool to check what services needs restart?

    Does Arch have any tool to check what services needs restart after software update just like `checkrestart` from Debian flavoured distros or `needs-restarting` from Red Hat ones?

    Maybe there is some other temporary file that is not a library but deleted that slips through. I got my awk version now to replace my old hack code.
    __pids="$(sudo lsof -F pfn |
    awk '
    /^n/{
    # if this file is a deleted library or binary, show it
    if (del == 1 && match($0, "bin|lib")) {
    print pid;
    del=0;
    del = 0;
    /^fDEL$/{
    # the next file is deleted
    del = 1;
    /^p/{
    # we check a new process
    del = 0
    pid = substr($0, 2)
    }' |
    sort -un |
    paste -sd ' '
    )" && [ -n "$__pids" ] && ps -p "$__pids" && unset __pids || unset __pids
    Edit: Reorder logic, don't execute ps if no processes are found.
    Last edited by progandy (2014-06-12 16:42:27)

  • HT201363 I need restart my security question answer

    I need restart my security question answer

    Hi there al_wafy313,
    You may find the information in the article below helpful.
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/ht5312
    -Griff W. 

  • My brand new iPad air has been completely unresponsive and needed to be "hard restarted" twice.  What's up with that?

    3 days ago, I purchased a new iPad air.  I've installed a few apps on it and have generally just been playing with it and figuring out the OS.  Yesterday, while trying to wake it up, I noticed the device was completely unresponsive, the screen would not even turn on.  I executed a hard restart (held down home and power for 10 sec).  That seemed to remedy it for the time being but it just happened again.  I'm concerned that this will be a recurring issue and will possibly degenerate into a bigger problem for my new iPad.  Is this a known issue?  If so is it a hardware or software related problem.  Any help would be greatly appreciated.  Thanks.

    My first reaction is, "Yuck!"
    I participated not too long ago in this forum in a discussion about music on web pages. All people with any real experience were pretty much against it, unless there was some control that would allow someone to turn it off and on, with the default being set to "off." And, of course, I don't know how it would play with assistive technolology for blind persons (were I to add sounds to one of my web pages, my sister, who is blind, would kill me, I think).
    You would need Ogg Vorbis audio in order for it to be playable in all browsers and I should mention that I had a real nightmare dealing with video on this website because I had not told Apache that Ogg is a supported MIME type. Firefox would not play the Ogg video until I edited the .htaccess file thusly:
    AddType audio/ogg .oga
    AddType video/ogg .ogv
    AddType application/ogg .ogg
    I would imagine you would have to do that on any Apache server. Until you did this, your audio might be playable in some browsers and not playable in others, like Firefox.
    But be careful to not totally distract people with your audio files. Audio on a website brought up in the workplace is usually a clue to others nearby that the person is not working for the company. The first thing that happens is that the page is immediately closed when audio starts coming out of the speakers.

  • Shorewall needs restart to work properly

    Hi there,
    lately I updated shorewall (4.4.9-1) on my gateway, and realized I need to restart it in order to get it working properly.
    shorewall is in my rc.conf, and _seems_ to be started at boot time. But my local network computers cannot access the internet. After I "/etc/rc.d/shorewall restart" everything's back to normal.
    I tried to change daemons order in rc.conf, unbackgrounded shorewall, but it doesn't help.
    Any guidance would be appreciated,
    thanks.

    Yes, I know that shorewall is not a daemon, that's why I don't know why it needs to be restarted...
    I tried to manually stop it, then start it. My internet connection stopped working.
    I then restarted it, and everything works again. Here is the log, if it can help
    ** STOPPING**
    May 26 10:42:15 Stopping Shorewall....
    May 26 10:42:15 Processing /etc/shorewall/stop ...
    May 26 10:42:15 Processing /etc/shorewall/tcclear ...
    May 26 10:42:15 Running /usr/sbin/iptables-restore...
    May 26 10:42:16 IPv4 Forwarding Enabled
    May 26 10:42:16 Processing /etc/shorewall/stopped ...
    rm: cannot remove `/var/run': Is a directory
    May 26 10:42:16 done.
    ** STARTING**
    May 26 10:42:21 Initializing...
    May 26 10:42:21 Loading Modules...
    May 26 10:42:26 Processing /etc/shorewall/init ...
    May 26 10:42:26 Setting up ARP filtering...
    May 26 10:42:26 Setting up Route Filtering...
    May 26 10:42:26 Setting up Martian Logging...
    May 26 10:42:26 Setting up Accept Source Routing...
    May 26 10:42:26 Setting up Proxy ARP...
    May 26 10:42:26 Setting up Traffic Control...
    May 26 10:42:26 IPv4 Forwarding Enabled
    May 26 10:42:26 Processing /etc/shorewall/restored ...
    **RESTARTING (I guess)**
    May 26 10:42:50 Processing /etc/shorewall/shorewall.conf...
    May 26 10:42:50 Loading Modules...
    May 26 10:42:56 WARNING: RFC1918_LOG_LEVEL=6 ignored. The 'norfc1918' interface/host option is no longer supported
    May 26 10:42:56 Compiling /etc/shorewall/zones...
    May 26 10:42:56 Compiling /etc/shorewall/interfaces...
    May 26 10:42:56 Interface "net eth0 detect dhcp,tcpflags,routefilter,nosmurfs,logmartians" Validated
    May 26 10:42:56 Interface "loc eth1 detect tcpflags,nosmurfs,dhcp" Validated
    May 26 10:42:56 Determining Hosts in Zones...
    May 26 10:42:56 fw (firewall)
    May 26 10:42:56 net (ipv4)
    May 26 10:42:56 eth0:0.0.0.0/0
    May 26 10:42:56 loc (ipv4)
    May 26 10:42:56 eth1:0.0.0.0/0
    May 26 10:42:56 Preprocessing Action Files...
    May 26 10:42:56 Pre-processing /usr/share/shorewall/action.Drop...
    May 26 10:42:56 ..Expanding Macro /usr/share/shorewall/macro.Auth...
    May 26 10:42:56 ..End Macro /usr/share/shorewall/macro.Auth
    May 26 10:42:56 ..Expanding Macro /usr/share/shorewall/macro.AllowICMPs...
    May 26 10:42:56 ..End Macro /usr/share/shorewall/macro.AllowICMPs
    May 26 10:42:56 ..Expanding Macro /usr/share/shorewall/macro.SMB...
    May 26 10:42:56 ..End Macro /usr/share/shorewall/macro.SMB
    May 26 10:42:56 ..Expanding Macro /usr/share/shorewall/macro.DropUPnP...
    May 26 10:42:56 ..End Macro /usr/share/shorewall/macro.DropUPnP
    May 26 10:42:56 ..Expanding Macro /usr/share/shorewall/macro.DropDNSrep...
    May 26 10:42:56 ..End Macro /usr/share/shorewall/macro.DropDNSrep
    May 26 10:42:56 Pre-processing /usr/share/shorewall/action.Reject...
    May 26 10:42:56 ..Expanding Macro /usr/share/shorewall/macro.Auth...
    May 26 10:42:56 ..End Macro /usr/share/shorewall/macro.Auth
    May 26 10:42:56 ..Expanding Macro /usr/share/shorewall/macro.SMB...
    May 26 10:42:56 ..End Macro /usr/share/shorewall/macro.SMB
    May 26 10:42:56 Compiling /etc/shorewall/policy...
    May 26 10:42:56 Policy for loc to net is ACCEPT using chain loc2net
    May 26 10:42:56 Policy for loc to fw is ACCEPT using chain loc2fw
    May 26 10:42:56 Policy for loc to fw is REJECT using chain loc2all
    May 26 10:42:56 Policy for loc to net is REJECT using chain loc2all
    May 26 10:42:56 Policy for fw to net is ACCEPT using chain fw2net
    May 26 10:42:56 Policy for fw to loc is ACCEPT using chain fw2loc
    May 26 10:42:56 Policy for fw to net is REJECT using chain fw2all
    May 26 10:42:56 Policy for fw to loc is REJECT using chain fw2all
    May 26 10:42:56 Policy for net to fw is DROP using chain net2fw
    May 26 10:42:56 Policy for net to loc is DROP using chain net2loc
    May 26 10:42:56 Policy for net to fw is DROP using chain net2all
    May 26 10:42:56 Policy for net to loc is DROP using chain net2all
    May 26 10:42:56 Policy for fw to net is REJECT using chain all2all
    May 26 10:42:56 Policy for fw to loc is REJECT using chain all2all
    May 26 10:42:56 Policy for net to fw is REJECT using chain all2all
    May 26 10:42:56 Policy for net to loc is REJECT using chain all2all
    May 26 10:42:56 Policy for loc to fw is REJECT using chain all2all
    May 26 10:42:56 Policy for loc to net is REJECT using chain all2all
    May 26 10:42:57 Processing /etc/shorewall/initdone...
    May 26 10:42:57 Adding Anti-smurf Rules
    May 26 10:42:57 Adding rules for DHCP
    May 26 10:42:57 Compiling TCP Flags filtering...
    May 26 10:42:57 Compiling Kernel Route Filtering...
    May 26 10:42:57 Compiling Martian Logging...
    May 26 10:42:57 Compiling /etc/shorewall/tcdevices...
    May 26 10:42:57 Tcdevice "eth0 8mbit 1mbit" Compiled.
    May 26 10:42:57 Tcdevice "eth1 100mbit 100mbit" Compiled.
    May 26 10:42:57 Compiling /etc/shorewall/tcclasses...
    May 26 10:42:57 Tcclass "eth0 1 full full 0" Compiled.
    May 26 10:42:57 WARNING: Total RATE of classes (2000kbits) exceeds OUT-BANDWIDTH (1000kbits) : /etc/shorewall/tcclasses (line 11)
    May 26 10:42:57 Tcclass "eth0 2 full full 5" Compiled.
    May 26 10:42:57 WARNING: Total RATE of classes (3000kbits) exceeds OUT-BANDWIDTH (1000kbits) : /etc/shorewall/tcclasses (line 12)
    May 26 10:42:57 Tcclass "eth0 3 full full 10 default " Compiled.
    May 26 10:42:57 Compiling /etc/shorewall/tcrules...
    May 26 10:42:57 TC Rule "1 0.0.0.0/0 0.0.0.0/0 tcp 2210" Compiled
    May 26 10:42:57 TC Rule "2 0.0.0.0/0 0.0.0.0/0 tcp 80" Compiled
    May 26 10:42:57 TC Rule "2 0.0.0.0/0 0.0.0.0/0 tcp 443" Compiled
    May 26 10:42:57 TC Rule "3 0.0.0.0/0 0.0.0.0/0 all " Compiled
    May 26 10:42:57 Compiling /etc/shorewall/masq...
    May 26 10:42:57 WARNING: Using an interface as the masq SOURCE requires the interface to be up and configured when Shorewall starts/restarts : /etc/shorewall/masq (line 18)
    May 26 10:42:57 Masq record "eth0 eth1 " Compiled
    May 26 10:42:57 Compiling MAC Filtration -- Phase 1...
    May 26 10:42:57 Compiling /etc/shorewall/rules...
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.DNS...
    May 26 10:42:57 Rule "PARAM - - udp 53" Compiled
    May 26 10:42:57 Rule "PARAM - - tcp 53" Compiled
    May 26 10:42:57 ..End Macro /usr/share/shorewall/macro.DNS
    May 26 10:42:57 Rule "DNS/ACCEPT fw net" Compiled
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.DNS...
    May 26 10:42:57 Rule "PARAM - - udp 53" Compiled
    May 26 10:42:57 Rule "PARAM - - tcp 53" Compiled
    May 26 10:42:57 ..End Macro /usr/share/shorewall/macro.DNS
    May 26 10:42:57 Rule "DNS/ACCEPT loc fw" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw TCP 2210" Compiled
    May 26 10:42:57 Rule "ACCEPT fw loc TCP 2210" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw TCP 631" Compiled
    May 26 10:42:57 Rule "DROP net fw TCP 631" Compiled
    May 26 10:42:57 Rule "ACCEPT fw loc TCP 631" Compiled
    May 26 10:42:57 Rule "DROP fw net TCP 631" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw UDP 631" Compiled
    May 26 10:42:57 Rule "DROP net fw UDP 631" Compiled
    May 26 10:42:57 Rule "ACCEPT fw loc UDP 631" Compiled
    May 26 10:42:57 Rule "DROP fw net UDP 631" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw TCP 21" Compiled
    May 26 10:42:57 Rule "ACCEPT net fw TCP 5662" Compiled
    May 26 10:42:57 Rule "ACCEPT net fw UDP 5665,5672" Compiled
    May 26 10:42:57 Rule "ACCEPT fw net TCP 5662" Compiled
    May 26 10:42:57 Rule "ACCEPT fw net UDP 5665,5672" Compiled
    May 26 10:42:57 Rule "ACCEPT fw loc TCP 4711,4712" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw TCP 4711,4712" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw TCP 14610,14620,14640" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw UDP 14610,14620,14640" Compiled
    May 26 10:42:57 Rule "ACCEPT fw loc TCP 14610,14620,14640" Compiled
    May 26 10:42:57 Rule "ACCEPT fw loc UDP 14610,14620,14640" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw icmp" Compiled
    May 26 10:42:57 Rule "ACCEPT fw loc icmp" Compiled
    May 26 10:42:57 Rule "ACCEPT fw net UDP 123" Compiled
    May 26 10:42:57 Rule "ACCEPT loc fw UDP 123" Compiled
    May 26 10:42:57 Rule "REDIRECT loc 3128 tcp www - !192.168.0.10" Compiled
    May 26 10:42:57 Rule "ACCEPT fw net tcp www" Compiled
    May 26 10:42:57 Rule "DROP net fw TCP 113" Compiled
    May 26 10:42:57 Generating Transitive Closure of Used-action List...
    May 26 10:42:57 Processing /usr/share/shorewall/action.Reject for chain Reject...
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.Auth...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.AllowICMPs...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.SMB...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.DropUPnP...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.DropDNSrep...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 Processing /usr/share/shorewall/action.Drop for chain Drop...
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.Auth...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.AllowICMPs...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.SMB...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.DropUPnP...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 ..Expanding Macro /usr/share/shorewall/macro.DropDNSrep...
    May 26 10:42:57 ..End Macro
    May 26 10:42:57 Compiling MAC Filtration -- Phase 2...
    May 26 10:42:57 Applying Policies...
    May 26 10:42:57 Policy ACCEPT from fw to net using chain fw2net
    May 26 10:42:57 Policy ACCEPT from fw to loc using chain fw2loc
    May 26 10:42:57 Policy DROP from net to fw using chain net2fw
    May 26 10:42:57 Policy DROP from net to loc using chain net2loc
    May 26 10:42:57 Policy ACCEPT from loc to fw using chain loc2fw
    May 26 10:42:57 Policy ACCEPT from loc to net using chain loc2net
    May 26 10:42:57 Generating Rule Matrix...
    May 26 10:42:57 Chain eth0_out deleted
    May 26 10:42:57 Chain eth0_in deleted
    May 26 10:42:58 Chain eth0_fwd deleted
    May 26 10:42:58 Chain eth1_out deleted
    May 26 10:42:58 Chain eth1_in deleted
    May 26 10:42:58 Chain eth1_fwd deleted
    May 26 10:42:58 Optimizing Ruleset...
    May 26 10:42:58 Creating iptables-restore input...
    May 26 10:42:58 Compiling iptables-restore input for chain mangle:...
    May 26 10:42:58 Compiling /etc/shorewall/routestopped...
    May 26 10:42:58 Shorewall configuration compiled to /var/lib/shorewall/.restart
    May 26 10:42:58 Restarting Shorewall....
    May 26 10:42:59 Initializing...
    May 26 10:42:59 Loading Modules...
    May 26 10:43:03 Processing /etc/shorewall/init ...
    May 26 10:43:03 Processing /etc/shorewall/tcclear ...
    May 26 10:43:03 Setting up Route Filtering...
    May 26 10:43:04 Setting up Martian Logging...
    May 26 10:43:04 Setting up Proxy ARP...
    May 26 10:43:04 Setting up Traffic Control...
    May 26 10:43:04 TC Device eth0 defined.
    May 26 10:43:04 TC Device eth1 defined.
    May 26 10:43:04 TC Class 1:11 defined.
    May 26 10:43:04 TC Class 1:12 defined.
    May 26 10:43:04 TC Class 1:13 defined.
    May 26 10:43:04 Preparing iptables-restore input...
    May 26 10:43:04 Running /usr/sbin/iptables-restore...
    May 26 10:43:04 Setting up dynamic rules...
    May 26 10:43:04 IPv4 Forwarding Enabled
    May 26 10:43:04 Processing /etc/shorewall/start ...
    May 26 10:43:04 Processing /etc/shorewall/started ...
    May 26 10:43:04 done.

  • Apple TV needs Restart for Airplay especially after resuming from Sleep Mode

    1. I always have to restart my Apple TV for Airplay when I resume it from Sleep Mode. Neither my MAC not my PC nor my iPhone/iPad can connect to Airplay if it's not retsarted. I did a complete Factory Reset of Apple TV thinking it would be the best way of troubleshooting but in vein. Any help/suggestion/tips from anybody please?
    2. Also - Does Apple TV needs internet always for Airplay? I guess that should work on the LAN even if there is no internet connectivity, Correct?
    Regards,

    Hey loftysub,
    I'd check out the following article, it should be able to help you out:
    Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS4215
    Cheers,
    David

  • Updated to firefox 3.6.6 on laptop and now it can't acces the net "The proxy server is refusing connections" I've restarted twice. My other computer in home works fine. Just not laptop on Network/WiFi

    Can't access the web on lap. It's networked form main computer. The problem started just after I downloaded/updated to Firefox 3.6.6. That may be a coincidence. I get "The proxy server is refusing connections". Restarts don't help. My main computer is fine. I didn't update it.
    == This happened ==
    Just once or twice
    == just after an update to 3.6.6

    Firefox 3.6.6 made a change in prefs to use system proxy settings.
    Check your proxy / network setting in Windows and change it to No Proxy, if you don't use a proxy.
    Internet Options > Connections in the Windows Control Panel.

  • AX Needing restart often

    Right now I have my AX configured to join my AirPort Extreme Base Station's wireless network (not extended, cause for some reason it just doesn't work) so I can have my Mac Pro connect to the internet via ethernet to my AX. It seems quite often when I restart my Mac Pro, the AX looses connection via ethernet and needs to be restarted. Is this a common problem? or a bug? I just want to know if I have a defective product and whether or not it needs to be replaced.

    dchao99 wrote:
    I am surprised this configuration even works.
    Normally, if you set the AX to join a wireless network, the AX is put into client only mode, and the ethernet port is disabled (I've tried several times already). I don't get how you can get ethernet to function out of the AX! Are you sure the Mac Pro is not connected via Airport? Did you disable the Airport on your Mac Pro?
    My Mac Pro does not have an AirPort Card. In the AirPort Utility when selecting my AX, I clicked on Manual Setup. In the Wireless Tab there's a pulldown for several Wireless Modes. With 'Join a wireless network' selected. You can select your current wireless network and underneath that is a check box to 'Allow Ethernet clients'. Preferably I would like to have it setup to Extend my current wireless network, but I loose internet when I do.

  • Help with setting up active directory domain controller/DNS - need this for Clustering

    Disclaimer: I am new to Active Directory, so please dont rule out the obvious things I may have overlooked.
    I need to set up Active Directory Domain controller on at least one server so I can run clustering. I set up the domain controller and ran Cluster validation and that failed - unable to reach writable domain controller.
    When I look at my server manager AD DS complain about DNS:
    NASE-2012-234    4015    Error    Microsoft-Windows-DNS-Server-Service    DNS Server    1/14/2014 12:54:06 AM
    The DNS server has encountered a critical error from the Active Directory. Check that the Active Directory is functioning properly. The extended error debug information (which may be empty) is "". The event data contains the error.
    When I click on DNS this is the error:
    The DNS server has encountered a critical error from the Active Directory. Check that the Active Directory is functioning properly. The extended error debug information (which may be empty) is "". The event data contains the error.
    Output of DCDiag -v is below.
    PS C:\Users\Administrator> dcdiag -v
    Directory Server Diagnosis
    Performing initial setup:
       Trying to find home server...
       * Verifying that the local machine NASE-2012-234, is a Directory Server.
       Home Server = NASE-2012-234
       * Connecting to directory service on server NASE-2012-234.
       * Identified AD Forest.
       Collecting AD specific global data
       * Collecting site info.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=lab,DC=nase,DC=com,LDAP_SCOPE_SUBTREE,(objectCategory=
    ntDSSiteSettings),.......
       The previous call succeeded
       Iterating through the sites
       Looking at base site object: CN=NTDS Site Settings,CN=Default-First-Site-Name,CN=Sites,CN=Configuration,DC=lab,DC=nas
    e,DC=com
       Getting ISTG and options for the site
       * Identifying all servers.
       Calling ldap_search_init_page(hld,CN=Sites,CN=Configuration,DC=lab,DC=nase,DC=com,LDAP_SCOPE_SUBTREE,(objectClass=ntD
    SDsa),.......
       The previous call succeeded....
       The previous call succeeded
       Iterating through the list of servers
       Getting information for the server CN=NTDS Settings,CN=NASE-2012-234,CN=Servers,CN=Default-First-Site-Name,CN=Sites,C
    N=Configuration,DC=lab,DC=nase,DC=com
       objectGuid obtained
       InvocationID obtained
       dnsHostname obtained
       site info obtained
       All the info for the server collected
       * Identifying all NC cross-refs.
       * Found 1 DC(s). Testing 1 of them.
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\NASE-2012-234
          Starting test: Connectivity
             * Active Directory LDAP Services Check
             The host c0c507c4-fb9b-49a6-9a01-ef79d7960c94._msdcs.lab.nasecom could not be resolved to an IP address.
             Check the DNS server, DHCP, server name, etc.
             Got error while checking LDAP and RPC connectivity. Please check your firewall settings.
             ......................... NASE-2012-234 failed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\NASE-2012-234
          Skipping all tests, because server NASE-2012-234 is not responding to directory service requests.
          Test omitted by user request: Advertising
          Test omitted by user request: CheckSecurityError
          Test omitted by user request: CutoffServers
          Test omitted by user request: FrsEvent
          Test omitted by user request: DFSREvent
          Test omitted by user request: SysVolCheck
          Test omitted by user request: KccEvent
          Test omitted by user request: KnowsOfRoleHolders
          Test omitted by user request: MachineAccount
          Test omitted by user request: NCSecDesc
          Test omitted by user request: NetLogons
          Test omitted by user request: ObjectsReplicated
          Test omitted by user request: OutboundSecureChannels
          Test omitted by user request: Replications
          Test omitted by user request: RidManager
          Test omitted by user request: Services
          Test omitted by user request: SystemLog
          Test omitted by user request: Topology
          Test omitted by user request: VerifyEnterpriseReferences
          Test omitted by user request: VerifyReferences
          Test omitted by user request: VerifyReplicas
          Test omitted by user request: DNS
          Test omitted by user request: DNS
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : lab
          Starting test: CheckSDRefDom
             ......................... lab passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... lab passed test CrossRefValidation
       Running enterprise tests on : lab.nasecom
          Test omitted by user request: DNS
          Test omitted by user request: DNS
          Starting test: LocatorCheck
             GC Name: \\NASE-2012-234.lab.nasecom
             Locator Flags: 0xe000f3fd
             PDC Name: \\NASE-2012-234.lab.nasecom
             Locator Flags: 0xe000f3fd
             Time Server Name: \\NASE-2012-234.lab.nasecom
             Locator Flags: 0xe000f3fd
             Preferred Time Server Name: \\NASE-2012-234.lab.nasecom
             Locator Flags: 0xe000f3fd
             KDC Name: \\NASE-2012-234.lab.nasecom
             Locator Flags: 0xe000f3fd
             ......................... lab.nase.com passed test LocatorCheck
          Starting test: Intersite
             Skipping site Default-First-Site-Name, this site is outside the scope provided by the command line arguments
             provided.
             ......................... lab.nasecom passed test Intersite
    PS C:\Users\Administrator>

    http://social.technet.microsoft.com/Forums/en-US/home?forum=winserverDS is the forum for Directory Services questions.  You might want to post your question there.
    .:|:.:|:. tim

  • I mac g5 issue. Needs restarting.

    Hi,
    I have an Imac G5 Mac osx 10.4(tiger)
    And my problem is at times I have a message that comes up very blurrey that states I need to restart my compiuter by pushing the power button when I am working on it.
    Why is it doing this?
    It is under 6 months old.
    Can anyone please help me with this?

    Hi Brian and welcome to Apple Discussions.
    What you are experiencing is a kernel panic. It can be caused by many things; buggy programs, external devices (especially USB devices) or midplane failures.
    Here's Dr.Smokes kernel panic help. It is a VERY good trouble shooting guide that's easy to follow and understand.

  • CP6 - Image button needs clicked twice.

    I am having an issue where an image button inside a group sometimes needs to be clicked twice before the associated success action is fired.  This is how I have it set up.
    3 groups on the slide are initially hidden.  on the slide I have a smart shape button that has an action that shows 1 of the two groups.  In the 1st group I have an image button that hides the 1st and shows the 2nd group.  (think of it as a next button)  Then in the 2nd group I have 2 image buttons.  One for previous (shows group #1) and one for next (shows #3).
    Group 1 and 2 both have a next button in the same exact spot and if I open group 1, click next, click previous, and try to click next again (on group #1) I have to click twice to have it activate.  It's almost like the hit area for the next button in group #2 is still active even though the image button is hidden.  (It almost acts like a dead spot that goes away once you click it)
    Is there any known issue with elements in groups not being hidden 100% and causing overlapping issues with other elements on the slide?

    Hello and welcome on the forum,
    Which version (exact number please) do you use?
    Is it possible to insert a screenshot of the timeline with all groups expanded? If two (shape) buttons are in exact the same location at the same time, one of them can be hidden to have the other one active. I have been trying this out extensively, so I'm a bit puzzled about your problem.
    Lilybiri

Maybe you are looking for

  • Optima letter 'f' will not print

    This makes no sense, but ID will not print the letter 'f' captial or lowercase with any degree of consistency. Sometimes it will print it and sometimes it won't. Although it seems to really dislike the 'fl' combination. The space those characters occ

  • Bridge to 877w

    Maybe I am missing something really simple such as it wont work but I would like to bridge a 1242 ap to an 877w router. Something at the back of my mind says it wont work I have tried everything. 877w will be root 142 will be non root, I even tried a

  • Inkscape won't run on mac 10.7.5

    I have downloaded and properly installed inkscape on my mac. I already have the X11 installed on my computer because it's 10.7.5 and I'm told these models come with X11 already installed. I have already successfully installed and used GIMP in the pas

  • HT204088 iPod charges

    I was charged multiple times for what I think is the same app. I want a refund

  • JDev Compiler Error? - Compiling inner classes

    This maybe just an interpretation of the language standard, but the compiler behavaviour is different from previous versions of JDeveloper and other Java IDE's, with no explanation found. Using JDeveloper 9.02.829 the following error is received. Err