5508-DHCP per WLAN basis

dear all, 
kindly guide me  how to configure WLC 5508 internal DHCP  per WLAN basis , i read the following document it is clearly mentioned that we can configure DHCP on WLC 5508 per WLAN basis. but i did not find the configuration  per WLAN basis 
http://www.cisco.com/c/en/us/td/docs/wireless/controller/7-0/configuration/guide/c70/c70wlan.html#wp1293808
need your kindly response 
my email address 
[email protected]

When you configure dynamic interfaces on your 5508, you can specify DHCP server IP address. Later on you will map a dynamic interface to WLAN.
Also under WLAN advanced setting, you can specify DHCP server IP, if you want to override dynamic interface configured DHCP server to a particular WLAN.
HTH
Rasika
**** Pls rate all useful responses ***

Similar Messages

  • Per Wlan - Rate-Limit

    Hello, anyone know if its possible to set a maximum bandwidth for the entire wlan or for entire Vlan in the WLC 5508 ?
    Thanks

    This is a big desire for us too.
    You can do this multiple ways on the infrastructure:
    if using 6500s, you can use user-based rate limiting
    you can do this on various firewall products such as pfsense.
    You can use ingress & egress queuing on the switch, but it may not work as desired.
    We settled on using ip-nbar & policy routing for now to clamp down on file sharing protocols and also download urls with various extensions such as .iso, .dmg, .zip.....
    The challenge we found with per user limiting was that few solutions support the client count/demand that we see.
    If your environment is more spread out, you may have better luck with traffic policing and/or shaping at the switch level.
    As per wlan rate limiting, it will really depend on your infrastructure hardware & IOS supported functions.
    I agree about not shaping over the air, keep as much extraneous traffic off the air as possible.

  • Is there a way we can open/close posting periods on a "per day" basis?

    Hi SAP gurus,
    Is there a way we can open/close posting periods on a per day basis?
    It is not possible in OB52 since it only has control per period and not per day.
    Will assign points for suggestions. =) Thanks!

    Hii
    In standard SAP there is not such functionality where u can do these kind of configuration...it is at least for a month that is through OB52.
    If u still wants this functionality it is through the validation.
    u need to create the validation for that company code and thn u can use this functionality....
    hope it helps u
    reward points if helpful
    sejal singh

  • CUPS 8.6 - Supporting Multiple SIP Domains on a per-user basis

    Working on a CUPS 8.6 PoC with a customer who currently is running a deployed OCS environment. 
    Users all sign into a single domain internally but have multiple SMTP domains for email as this customer has many different companies they have aquired.
    OCS  is able to support and route multiple SIP domains by specifing the SIP address under AD User settings such that two users both signed into the same OCS server can send IM's to each other even though they have different SIP addresses.  sip:[email protected] , sip:[email protected]
    CUPS on the other hand does not seem to allow this on a per-user basis.  It places every user in the sip domain that the server is a member of.
    The Jabber client allows you to specify a domain but I am not how this is used as the actual user account in CUPS is only ever the one domain and if you try and specify a different domain in the Jabber Connection Settings, it will not allow you to login.
    It is not a big deal for internal communications if everyone is on the same domain, but where it is important is for future B2B IM.  Users need to be able to give out THEIR IM address with THEIR respective domain.
    Does anyone else know for a fact that I will only be able to have one domain per CUP cluster?
    Any thoughts on this design?

    Not sure on the design perspective but as for CUPS Domain, we can only have single domain per cluster. As you have already found out that for any user licensed for CUPS, their IM address would be userid@CUPSDomain
    CUPS does have funtionality of federating with foreign domains such as AOL/GoogleTalk/WebEx Connect.

  • Restrict access to buttons, regions, etc. on a per user basis?

    My application restricts access to buttons, regions, etc. on a per user basis.
    Here is my application logic...
    1. A User can only edit items they own.
    2. A Super-User can edit all items
    So, when a user logs in, I use a post-authentication process to set the user ID to an application level item.
    Now, for example, to have an edit button display on a page, I need to check the item's owner ID against the application level user ID...and check to see if this user is on the Super User list via a query.(which could be set to another application level item upon login...I guess)
    Question...What is the best way to do this? Conditional display? Authorization scheme?
    Would something like the following work for a Conditional Display?
    Condition: SQL Expression
    &USER_ID.=&P6_ITEM_OWNER_ID. OR USER_ID in (select USER_ID from table where USER_ID=&USER_ID.)
    How would I do this with an Authorization Scheme? (I like the idea of updating the logic in single location...but I'm not sure if it is possible because I have to check PX_OWNER_ID would be different on each page.)

    Hi Denes,
    Thanks for your code which allows user to edit (if authorized) and view (if not).
    But some how - I do not get the image to show up - instead it show a small underline.
    From SQL point of view - here is what I get - when i run the sql
    '<img src="/i/ed-item.gif">',2,CR TEST,,,,dune2.cit.cornell.edu,CRDMTEST.CIT.CORNELL.EDU,PSPROD,,,CRDMTEST
    Here is my wrap_image function
    create or replace function wrap_image(p_user_name in varchar2,p_dm_name_id in number)
    return varchar2 IS
    v boolean := False;
    ret_val varchar2(1000);
    begin
    dbms_output.put_line('user='||p_user_name);
    dbms_output.put_line('dm_name='||p_dm_name_id);
    -- Check authorization if the user is super user - return true, else if he has edit priv on dm_name_id - return true - else false
    v:=ACL_DMTOOLS_DM_PRIV(p_user_name,p_dm_name_id);
    if v then
    ret_val := '<img src="/i/ed-item.gif">';
    ret_val := ''''||ret_val||'''';
    dbms_output.put_line('TRUE');
    else
    ret_val := '';
    dbms_output.put_line('FALSE');
    end if;
    return ret_val;
    end;
    Thanks for your great educational site.
    Regards
    atul

  • Get date by group by per month basis...

    Hello all,
    I am trying to write a query where i want the count per month...so for example...the below query
    select to_char(date, 'MM/DD/YYYY')
    from test
    where rownum < 10;
    TO_CHAR(date
    02/10/2009
    02/10/2009
    02/10/2009
    02/10/2009
    02/10/2009
    05/31/2009
    02/10/2009
    so i want a count on the date, but want it per month basis....
    select count(*), to_char(date, 'MM/DD/YYYY')
    from test
    where rownum < 10
    group by to_char(date, 'MM/DD/YYYY');
    so basically end results should be like below
    count(*) date
    10 Month1
    12 Month2
    13 Month3

    Hi,
    You're GROUPing BY something that changes from day to day.
    You need to GROUP BY something that only changes from month to month, like this:
    SELECT    COUNT (*)
    ,        TO_CHAR (dt, 'MM/YYYY')     -- DATE is not a good column name
    FROM        test
    WHERE       ROWNUM     < 10
    GROUP BY  TO_CHAR (dt, 'MM/YYYY')
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples where the query above is not doing what you want, how you get the correct results from the data you posted.

  • How do I enable javascript on per-URL basis?

    Important: NoScript add-on is not the answer!
    I am trying to secure my Firefox so that by default all scripting is disabled, but can be enabled on per-URL basis. It seems that Firefox itself doesn't have an option for that, and I have to use add-ons. Unfortunately, all add-ons I tried, including NoScript, require javascript to be globally enabled in Firefox (Tools -> Options -> Content -> Enable Javascript). Then they apply their settings, including whitelist. I am not satisfied with this kind of solution, because if something prevents an add-on from running or forces it to stop, the global setting of "enable javascript" kicks in and suddenly all pages can use scripting.
    1) Is it technically possible to get a per-URL control with "Enable Javascript" set to disabled?
    2) Is there any kind of UI where I could set it so? There are very few websites where I allow javascript, so even something like manually creating an extension is fine with me.

    You can't disable JavaScript globally.<br />
    If you do that then it isn't possible to enable it in specific cases.<br />
    The only way is to enable JS globally and either disable it by default (NoScript) or enable it by default (YesScript) and change the setting for a specific web page.
    Adblock Plus also can block JavaScript.

  • Keep mail local on per folder basis

    I have multiple email accounts in Mail. One of them is an Exchange account and one of the folders that is shared with me is one called "Public Folders". This folder has sub-folders that I need and sub-folders that I do not need. The sub-folders that I do not need are taking up too much disk space.
    In preferences it gives me the option (per account) to download All message and their attachments or not to download message, etc.
    Question: Is there a way that I can have that option to download messages or not be on a per folder basis instead of on a per account basis?

    No, and you cannot unsubscribe to any mailboxes either. It’s either all or nothing, but setting Keep copies of messages for offline viewing to Only messages I’ve read should be close to what you want, except the junk filter won’t work in that case...

  • Can I rout audio on a PER APPLICATION basis?

    Is there a way (third party software included) to rout audio on a *per application* basis? I'd like internet audio (Safari, etc.) to go to just the normal line out, while iTunes audio would be sent to digital audio out.

    I've heard that audio hijack pro can do this.
    http://www.rogueamoeba.com/audiohijackpro/
    I don't use it myself but check this post for example
    http://discussions.apple.com/thread.jspa?messageID=9299023&#9299023
    Message was edited by: V.K.

  • Connection fee - Charge on Per minute basis or Per...

    I am new and want to use Skype to call Fix and Mobile line, I find there is a connection fee. Does that charge on on Per minute basis or Per connection basic?
    Thanks,
    Jeff
    Solved!
    Go to Solution.

    Hi,
    A connection fee is charged when you use Skype Credit to call a mobile or landline. Connection fees are charged according to the currency set in your Skype account, and per call.
    For more information on how to find which connection fee applies to the country you are calling, visit:
    https://support.skype.com/faq/FA1050
    Connection fees are also subject to the following conditions:
    - If the call lasts less than one second, the call is not charged.
    - If the call lasts more than one second, the connection fee is calculated based on your account currency.
    - If your currency is not set, the connection fee will be calculated in Euros.
    - If your billing address is within the EU, the connection fee is subject to 15% VAT – so for example, the actual cost for a connection fee of €0.039 (the global rate) would be €0.045. However, since your Skype Credit has been subject to 15% VAT at the time of purchase, you would see the amount of €0.039 deducted from your Skype Credit.
    - If a call is declared to be free of charge (such as a promotion or 0800 number) the connection fee is not charged.
    - If you have one of our Unlimited subscriptions, the connection fee is not charged for the calls covered by the subscription.
    Hope this helps.
    Did my reply answer your question? Mark it as a solution to help others, Thanks.

  • Disabling VTP advertisements on a per port basis

    I there a way of disabling VTP from sending advertisements out certain trunk ports on a per port basis. IOS is 12.2 running on cisco WS-C6506-E.

    I do not think it's possible without breaking a VTP domain. But you still able to do pruning on the port, excluding all VLANs, except of VLAN 1 of course.

  • Choose columns on a per-mailbox basis?

    Is it possible to specify which columns are displayed on a per-mailbox basis? There are some mailboxes for which I would like to display From but not To and other mailboxes for which I'd like to display both From and To,

    Hi John,
    Sorry, but I don't believe that's possible.

  • Disable DHCP Proxy per WLAN - WLC v7.2

    I have a DHCP server on a WLAN that does not support Cisco's native proxy mode. I need to use DHCP bridge mode for that WLAN only.
    How do I disable DHCP Proxy and switch to DHCP bridge mode for one WLAN ?
    Thanks

    Hello Stephen.
    How is this behaviour in 7.5? It's weird because in the individual interfaces you might change the value, but it doesn't get accepted. So it still seems that it's a global setting... but then: why showing this item to be changed on each interface?
    Kind regards,
    Flavio.

  • Hide (not disable) an SSID on a per AP basis

    Hello !
    I have been researching but did not find a straigh way to do this : I have 3 SSID => A, B, C.
    Is it possible to hide (not disable) an existing SSID (let's say B) just on specific APs ?
    As per my understanding the option "Broadcast SSID" is only available under the global WLANs > General menu, not on an AP basis.
    My solution is with WLC 5508 / 7.4 /  AIR-CAP1602I
    Thanks in advance for any ideas.
    Best regards.
    Oliv.

    Hi Scott,
    Thanks for the additional information!
    Yes, I will proceed like this. I will create the new SSID D (>16) with a Different NAME – with Broadcast Disabled - and associate it to the same WLC Interface/Interface Group. Then configure the AP Group.
    I assume there will be no issue associating this new WLAN to an existing Interface on the WLC, especially regarding the existing VLAN and routing aspects.
    Ok for the second point. As the SSID will have a new name maybe that they will not have any issue regarding any previous SSID recorded in their SSID list.
    @ Leo,
    Thanks for the warning. The WLAN is in fact a guest WLAN, which is totally open (no L2 & L3 security method). The authentication is totally handled by a third-party box with a web auth portal. The clients will be laptops, iphone, ipads.
    The customer on site is disturbed by the fact that anyone can connect to this open SSID and get an IP @ (even not authenticated by the webportal box).
    Thanks for your help.
    Rergards.
    Oliv.

  • Setting the Client Count per WLAN and per AP radio

    Hi
    We use WLC 5508 with 7.4. We tried to set max allowed clients per AP radio to 30 through GUI. We have APs with 80 clients associeted though.
    Has anyone else tried this feature?
    When entering config wlan max-associated-clients max-clients wlan-id we got 
    "WLAN/Guest-Lan/remote-lan is enabled.Please disable to configure max associated clients."
    GUI doesn't show that message, should it?  In GUI, Is it necesary to disable WLAN before too?
    Thanks
    This is the show wlan output

    No, the GUI does some stuff automatically, like disablen/enabling the WLAN when you make the change.
    From teh CLI *you* have to do them.
    HTH,
    Steve
    Please remember to rate useful posts, and mark questions as answered

Maybe you are looking for