Dnsmasq sends out its own ip as dns-server dhcp option

Hi,
i have a gateway / dns server on 192.168.1.1
I have a dhcp server on 192.168.1.2 (dnsmasq)
I configured dnsmasq to look into /etc/resolv.conf (well, that's actually default behavior) and use that to specify dns server when replying to client dhcp requests.
However, it sends out its own ip instead, which is *not cool*.
# cat /etc/resolv.conf
nameserver 192.168.1.1
#nameserver 127.0.0.1
#nameserver 212.71.0.33
# edpnet
nameserver 212.71.0.33
# grep -v ^# /etc/dnsmasq.conf | grep -v '^$'
domain-needed
bogus-priv
dhcp-range=192.168.1.5,192.168.1.255,12h
dhcp-host=q700
dhcp-host=dieter-ws
dhcp-host=dieter-dellD620-arch
dhcp-host=gibran
dhcp-host=hilde-compaq-arch
dhcp-host=hilde-vbox-win
dhcp-host=BRN_0441B3
dhcp-option=option:router,192.168.1.1
log-dhcp
# cat /etc/hosts
# /etc/hosts: static lookup table for host names
#<ip-address> <hostname.domain.org> <hostname>
127.0.0.1 localhost.localdomain localhost
192.168.1.2 dieter-p4sci-arch server
192.168.1.3 q700
192.168.1.5 dieter-ws
192.168.1.6 dieter-dellD620-arch
192.168.1.7 dieter-delle5410-arch gibran
192.168.1.8 hilde-compaq-arch
192.168.1.9 hilde-vbox-win
192.168.1.10 BRN_0441B3 hl5250
178.79.146.162 dieter-linode1
# End of file
here's what I see in /var/log/daemon.log, when I start dnsmasq and do a dhcp request.
Note the discrepancy between what it says as "using nameserver" and what it actually tells clients.
Feb 12 18:10:50 dieter-p4sci-arch dnsmasq[2168]: started, version 2.55 cachesize 150
Feb 12 18:10:50 dieter-p4sci-arch dnsmasq[2168]: compile time options: IPv6 GNU-getopt no-DBus no-I18N DHCP TFTP
Feb 12 18:10:50 dieter-p4sci-arch dnsmasq-dhcp[2168]: DHCP, IP range 192.168.1.5 -- 192.168.1.255, lease time 12h
Feb 12 18:10:50 dieter-p4sci-arch dnsmasq[2168]: reading /etc/resolv.conf
Feb 12 18:10:50 dieter-p4sci-arch dnsmasq[2168]: using nameserver 212.71.0.33#53
Feb 12 18:10:50 dieter-p4sci-arch dnsmasq[2168]: using nameserver 192.168.1.1#53
Feb 12 18:10:50 dieter-p4sci-arch dnsmasq[2168]: read /etc/hosts - 10 addresses
Feb 12 18:10:56 dieter-p4sci-arch dnsmasq-dhcp[2168]: 2764941049 available DHCP range: 192.168.1.5 -- 192.168.1.255
Feb 12 18:10:56 dieter-p4sci-arch dnsmasq-dhcp[2168]: 2764941049 DHCPRELEASE(eth0) 192.168.1.5 80:ee:73:09:fa:94
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 available DHCP range: 192.168.1.5 -- 192.168.1.255
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 client provides name: dieter-ws
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 vendor class: dhcpcd-5.2.10:Linux-2.6.37-ARCH:i686:GenuineIntel
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 DHCPDISCOVER(eth0) 80:ee:73:09:fa:94
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 DHCPOFFER(eth0) 192.168.1.5 80:ee:73:09:fa:94
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 1:netmask, 121:classless-static-route, 33:static-route,
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 3:router, 6:dns-server, 12:hostname, 15:domain-name,
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 26:mtu, 28:broadcast, 42:ntp-server, 51:lease-time,
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 54:server-identifier, 58:T1, 59:T2, 119:domain-search
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 tags: known, eth0
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 next server: 192.168.1.2
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 1 option: 53:message-type 02
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 54:server-identifier 192.168.1.2
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 51:lease-time 00:00:a8:c0
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 58:T1 00:00:54:60
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 59:T2 00:00:93:a8
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 1:netmask 255.255.255.0
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 28:broadcast 192.168.1.255
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 6:dns-server 192.168.1.2
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 3:router 192.168.1.1
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 available DHCP range: 192.168.1.5 -- 192.168.1.255
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 client provides name: dieter-ws
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 vendor class: dhcpcd-5.2.10:Linux-2.6.37-ARCH:i686:GenuineIntel
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 DHCPREQUEST(eth0) 192.168.1.5 80:ee:73:09:fa:94
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 DHCPACK(eth0) 192.168.1.5 80:ee:73:09:fa:94 dieter-ws
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 1:netmask, 121:classless-static-route, 33:static-route,
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 3:router, 6:dns-server, 12:hostname, 15:domain-name,
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 26:mtu, 28:broadcast, 42:ntp-server, 51:lease-time,
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 requested options: 54:server-identifier, 58:T1, 59:T2, 119:domain-search
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 tags: known, eth0
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 next server: 192.168.1.2
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 1 option: 53:message-type 05
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 54:server-identifier 192.168.1.2
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 51:lease-time 00:00:a8:c0
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 58:T1 00:00:54:60
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 59:T2 00:00:93:a8
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 1:netmask 255.255.255.0
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 28:broadcast 192.168.1.255
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 6:dns-server 192.168.1.2
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 9 option: 12:hostname dieter-ws
Feb 12 18:11:00 dieter-p4sci-arch dnsmasq-dhcp[2168]: 3497735943 sent size: 4 option: 3:router 192.168.1.1

1 yes, the dhcp server who's scope is full will not do a dhcp
'offer'
2 dhcp that answers fastest with a 'offer' will win. A delay is configurable (but changes nothing
about the root scenario were the fastest will win)
Note that if the scopes overlap on the servers, they might not lease out all the addresses in the scope.
I would enlarge the scope as you will want to fence against unavailability of one of the servers (or a network connection for that matter). you currently have more addresses leased out than any set of two of your servers can offer.
MCP/MCSA/MCTS/MCITP

Similar Messages

  • LMS4.2 sending out 2 set of report link & server name

    2 set of link report( different module) was sent from LMS , but only 1 set of them is opening.
    The server name had not changed since LMS 4.2 was setup for about 1 month.
    the working set#1 link:
    http://LMS:1741/rme/changeAuditJobDetails.do?button=details&jobid=1050&instanceid=22
    below the set#2 link that is not working:
    http://LMS.na.abc.com:1741/cmapps/utReportJob.do?crosslaunch=dashboard&reportID=1000.2
    http://LMS.na.abc.com:1741/cmapps/utReportJob.do?crosslaunch=dashborad&reportID=1010.14
    It seem that the server name appear as" LMS.na.abc.com"  in the Campus module report.
    and in the DCR Device Polling job (DCRDevPollReport) DCR unreachable Device report.
    but Server Name " LMS41" from RME link report.
    We notice any link with set#1 type works, even if we edit the set2 link manually , it works.
    ie both " LMS " and  " LMS.abc.com " will work, but not " LMS.na.abc.com"
    Is there anywhere we could edit the link that is being send out by the report.?
    Does hostname change script command works ( no actual hostname changes so far)?

    Hi,
    DBNetLib (Database Network Library) errors occur when the BizTalk Server runtime is unable to communicate with either the MessageBox or Management databases. When this occurs, the BizTalk Server runtime instance that catches the exception shuts down and
    then cycles every minute to check to see if the database is available.
    Check if there is any server restart activity happening every night?
    Alternatively, you might need to
    Set the SynAttackProtect registry setting as described in
    http://support.microsoft.com/kb/899599. Additionally,
    look at the Group policy for that SQL server to be sure that the Group Policy does not periodically UNDO the setting change that you did above.
    Refer:
    [DBNETLIB][ConnectionWrite (send()).]General network error. Check your network documentation.
    Other possible causes could be
    1) Low hardware specs (Could be hard disk memory issue, check the free space on the server)
    2) Sharing one server or disk for more than one group of BizTalk databases
    It could also be a network card issue that could we worked around by turning off TCP Chimney using the following command:
    Netsh int ip set chimney DISABLED
    For more information, see
    Microsoft support article 942861.
    Refer for details:
    Avoiding DBNETLIB Exceptions
    Similar issue reported here ->
    BizTalk service stopping automatically.
    Also refer this link and look into the description of Error 6,10 and 11.
    BizTalk - Errors and Warnings, Causes and Solutions 
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • NIS+, DNS server, DHCP

    I have installed Solaris 2.8 with all the patches on a PC. I installed NIS+ populating the tables from the files included into the folder /nis+files. Now I want to install DNS server for a small local network made up by two hosts: a Window2000PC and a Solaris 2.8 PC. I want to use DNS server of Solaris 2.8 to test the functionality of a DNS client of the PC. And after I want to install DHCP to test the same funcionality . I should like to make things step by step, first with DNS server and after with DNS server together to DHCP server too, both installed on Solaris 2.8, coexisting .
    On the network i have another host ,a router, that gives me the acces to Internet
    How do i install DNS server on Solaris 2.8, and DHCP server ? Can someone help me ?
    Thank you in advance
    Marcello

    Hi Guys,
    I want to thank all for the valuable information.
    I thought of sharing my own comments.
    I have two SunSparc Ultra10 machines. I want to network them together using a Linksys router (Cisco) so they could communicate and also to be able to access the Internet. I let the router to do the (DHCP) work, however; since the routher doesn't send hostname I always got 'unknown' and I need to have proper hostname to do my training work. So, I've read this page and I thought I could contribute the result of my work.
    (assuming my hostname= sys41)
    On Solaris 10, all what I did,
    1. On /etc/hostname.hme0 .. I've added,
    inet sys41
    2. I've created /etc/nodename .. and added,
    sys41
    3. On /etc/default/dhcpagent .. added,
    REQUEST_HOSTNAME=yes
    actualy, it was there, I just removed the comment (#) and changed it from no to yes
    and double checked that I have ,
    PARAM_LIST=1,3,6,12,15,28,43
    That's all, I didn't need to change anything else nor add any script file or anything.
    The following files where not there on my Solaris10 machine,
    /etc/init.d/network
    /etc/init.d/inetsvc
    On Solaris 9,
    1. On /etc/hostname.hme0 .. I've added,
    inet sys41
    2. I've created /etc/nodename .. and added,
    sys41
    3. On /etc/default/dhcpagent .. added,
    REQUEST_HOSTNAME=yes
    actualy, it was there, I just removed the comment (#) and changed it from no to yes
    and double checked that I have ,
    PARAM_LIST=1,3,6,12,15,28,43
    I had to add 15,6,28 on my Solaris 9
    4. /etc/init.d/network
    changed all 'unknown' to 'sys41' which is my hostname
    5. couldn't find /etc/init.d/inetsvc !
    Then I've deleted /etc/nodename on Solaris 9.0 and still worked fine ..
    On Solaris 10, I've deleted /etc/nodename and it didn't work.
    So, I guess for Solaris 10 /etc/nodename is very important .. For the Solaris 9, /etc/inet.d/network did the job !!
    Hope my comments were helpful... Regards ..

  • Dns-server / dhcp cisco 1700

    Hi,
    I wonder if i may run a few questions past you guys. We have a Cisco 1700 at one of our sites which is supposed to be managed but due to problems with the third party company i had to go there to perform some work.
    I wanted to add in a dns server ip. Because i don't have the enable secret (Third PTY won't tell us) i used the break command normally used for password recovery. then once in used "copy start run".
    Q. can i make config changes this way, save the changes then switch the config-register back and reload?
    I managed to make the changes - Dhcp pool - dns-server ip's, right? changed the config-reg back and reloaded. No connectivity. anyway i messed around with different ip's eventually put it back to to original powered of for 5 mins and on again and it was ok.
    Q: have i missed something out?
    Q: could reloading or powering off and on to quickly affect thigs?
    Q: Could the router be downloading it's config or something additional from a TFTP server? Is there anything i can check to confirm this on the config?
    This is the dns part of the config all i want to do is change 1.0.84.187 for 84.33, should be simple?
    ip dhcp pool 0
    network 172.16.0.0 255.255.0.0
    default-router 172.16.0.15
    dns-server 1.0.84.8 1.0.84.187 158.152.1.43 158.152.1.58
    domain-name parkside.net
    lease infinite
    Q: Is this part saying that 1.0.84.187 and 158.152.1.43 are not being used for dns?
    no ip domain lookup
    ip name-server 1.0.84.187
    ip name-server 158.152.1.43
    ip cef
    no scripting tcl init
    no scripting tcl encdir
    Sorry i know thats long winded. Any help on any part of my problem would be much appreciated.
    Kind regards
    J mac

    Hello,
    check for any lines starting with ´boot´ in the upper part of the configuration, it is very well possible that the router is configured to boot a specific file, or from a TFTP server.
    Regarding the change of the DNS server IP address, in DHCP pool configuration mode, first delete the existing line:
    no dns-server 1.0.84.8 1.0.84.187 158.152.1.43 158.152.1.58
    and reenter it:
    dns-server 1.0.84.8 1.0.84.33 158.152.1.43 158.152.1.58
    The DNS servers specified with the ´ip name-server´ command are used for non-DHCP clients.
    Regards,
    Nethelper

  • Does Webcenter Portal Require Its Own Weblogic Domain

    Hello folks, I am trying to install webcenter portal in a HA configuration but I have noticed that whenver I try to run config.sh to extend the HA domain the program errors out with a message about invalid template "CFGFWK-64056 - There is a problem with the template!".
    Now whenever I run config.sh and select the option to create new domain the program runs to completion sucesfully.
    So my question is if webcenter portal requires its own domain and administration server or if I can install it on a domain that is used for other applications also.
    I appreciate your help and thank you in advance.
    Andre

    it does not require own domain, you can extend with your existing domain also,
    try to extend the domain from start>webcenter configuration wizard,

  • Modem AEBS Laptop. Which of those should have DNS server details set?

    Hi,
    I have a modem which is connected to an AEBS. And the AEBS connects via air to my laptop. Which of these three things should have the DNS server IP addresses, supplied by my ISP, set in them, and which shouldn't?
    The modem has a web page based set up, which has a DNS set up available. It seems to have a mind of its own and ignore my settings -- resets to what it was before (which isn't the case of other settings for the modem)
    The base station in its set up has DNS server IP address fields, which was already filled in (automatically possibly -- I can't remember) with my ISP's DNS addresses.
    And there's the places for DNS addresses in the Network in System Preferences. This was empty but I've now put in my ISPs settings there. Either way, with or without, doesn't seem to make any difference.
    Can anyone tell me where there is info online about where to put DNS info correctly for a modem > AEBS > computer set up please? Or maybe someone knows?
    TIA,
    John.

    I never set the DNS servers on any client computer, Mac or Windoze. Note that in the DNS Servers: section of the Network Preferences it says (Optional). I suggest you leave that space blank.
    Similarly, if you are using your AEBS as your gateway router and your Internet connection to your is configured Using DHCP there is no need (and no benefit) to predefining the DNS servers.
    If you have a situation where you must pre-set the DNS servers IP addresses, then I would do it only in the AEBS.
    BTW, I assume this is in conjunction with your other thread about the AEBS crapping out every few hours while downloading files. Remember that DNS is used only to resolve names to IP addresses as in each time you call up a different URL. DNS doesn't enter the picture in the middle of any other kind of transaction. I suspect that DNS is not your problem in this case.

  • Incorrect DNS when using DHCP. DNS server is considered to be a Virus??

    Running 10.5.5. Noticed extreme slow down in resolving domains in safari, firefox. I currently use Verizon FIOS. When looking in network settings it shows a DNS server as 85.255.115.30. This is not verizon's DNS server. When I delete that server out and add the Open DNS server's address internet works great. This is not an issue on Verizon's end because any ethernet connection to any internet provider will default to using that address for DNS. Only does it over ethernet. Tried deleting the port and re adding and still comes back. No issues when booted off another drive. Mcafee says that a Trojan changes the DNS on PC's. No PC's are networked to this mac. I cannot delete this DNS server under the DNS tab in advanced settings...?

    That IP address does seem to fall within the range known to have been used by the DNS changer trojan (try searching the web for "DNS changer", puper, OSX.RSPlug.A, 1023.dmg, etc.). That very likely means that at some point, malware managed to run with "root" privileges on your system.
    Under such circumstances, it would be safest to back up all of your data and reinstall the OS and applications from known "good" media.

  • What is the trick in adding a "secondary zone" to my DNS server

    Hello,
    I am having a hard time adding a secondary zone to my dns server. I followed the instructions carefully but I still get the "refuse" on my zone transfer.  Do I need to go to the "NIC" of my interface card and make the primary DNS
    as the server itself and the secondary DNS the IP of the  "remote" DNS server? 
    Also, do  I need to start configuring the "reverse Lookup zone" (before even starting to add a "secondary zone" and perform a -ZONE -TRANSFER), and add first the "a" record of the other (remote)  DNS server?
    Thanks,
    Teapaq Long.   
    Event Type: Error
    Event Source: DNS
    Event Category: None
    Event ID: 6525
    Date:  11/10/2014
    Time:  2:07:21 PM
    User:  N/A
    Computer: REM-LAB-2K3.leftremote.com
    Description:
    A zone transfer request for the secondary zone localright.com was refused by
    the master DNS server at 192.168.77.92. Check the zone at the master server
    192.168.77.92 to verify that zone transfer is enabled to this server.  To do
    so, use the DNS console, and select master server 192.168.77.92  as the appli
    cable server, then in secondary zone localright.com Properties,view the set-
    tings on the Zone Transfers tab.  Based on the settings you choose, make any
    configuration adjustments there (or possibly in the Name Servers tab) so that
    a zone transfer can be made to this server.
    For more information, see Help and Support Center at
    http://go.microsoft.com/
    fwlink/events.asp.
    Event Type: Error
    Event Source: DNS
    Event Category: None
    Event ID: 6525
    Date:  11/10/2014
    Time:  12:03:18 PM
    User:  N/A
    Computer: LOC-LAB-2K8.localright.com
    Description:
    A zone transfer request for the secondary zone leftremote.com was refused by
    the master DNS server at 192.168.95.92. Check the zone at the master server
    192.168.95.92 to verify that zone transfer is enabled to this server. To do
    so, use the DNS console, and select master server 192.168.95.92 as the appli
    cable server, then in secondary zone leftremote.com Properties,view the set-
    tings on the Zone Transfers tab.  Based on the settings you choose, make any
    configuration adjustments there (or possibly in the Name Servers tab) so that
    a zone transfer can be made to this server.
    For more information, see Help and Support Center at
    http://go.microsoft.com/
    fwlink/events.asp.

    Hi,
    According to the event ID 6525, this may be caused by a refuse of zone transfer request.
    In normal, the secondary DNS server just configured with a preferred DNS server as itself, the alternate DNS server is optional, it depends on your needs.
    When you fill the master DNS server’s IP address when you add secondary zone in the secondary DNS server, it will prompt a warming information if you do not add a PTR record in the master DNS server in the reverse lookup zone, but this won’t affect the zone
    transfer process.
    Have you followed the description of event log and check to see if the master server has enabled zone transfer(Properties
    of zone->Zone Transfer tab->Allow zone transfer)?
    Besides, verify that the master server of the secondary zone is authoritative for the zone. Reference steps below:
    1. On the secondary DNS server, open DNS manager.
    2. Right-click zone, select the General tab, note the IP address of the server that is listed in
    Master Servers.
    3. In the console tree, right-click DNS, and then click
    Connect to DNS Server.
    4. Click The following computer, type the IP address of the master DNS server, and then click
    OK.
    5. In the console tree, expand the master DNS server, and then expand the folder that contains the zone.
    Note: If the zone is not in the folder, the server is not authoritative for the zone. In this case, you must configure the secondary server to transfer the zone from the correct master server.
    6. Right-click the zone, click Properties, and then click the
    Name Servers tab.
    7. Confirm that the secondary server is listed with the correct IP address. To correct the list, do one of the following:
    If the secondary server is not in the list, click Add.
    If the IP address of the secondary server is incorrect, click the server in the list, and then click
    Edit.
    If this problem still exits, from the event log I notice that there are 2 secondary DNS server, REM-LAB-2K3.leftremote.com and LOC-LAB-2K8.localright.com. Are they belong to different domain(leftremote.com and localrght.com) ? what the relationship between
    them?
    It would be helpful if you could provide the network topology. And describe the IP configuration of master DNS server and secondary DNS server.
    Best Regards,           
    Eve Wang

  • My phone spazzes and randomly does stuff on its own like typing a bunch of random letters, or scrolling up/down a page, or going out of an app. What can be done about that?

    I have a 5S and I've had it since december. ever since i got it I've had trouble whit it. It spaces out at random times, types stuff on its own, goes out of applications, scrolls up/down a page etc. This happens almost daily and the only thing I can do about it is lock my phone, go back in, quit all my apps... Along with that now my touch ID has not been working. Although it has started today, I am worried.

    I have an iPhone 6 and have been having this issue since I got it in December 2014. Apps open on their own, scrolling up and down, etc. It's like a ghost is touching the screen. It seems to be the worst when my Verizon connection is only at 3G or my wifi strength is low. I'm not sure if it's an iPhone thing or a carrier issue?? Any ideas?

  • My ipad 2 is working on its own, it's going crazy! It's zooming in and out, typing stuff, opening apps...help?!

    I read that this happened to a handful of people on here and most of them just went to apple and apple switched it without a problem. I was just wondering if that would be the same for me since I don't have any warranty and I fixed my ipad before after the screen broke. But now it just went crazy on its own...would I be charged anything?

    There are small magnets in the mic, but you are correct they shouldn't do it.
    Try separating them anyway.
    If you haven't already, try restarting the iPad: To restart (reboot) Press and Hold the Home and Power buttons until the Apple Logo appears, about 10 seconds.
    Also, you can turn the iPad off, instead of just putting it to sleep. Not a permanent fix, but a workaround until it's figured out.
    Anyone else have a tip for RD ??

  • I am trying to find out how to assign files with particular extensions to the appropriate software. At the moment when I create a file using Word it is apparently given the extension .docx but Word doesn't recognise its own files. How do I alocate th

    I am trying to find out how to assign files with particular extensions to the appropriate software. At the moment when I create a file using Word it is apparently given the extension .docx but Word doesn't recognise its own files. How do I allocate the extension .docx to Word? There used to be a way of doing it, I think under "Preferences" but I can't seem to find it.

    Still in the same location:
    File > Get Info > Open with (select) > Change All (button)

  • Creating Idoc and sending it to its own...

    Hello All,
    The functional design specified that an inbound function module needs to be created to process a custom IDOC, let's say ZMMDLRTL, and using the data from the segments from this basic type ZMMDLRTL, I need to create another IDOC of basic type PORDCR101 to create a PO. This PO IDOC would then have to be posted to the same system where the inbound function module that would process the ZMMDLRTL IDOC. So this is just like creating an IDOC and sending it to yourself right?
    I used the function module MASTER_IDOC_DISTRIBUTE to create the PORDCR101 Idoc and sends it to itself. But now I am getting an error status 20, which is "Receive of IDOC is its own logical system". I just need some inputs on this.
    Thanks,
    Kristine

    Hi!
    In two words - to avoid this error you have to send PORDCR101 to another logical system pointing to the same client and make corresponding settings in distribution model (as you use MASTER_IDOC_DISTRIBUTE).
    Proceed as follows:
    1. Create a "dummy" logical system name, say LOGSYSD. This dummy logical system will serve as the receiver system in the distribution model.
    2. Using SM59 create RFC-destination LOGSYSD for the dummy logical system. The RFC-destination addresses the same client.
    3. Create a distribution view in BD64 with your "real" logical system for client as the sender and LOGSYSD as the receiver for your message type.
    4. Generate partner profiles for distribution model using BD82.
    5. Using WE20 create inbound parameters for your message type for <b>"real"</b> logical system.
    Hope it helps.
    Regards,
    Maxim.

  • Has anyone Had an iphone start expanding out of its own case. I took it to the apple store and they said that is normal to tell you the battery is bad.

    Has anyone Had an iphone start expanding out of its own case. I took it to the apple store and they said that is normal to tell you the battery is bad.

    We need to know more about your system, please download EtreCheck and run the report and please post it on your next reply. Then we can see how your system is configured, what apps are on it and look for anything obvious. We will look forward to seeing your report.

  • Mac os x 10.4 logs out on its own when computer gets "busy"

    mac os x 10.4 logs out on its own when computer gets "busy"

    I have never seen that happen.
    Maybe you should try posting in the _Using Mac OS X Tiger Forum_.
    Someone there may be able to help.

  • IPad mini is flicking in and out of apps on its own. What can I do

    My iPad mini is jumping in and out of apps on its own.  Or when I'm in one and try to close it goes to home screen and app is jiggling then it reopens not closing. Then will start just opening programs at will

    It's usually just a problem when the app crashes and then you tap it again and then it closes and opens again, it will usually stop after a few times. If this is happening while you are in an app and it crashes and does that, it's no problem, just wait a couple of seconds and play the app again, nothing will happen. It's no biggie, don't even sweat it, it rarely happens. Besides, it's happened to me too, it does no damage to your IPad mini.

Maybe you are looking for

  • BB Curve 8900 died and will turn on but still has the red "off" sign

    Hi all.  Great site. I have a Blackberry Curve 8900 and last night the battery completely drained and I could not connect it to a charger until I arrived at work this morning.  I plugged the phone in around 9:00 A.M., and even now at 2:00 P.M. it is

  • BADI help needed

    Hi , In ECC 6.0 , Im creating custom badi  'zbadi' in se18 . Interface name : zbadi_inf ,                                                             impl class : zbadi_imp,                                                             method name : te

  • Hello......all of you Wish You A Happy Diwali..........

    Please clarify the following questions and assign points for good answer.... 1.What is the diff. between Automatic Payment Program(APP) and Automatic Clearing Program(ACP)? 2.What is the purpose of Varient in APP and how you can create varient in F11

  • Aperture will not import all CR2 (iPhoto is fine....)

    I'm currently attempting to move from a PC to a Mac. For the most part this has been a positive experience however Aperture is starting to bug me. My photo library has been copied across and some old NEF files converted to JPEG. The library is locate

  • Top News

    I am trying to implement Top News in the Today page in the Work under Home tab. Now I get an error saying that the taxonomies/sapcrmtopnews/crmusertopnews is not available. I can create the folders under the taxonomies to fix the error. How can creat