Problem switching from AP-specific to Group-specific VLAN mapping

Hello.
Some days ago, I updated our 5508 WLC to software version 7.5.102.0.
With that version, it should be possible to have a VLAN mapping specific for a Flexconnect group that is set within Flexconnect Group settings.
I did that for all my Flexconnect groups and it works fine with new access point.
For existing access point, which already have an AP-specific VLAN mapping, it is not possible to switch to Group-specific.
When I mark the WLAN in Flexconnect setting of the AP and select "Remove AP specific", I get the error message "Request failed: Vlan is not enabled on this flexconnect".
I wonder what the problem could be, because for newly installed access points, it works fine. Did I miss some settings?
Regards,
Sven Lindeke

Thanks for the fast reply.
Here are the screen shots:
Settings "Flexconnect group"
Settings "Access Point"
Error message

Similar Messages

  • Problems Switching from iPhone to Samsung Galaxy S4

    I switched from an iPhone to a Samsung. Why do people with iPhones continue to have problems texting me. They tried deleting my iMessage streams and re-entered my phone as a mobile. They still get error messages. It's been a week since I got the Samsung.
    By the way, I have deactivated my iphone number on the Apple ID website.
    ITH

    Unfortunately I have turned off iMessage from my iPhone and have called in to deregister. It's been almost 24 hours and it's still not working correctly. The HUGE issue is that I've basically been told "it will eventually start working". Well, I didnt pay you have the money and tell you I'd send the rest when it started working. You are a huge company dealing with another huge company. I PAID THE MONEY AND YOU TOOK IT BUT THE PHONE IS NOT WORKING THE WAY IT IS SUPPOSED TO. If you cant make a device work, you should not be selling them with the assumption that you can use it when you pay right then. There are so many forums and threads about this problem but yet nobody mentioned it at the verizon store. I will not be a customer by this evening is this doesn't resolve. This is **** poor business and terrible communication about switching devices. The largest network is doing a great job of pushing me back to AT&T. Rediculous!!

  • Problem switching from year to year-1

    Hi there =),
    I've coded some little thing, that shows the momentary weekofyear and the monday and friday in that week (dd.MM.yyyy). There're also 2 links who let the
    weekofyear go -1 or +1 and then change the monday and friday automatically.
    My problem is, that I do need to go to the last year sometimes. So I click the "-1"-link and the w.o.y. goes 20, 19, .... 3, 2, 1, 0, -1, -2, -3, ...
    First, in reallity there's no week number 0 or -1 or -2...So I need to fix this, too
    So I need to set the week to 52 or 53 if it less than 1. But how do I manage this?
    Here is some code:
    // This code is to change the w.o.y., if the parameter kw_change is 1 or -1:
    Calendar calendar = Calendar.getInstance(Locale.GERMANY);
    if ((request.getParameter("kw_change"))!= null)
         switch (Integer.valueOf(request.getParameter("kw_change")))
              case -1:
                   session.setAttribute("kw", new Integer(((Integer)(session.getAttribute("kw"))).intValue() -1) );
              break;
              case 1:
                   session.setAttribute("kw", new Integer(((Integer)(session.getAttribute("kw"))).intValue() +1) );
              break;
    Integer weekOfYear = (Integer) session.getAttribute("kw");
    if ((session.getAttribute("currCalendar")) != null)
         calendar = (Calendar) session.getAttribute("currCalendar");
    calendar.set(Calendar.WEEK_OF_YEAR,weekOfYear);
    calendar.set(Calendar.DAY_OF_WEEK,Calendar.MONDAY);
    SimpleDateFormat sdf = new SimpleDateFormat();
    sdf.applyPattern("dd.MM.yyyy");
    session.setAttribute("currCalendar", calendar);Times before this code, this code sets the kw (calendar-week in german) to the current kw:
    Integer kw = new Integer(calendar.get(Calendar.WEEK_OF_YEAR));
    session.setAttribute( "kw", kw);I really have no good idea to solve this. So if there are any suggestions, I'm very thankful. I don't necessary need a complete solution. I'm just out of ideas >.<.
    Best regards
    X--spYro--X

    case -1:
                   session.setAttribute("kw", new Integer(((Integer)(session.getAttribute("kw"))).intValue() -1) );
         break;replace this code with the following
    case -1:
           session.setAttribute("kw", new Integer(( ((Integer)(session.getAttribute("kw"))).intValue() == 1)?53:((Integer)(session.getAttribute("kw"))).intValue()-1 );
    break;here i am assuming that after week 1, it'll goto week 53.
    for case 1 you can implement the similar logic.
    i hope this is helpful
    Diablo
    Edited by: Diablo_Chiru on May 16, 2008 2:48 AM
    Edited by: Diablo_Chiru on May 16, 2008 2:49 AM

  • Mobile performance decrease! - Severe problems switching from PFI to AIR 2.6

    Hello all,
    I am currently developing a rather popular title for the iPhone . It is my first ever attempt at creating something for the Mobile Market.
    I started using Flash CS5 and the packager that comes with it. I optimized my game so that it ran perfectly well on 30FPS in every aspect on the iPhone 4 and iPhone 3GS.
    I was really excited when I read about the new features and supports in Flash CS5.5 so I purchased Flash CS5.5 to move all my production to it.
    However I noticed a severe decrease in performance as I tested publishing my game in Flash CS5.5 (Air for iOS). I understand that the new "packager" does things differently and so I have also been doing things accordingly but it still acts very instable. For instance, I have a scene with a background cached as bitmap and two short animated MC's that loops (these MC's are not cached or using filters or blending) . So I have three elements but still the FPS drops to around 3-5 FPS even though it is set to 30. On the next scene I have four elements, a background cached as bitmap and three of the same short animated MC's that loops and this works flawlessly. The backgrounds themselves is equal when it comes to what it contains. I practically have nothing on the screen and it will drop FPS!
    I have discovered that when MC's containing FBF animation (like blood splatter or water splash) plays on the scene it dramaticly decreases performance. I tried Modify -> shape -> optimize... and optimized those FBF animations with 83 % but no improvement in performance were seen. When I made every frame of the blood splatter animation into an MC and exported them all as bitmaps it worked without problems but this cannot be done through the whole game and especially not in the cutscenes.
    I have read and researched my eyes out and pulling my hair til baldness so now I turn to the forums for help.
    If anyone out there would be willing to help I would be extremely gratefull!
    Thank you,
    Daani

    Hello Colin!
    Thank you for such a great and fast response! I needed some basic knowledge about how rendering in Flash actually works. Thanks!
    I will definetly try cacheasbitmapmatrix = new Matrix()  immediately even though I actually found a wierd solution for my FPS problem that I have described below.
    I discovered that most of the time the drop in FPS would only occur when textfields would be on the stage. I saw that they didn't embed anything (which means that they embedded all) and perhaps this was the problem that caused the whole doc to drop in FPS. Since I have no need to edit the text any longer I simply broke them appart until no text field existed, only vector graphics. As soon as I tested this new version on my iPhone everything is top performance. Why would something that feels so small as a text field cause the whole app to malfunction?
    Another problem in my game is that I have some quite intense animation sequences where blood splatter occurs within an MC. This scene is very laggy when beeing played. I tried a lot of different things and I discovered that if I put that sequence (which exist within an MC) hidden on screen (with a loading image above) before the actual sequence is going to be played it's as if Flash stored that sequence and when it's actually going to be played for the viewer it plays without any drop in FPS at all. I'm no optimizing expert as I have never worked with really limited performance devices. How would you "load" these sequences before they appear on the screen?
    And wow! That Air 2.7 seems like something groundbreaking! Can't wait for it to hit the market!
    Again, thanks for your support Colin. Massive appreciation from this side!:)
    Peace,
    Dan

  • Problems switching from personal domain to .mac

    I'm wanting to move a site from my personal domain to .mac. However, when I attempt to publish the site it automatically attempts to publish to my personal domain. How can I change the settings to publish to .mac?
    I attempted to solve this problem by creating a "new" site, but it still tries to publish to the personal domain rather than .mac.

    I've done it. I just copied my data to the Mac and also copied the library files:
    http://docs.info.apple.com/article.html?artnum=93732
    This preserved all my ratings and playlists, etc.
    I think there was a little bit of magic to get iTunes to find where all the music was now stored. It wasn't that difficult though. Plus only do this before you delete all your stuff on the Windows machine.

  • Problems switching from MobileMe to iCloud

    I had a MobileMe account and now I need to switch to iCloud. I want to keep the prefix from my MobileMe email account. When I start the iCloud process and try to enter my prefix it claims it is already taken. And I think it is taken by me
    I want to keep the rail prefix, how do I do this?

    MobileMe closed a year ago and if you did not migrate to iCloud before the end of August last year you can no longer do so. This means your @me.com address is no longer active.
    It's not clear whether you can open an iCloud with the same prefix, but you won't be able to get an @me.com address. Go to System Preferences>iCloud (Lioni 10.7.2 or higher required) and sign in with your @me.com address. As this is an Apple ID (even though it's not functioning) you may be able to do so and get an @icloud.com address, though it's possible you may have to choose one with different prefix. If it won't accept the @me.com address as an ID you will have to get another Apple ID and try with that.
    If you do use the @me.com address as an ID you need to make sure you have an alternate contact address since if Apple try to contact you at it, it won't work.

  • X200s - problems switching from mains power to battery - temporary freeze

    Hi All,
    Noticing a problem with a brand new x200s downgraded to Windows XP from Windows 7 (although never operated with Windows 7) where there is a temporary freeze when either connecting to mains power, or disconnecting from mains power. While it is not a proper freeze, as I can ALT+TAB between applications, I cannot actually do anything (close AP's, write emails etc). This lasts for up to 3 or 4 minutes, and then everything recovers - recovery happens to the extent that anything done during the freeze suddenly happens, like pressing the ThinkVantage Button, or right-clicking on a taskbar item etc.
    I wonder if this is something to do with the Lenovo power management system - anyone got any ideas please?
    Many thanks

    Hi,
    make sure, that you are using the latest version of Power Manger , power mangement driver . These two parts are basically responsible (when they are installed) for the power configuration.
    Please let me know, what is the version of Power manager and power management dirver, that you are using.
    Also based on you description, when all is working, when pressing ATL+TAB, then try to open Task manager with CTRL+Shift+ESC and check, what is taking the CPU and memory comsumption.
    Once this will not show you anything, go to Windows Event log, maybe there you can find some hint.
    Just to make sure, that I understand this corectly: You see this kind of behaviour, when you unplug or plug in the sytsem into AC ?
    Cheers

  • Problem switching from a non Idea Exchange board to an Idea Exchange board when typing a new post

    Tested on Chrome/XP and IE8/XP
    when I start a post in a non Idea Exchange forum and later on want to convert it into an Idea Exchange one, I can switch to the correct forum using the "Select Board" pull-down list. However, when posting, my post is refused because I haven't chosen a "Label". Well, that's because I can't!
    In other words, switching to an Idea Exchange board does not add the "Label" options on the composition webpage, hence it is impossible to post that idea unless you copy it (or rely on the autosave function), start a new post directly into a Idea Exchange forum and paste your old post in it (or alternatively, load the saved draft once you have created the new post).
    Disclaimer: this may have already reported, but as I said elsewhere, the Search function doesn't work either...

    This is my first post so be gentle with me.  I have a Pixi Plus running os 1.4.5.  Last week we upgraded to exchange 2010 (or 14 as I've heard it called).  I lost the connection on my phone.  I tried changing the inheritable permisions above and it has not solved it.  I'm pretty sure all the log in info I'm using is correct.  It acts like it's communicating with the server because it says
    Unable to sign in
    Could not sign into account
    THe mail server responded: bad login/password
    I've changed several things and when I change certain things it says it cannot validate incoming mail server so I feel like I'm close but can't figure it out.  Any help would be appreciated.  Thank you.

  • Problems switching from Story View to Layout View

    Hey,
    When I'm writing a story in story view everything looks okay but as soon as I change the view to layout view all of my "hn" gets changed to a "ç"
    Does anyone know what this would be happening or how to fix it?
    Wrote a story about a John and his name got switched to Joç every time.
    Thanks for any help!

    You need to provide some more details. What font are you using in Layout view? Are you using a different language than English? You're obviously inputting the correct characters in Story view but it sounds like the font applied to the text is not supporting those characters which is odd. Details please.

  • Problem switching from individual subscription to team subscription

    my company recently purchased a cc team subscription. previously, i had an individual subscription. i accepted the invite, and can see that the team membership appears in my account at creative.adobe.com, but now that my individual subscription has expired, i keep getting logged out of the cc app, and all apps are now trials.
    i was on adobe chat earlier today & waited 20 minutes to chat with someone, who ultimately told me that it was a technical issue & to call adobe support.
    my IT just had to hang up after waiting on hold for over 45 minutes with adobe support
    can anyone out there from the adobe team help me please?
    thanks!

    Hi Isatony,
    Can you try signing out of the Creative Cloud app and then back in again and see if the issue persists?
    (Click to view larger)

  • I'm dying to upgrade to Lion.  But I know some appls will no longer work.  I just switched from Quicken to iBank.  How can I find out what else I'm going to use?  Is there a way on system profile?  A specific 'kind' of application?

    Is there a way, in profiler? maybe to find out which programs I'll lose when i upgrade?  I've already switched from Quicken to iBank.  But I'd like to know in advance i I'm going to lose anything else important!

    Browse to the Mac page at http://roaringapps.com/. There you'll find hundreds (thousands?) of Mac applications listed with indications as to Lion compatibility.
    Surely, there's more to Lion compatibility than merely whether the app is "Intel" or "Universal", as opposed to "PowerPC" (as shown under Software > Applications in System Profiler).
    It's a bit surprising that nobody seems to have done an app that scans your system then looks up Lion compatibility at roaringapps.

  • Find out the group and time a user was added to deleted from specific AD group

    have a project that I need to find anyone that has been added to or removed from an AD selected groups that begins in APP_RMS in the last three hours.  
    I need to product a file the has this information       
    group| sAMAccountName|<ADDED/DELETED>|date and time
    I know very little about AD and just a little more about powershell.  I know this should be written in powershell, do not want to use outside tools like repadmin.

    Hi Cchart3,
    In addition, this function written by Boe Prox is for your reference, which can look at an Active Directory group's metadata using repadmin to determine who was added or removed from a group and the time this modification occurred.
    Find the time a user was add/removed from a group
    Best Regards,
    Anna Wang

  • IOS7:  "all-day, repeating" entry from all-day to a specific time.

    Since upgrading to ios7 (iPhone 5, Verizon) when using the calendar I can't switch an "all-day, repeating" entry from all-day to a specific time. There's no "all-day" toggle switch.  Does anyone know how to correct this?  My friend has the 5s &amp; AT&amp;T and she doesn't have this problem.  Hers shows a toggle switch!

    I haven't completely discounted it but it seems like I would need to back up to files, then restore from files. I don't want to do that. I want a full file system level SAN snapshot that I can just drop into place. The does work when the production base is shut down. However, considering that I do have archive logs, shouldn't it be possible to use them to recover to a specific scene without having to do an RMAN backup at all? It seems that doing an RMAN backup/recovery would just make this whole process a lot longer since the DB is 160 gigs in size (not huge, but the dump would take more time than I would like). With a SAN snapshot, if I can get this to work, I'm looking at about a 15-20 minute period of time to move the production DB over to test.
    Since you are suggesting that RMAN may be a better approach I'll provide more details about what I'm trying to do. Essentially this is like trying to recover a DB from a server that had its power plug pulled. I was hoping that Oracle's automatic recovery would do the same thing it would do in that instance. But obviously that doesn't work. What I want to do is bring over all the datafiles, redo logs, and archive logs using the SAN snapshot. Then if possible use some aspect of Oracle (RMAN if it can do it) to mount the database, then recover to a specific time or SCN if using RMAN. However, when I tried using RMAN to do it, I got an error saying that it couldn't restore the data file because it already existed. Since I don't want to start from scratch and have RMAN rebuild files that I've already taken snapshots of (needless copying of data), I gave up on the RMAN approach. But, if you know of a way to use RMAN so that it can recover to a specific incarnation without needing to runm a backup first, I am completely open to trying it.

  • Sharing a folder with specific users/group

    I am trying to make 3 different shared folders for 3 different groups on Windows server 2008 R2. I have tried creating 3 folders in C:\, and then share it with the specific groups. The problem I have is that even though I have only given read and write permissions
    to the specific group members, the other group members(from the 2 other groups) can still read and write in that folder. Which is not supposed to happen. What am I doing wrong and how can I fix this?
    PS: I am quite new to this...

    Hi,
    As all accessing occurs locally, actually Share permission is not involved.
    I assume the purpose is to create a folder which can only be accessed by several members in all 7 users.
    Please noticed that, if all users are local admin (in local Administrators group), this will not work as local admin can always take ownership of a folder for gain accessing rights.
    If you (and other members in that group) are the only local admins on this computer, set NTFS permission will work. 
    Again if one of the excluded members has local admin permission, he/she can take ownership to gain accessing rights. 2 workarounds are "set password with a third party application" and "create a new volumn for saving those files, and enable
    BitLocker encryption on that volume with a password". 
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • How do I go from a link to a specific image in a slideshow?

    I have a two-part question.
    1. How do I go from a link to a specific image in a slideshow? If you take a look at the attached screenshot, here's what I'd like to accomplish. I wan to click on a link like B for examply at the top of the page. It scrolls down the page to ANCHOR "b" where I have a slide show. Once it scrolls down, I would like to have the slideshow to slide over to the image set that matches the link that was clicked. in this case, if i click on B at the top, the slideshow would slide to image set "B".
    2. Each piece of work I want to display has three images. One which is our main image seen inside the black outlined box below. There are however two additional images tied to each piece being shown. What is the best way to set this up? The default way of using the slideshow is limiting.

    Unfortunately I don't have an answer for you as I have the same problem!
    I want to link images on one page to certain slides on another.
    Have you had any luck solving this?
    I've spent hours looking for a solution... I'm very frustrated!!!
    Will post again if I get some answers.
    Best of luck
    David
    David, as of right now there is no way to click a link and have it go to a speficic image inside of a slideshow on another page. It will only show the first image in the slideshow on that other page.
    So, perhaps you could just have the image you want to jump to on the other page, be the first image in the slide show. Make sense?

Maybe you are looking for

  • Purchase order - Function - Confirmation

    Hi, I need find a function to simulate the confirmations in purchase order. The standard process is strange. Sometimes, reduces even though the total amount does not reach a confirmed total order.  It's like the standard randomly chose the quantity t

  • I would like to downgrade from ios 4.0 to 3.1.3... please help

    I would like to downgrade from ios 4.0 to 3.1.3. Unfortunately I didnt save the shsh blobs onto cydia or apple server, but I have the shsh blobs on my user account in folder .shsh. Is there any other way to downgrade to 3.1.3. I am extremely unhappy

  • I am new in Java

    javax.management.AttributeNotfoundException: idat com .sun.enterprise.adminconfig.BaseConfigMBean.getAttribute(BaseConfigMbean.java:1 84)at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.get....... I created a new project with no errors and ran it. it g

  • ACR update fails-"product not found"

    I have PSE 6/mac & LR.  I get an Adobe Updater notification of ACR 4.6 but when clicked to install, it comes back with error message essentially saying 'the product to be updated can't be found'.  It also says something about this being an update for

  • Mac Pro (early 2008) cannot startup

    Today, I shut down my Mac Pro (early 2008) for about two hours and now it just refuses to startup. This is the symptom: Power-on LED illuminates when power button is pressed and fans spin continuously but there is no boot tone or video Apple Service