DHCP Relay forwarded to Secondary when Scope is not available in Primaray

Two ip helper-addresses (let suppose DHCPServer1 and DHCPServer2) are defined on each of the branch router, and customer want to divide the load of DHCP request on two different DHCP Servers. The propose solution by customer is to disable some scope from one DHCP Server (DHCPServer1) and define the similar scope in second DHCP Server (DHCPServer2). Does the DHCP Relay request would be forwarded to secondary server (DHCPServer2), if the scope is disabled on first DHCP Server (DHCPServer1)?

The DHCP request is forwarded to all the addresses defined with the ip helper-address command.
So if you have 2 ip helper-addresses then the DHCP request is sent to both at the same time by the router. First one to respond is usually the one accepted by the client.
Jon

Similar Messages

  • How to deauthorize computer when password is not available ?

    how do you deauthorize a computer when password is not available ?.

    Hi Chandra
    This is not possible using standard PI file adapter capabilities and you can use Scripts for this. You can send email as well from Scripts.
    BPM can be an option.
    Thanks
    Gaurav
    Edited by: Gaurav Bhargava on Dec 16, 2008 4:27 AM

  • 3930K - what make RAM, when Samsung is not available?

    Sorry, I posted this mistakenly in the software forum.
    Are Samsung 1.35v chips the only ones which work reliably?  What are people using when Samsung is not available is or available in unsuitably small kits (4gb or 8gb)?

    There are several people that use G.Skill Ripjaw-Z 8 GB sticks fully populated without problems, even when overclocked.

  • How can iPhone videos sent to another iPhone be made clear like they were recorded even though it sent as a text. with iMessage it's clear but when it's not available the quality *****, how can I make a received vid clear again??? help

    how can iPhone videos sent to another iPhone be made clear like they were recorded even though it sent as a text. with iMessage it's clear but when it's not available the quality *****, how can I make a received vid clear again??? help

    This is determined by your carrier. SMS/MMS is a poor man's email and by that I mean SMS/MMS has major restrictions and limitations compared to email but is a cash cow for cell phone carriers.
    Upload the video to YouTube when connected via wifi and send the YouTube link via text.

  • Can I Connect to 4G LTE with my WIFI IPAD AIR when WIFI is NOT Available? If so, HOW?

    Can I Connect to 4G And LTE with my WIFI IPAD AIR when WIFI is NOT Available? If so, HOW?

    If you wish to do this you can use the WiFi hotspot from an iPhone or other phone with this capability.
    You can also get a dedicated WiFi hotspot device like MiFi. See here: http://www.novatelwireless.com/products/mobile-broadband-solutions/mifi-intellig ent-mobile-hotspots/

  • After joining the iCloud,how can I download music to store on my iPhone for use when wi-fi not available?

    After joining Icloud,how can I download music to store on my iphone from my library to use when Wi-Fi not available?

    Welcome to the Apple Community.
    What exactly is it you want to do.
    Are you talking about iCloud, iTunes in the cloud or iTunes Match.

  • Linux RMI lookup takes too long when DNS is not available

    I am running Java 6 on Linux and ran into the following problem (please bear with me, there is a lot of background info before the actual question). I have a Java program that uses RMI for IPC. The server binds to localhost and clients lookup on localhost. The following are code snippets for my server and client.
    // Server binding code
    registry = LocateRegistry.createRegistry(port);
    registry.rebind("SERVICE", new ServiceImpl());
    // Client lookup code
    Naming.lookup("rmi://localhost:" + port + "/SERVICE");As long as DNS works, this code runs just fine. It takes ~0.3s for the server to bind and ~0.4s for the client to lookup. If DNS is not available, it takes ~40s for the server to bind and ~60s for the client to lookup! The times for lookup do not change if I use "127.0.0.1" instead of "localhost".
    I have localhost defined in my /etc/hosts file and my /etc/nsswitch.conf file specifies that host lookups should use files before nameservers. By commenting out the localhost value in the /etc/hosts file, I have determined that eventually the value in /etc/hosts is used if needed (the server bind fails if DNS is not available and localhost is commented out).
    If the network goes down, someone messes up the /etc/resolv.conf file, or our nameservers go down, RMI binds and lookups for something as easy to resolve as localhost takes way too long.
    So my question boils down to: Is there any way I can bind and lookup RMI servers without using DNS or by using DNS after /etc/hosts lookup fails?

    I turned on logging. You can see here that when DNS is working everything runs fine.
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(10)-127.0.0.1: (port 1234) client using localhost:0
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(10)-127.0.0.1: (port 1234) op = 80
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.StreamRemoteCall getInputStream
    FINER: RMI TCP Connection(10)-127.0.0.1: getting input stream
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.Transport serviceCall
    FINER: RMI TCP Connection(10)-127.0.0.1: call dispatcher
    Nov 19, 2007 5:14:12 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(10)-127.0.0.1: [127.0.0.1: sun.rmi.registry.RegistryImpl[0:0:0, 0]: java.rmi.Remote lookup(java.lang.String)]
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.StreamRemoteCall getOutputStream
    FINER: RMI TCP Connection(10)-127.0.0.1: getting output stream
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(11)-127.0.0.1: accepted socket from [127.0.0.1:37084]When DNS is not working, there is a 15 second timeout and 5 seconds to reconnect.
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(12)-127.0.0.1: accepted socket from [127.0.0.1:57328]
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(12)-127.0.0.1: (port 1234) suggesting 127.0.0.1:57328
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(12)-127.0.0.1: (port 1234) client using localhost:0
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(12)-127.0.0.1: (port 1234) op = 80
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.StreamRemoteCall getInputStream
    FINER: RMI TCP Connection(12)-127.0.0.1: getting input stream
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.Transport serviceCall
    FINER: RMI TCP Connection(12)-127.0.0.1: call dispatcher
    Nov 19, 2007 5:16:03 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(12)-127.0.0.1: [127.0.0.1: sun.rmi.registry.RegistryImpl[0:0:0, 0]: java.rmi.Remote lookup(java.lang.String)]
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.StreamRemoteCall getOutputStream
    FINER: RMI TCP Connection(12)-127.0.0.1: getting output stream
    Nov 19, 2007 5:16:18 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(12)-127.0.0.1: (port 1234) connection closed
    Nov 19, 2007 5:16:18 PM sun.rmi.transport.tcp.TCPConnection close
    FINE: RMI TCP Connection(12)-127.0.0.1: close connection
    Nov 19, 2007 5:16:23 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(13)-127.0.0.1: accepted socket from [127.0.0.1:37087]I tried specifying different timeout values using different RMI properties. Nothing seems to affect it except setting sun.rmi.transport.tcp.readTimeout to a value less than 15 seconds (which is not practical).
    Any ideas why getting the output stream would timeout?

  • Bug in Password Manager, when fingerprin​t not available. Please investigat​e

    I've got all my password manager entries set to NOT ask for a windows password if fingerprint reader is not available or not working.
    So if i go to gmail, and the fingerprint window comes up, and i check the box fingerprint reader isn't available, and click ok. nothing should happened, which is what happens normally.
    However, I've noticed a bug a couple of times, which allows you to enter a windows password for entries that it shouldn't.
    Just happened now, after a fresh restart of my computer, after everything loads up + 30 minutes, including password manager icon in task bar. I opened IE8, got to facebook, clicked on fingerprint reader unavailable, it asked me for my windows password and logged me in.
    Then I double clicked the password manager icon in taskbar, opened my facebook entry, and checked the fingerprint unavailable box, and nothing happened. Like it should. I closed password manager, closed IE8.
    Restarted IE8, went to facebook, and tried it again, but this time it worked like it should.
    For some reason, I was allowed to access my password manager entries through my windows password, when that option was disabled. This is terrible, as people in my household know my windows password, but they shouldn't be allowed to enter my private password manager entries.
    Could you please investigate the bug/cause in this, and fix or advise me on how to prevent it from happening.
    Either that, or Password manager doesn't work as designed, and therefore isn't secure.

    bump

  • Way forward? Multicast chans & catch up not availa...

    Well fine since taking them up including Tuesday but on Wednesday when I went to watch the Prem Lge footy the whole lot of multicast chans (and catch up) had collapsed SD & HD.
    After trying all the usual things I phoned support and a very diligent and polite gentleman spent a fair amount of time trying all I had (didn't like to interrupt him) with the same zero result. He has promised to escalate the problem and I should receive a phone call this evening .......... at this point I started to feel that deja vous feeling.
    So what is it with this IPC6023 fail mode and what is the way forward...... anyone?????
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings Star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

    Hi TrickyDicky,
    IPC6023 is caused by two possible sceanarios.
      1) No multicast packets received for 5 seconds
      2) More than 5 packets per second lost (Message can be disabled using "Picture Quality Alert" setting)
    I'm guesing you are getting the error in relation to sceanario 1.
    Does your youview box have Internet connectivity direct from the HomeHub? Can you play On Demand content / iPlayer etc?
    Steve
    BT TV Expert
    I am a BT Employee and an expert on TV queries. I am here volunteering my own time to give advice, primarily on the BT Vision+ and YouView boxes. Go here for more info.
    If my post has been helpful, please click on the Ratings star on the left-hand side of the post.

  • How to get hbo go on apple tv when tv carrier not available

    how toget HBO GO through apple tv when cable carrier does not provide

    Welcome to the Apple Community.
    I'm afraid that isn't possible at this time.

  • Loading new class files when they are not available when the JVM starts

    Simple Question
    Is it possible to load class if it was not compiled when the original JVM was launched?
    More Detailed Question
    Our build system is getting a slight tweak with a new test runner. After our build system compiles the file, I would like to be able to load the files that have just been compiled.
    Our build system runs inside its own JVM and calls ant scripts to run the different processes(Separate JVM). The new test runner will also be called from the build system(Same JVM) but not as an ant target. Is it possible to call the newly compiled files from inside the build system JVM if they had not been created on the start of that JVM using reflection?
    Thanks in Advanced!

    public class t
        public static void main(String args[])
         throws Exception
         Writer out = new FileWriter("Foo.java");
         out.write("public class Foo implements Runnable {\n");
         out.write("    public void run() {\n");
         out.write("        System.out.println(\"run like the wind\");\n");
         out.write("    }\n");
         out.write("}\n");
         out.close();
         Runtime.getRuntime().exec("javac Foo.java").waitFor();
         ((Runnable) Class.forName("Foo").newInstance()).run();
    }

  • Since 8, no warning when library drive not available - problems result

    Okay, so I know they made it "easier" for people to have multiple libraries in 8, but I'm having an issue: sometimes when I start up, I forget to plug in the external drive containing my library. With 7, iTunes gave me a warning message that my library was unavailable. Then, I'd plug in the correct external drive, restart iTunes, and all was fine.
    Now, though, I no longer get the warning. Then, when I download something, iTunes automatically changes my library location and puts the file onto my hard drive instead.
    How can I stop iTunes from changing the library location? AND, how do I get the file that downloaded onto the hard drive moved into the external library where it's supposed to be?

    This question was never actually answered. It's been archived, though, so no future answers can be added.

  • How can I get Made In Chelsea from itunes when it is not available on my countries store?

    I want to buy and download the Made in Chelsea seasons. But on Itunes Australia, where I am, its not available. It is however available on the British Itunes but of course its in pounds. It there any way to get Made in Chelsea off Itunes? Or will I have to nuy dvds from overseas (something i really dont want to do because of the cost)? Any other solutions?

    Your only option is to have an iTS account for that country - you would need a local CC and local address to create an account for the country.
    MJ

  • Display '0' when data is not available in Crosstab

    Hi Friends,
    I have a simple crosstab, which will show,
    Country as a "row header"---only one country is available
    Department as a "column"
    No.Of employees in "Body" of cross tab.
    The table will how much percentage of employees are contributed under each department in one Country. Data is also coming correctly. But if there are no employees or there is no data the crosstab is not showing that row. it is displaying the records which is having data. But I need to show all the departments even there is no data. how can I do this?
    Any help would be greately appreciated.

    Hi Anindita,
    By default those two options will be selected. those will work on null values. But in my case there are no null values. I don't have any data for particular departments. eventhough I need to visualize the things by giving a default value, say '0'. for example, the following is the report I need
    DeptName | country
    Marketing | 10
    Finance | 0
    Production | 0
    packaging | 76
    (Here the numbers under country are the count of employees. this is a crosstab report).
    I am getting the following report
    DeptName | country
    Marketing | 10
    packaging | 76
    I want to show all departments even though the data is not available. Please help me.

  • How do I get album artwork into itunes when it is not available from itunes

    Previously I could drag an image into the corner of itunes where album artwork is displayed, but it doesn't seem to work in this version of itunes.

    (Right-click)->Get Info on the album, and there'll be an artwork window at the lower right corner
    of the info (or maybe summary?) tab.

Maybe you are looking for