VoWireles design and best practise

We have 34xAP (1130, 1240) 2x 4402 WLC and 60x7921 with 1.3.3.
1.Is better use WLC 5.2.193.0 or upgrade to 6.0.196.0?
2. Is it possible use WPA2 + AES + CCKM?
3. Which security setting is best for use for 7921 and fast roaming?

1.Is better use WLC 5.2.193.0 or upgrade to 6.0.196.0?
I never recommend using the 5.X.  It's full of bugs.
2. Is it possible use WPA2 + AES + CCKM?
It is.  Upgrade the firmware of your 7921/7925 to 1.3.4.
3. Which security setting is best for use for 7921 and fast roaming?
Follow the deployment guide.
Cisco Unified IP Phone 7921 Implementation for Voice over WLAN
http://www.cisco.com/en/US/customer/docs/solutions/Enterprise/Mobility/vowlan/41dg/vowlan_ch10.html
Don't forget to rate our posts.  Thanks.

Similar Messages

  • Degree audit cookbook and best practise

    At Freie Universität Berlin we started implementing SLCM degree audit for the graduation processes of our study programs and face now the challenge to educate our administrators in usage of the tools to define the appropriate requirement catalogs. We are using Version 6.0 of CM.
    Since degree audit is a complex process to be customized and enhanced by BADI implementations and objects (rule containers containing requirements) we asked SAP for documentation usable for training administrators with erperienced SAP-CM-knowlegde in other areas.
    It seems that such a documentation does not exist yet, neither in help.sap.com nor in the SND-marketplace, so we are now to ask the highered-BPX-Forum.
    We search for general documentation and how-to-Documents (cookbooks) about:
    - setting up requirement patterns, requirement catalogs (and versions of them), selectors, filters, figures and performance indices to model the requirements of a given program and anchoring them to the academic structure;
    - If there exists a graphic of a "database scheme" which illustrates the dependencies of the objects used in degree audit this would also be helpful.
    Can anyone point us to such documentation?
    We would also like to be pointed to/share knowledge about:
    - best practices in the pragmatics how to compile study regulations into requirement catalogs using the given objects, BADIs and SPRO yielding both: accuracy and maintainability;
    - How-tos about enabling enterprise services assignable to business roles or automatic procedures and composable to an example process including
       - the assignment of requirement catalogs to student's study;
       - the creation of requirement profiles for candidates;
       - starting and saving audit runs;
       - propagating their results to internal qualifications;
       - completing degree.
    Regards,
    Dirk Pape
    Dr. Dirk Pape (eAS - Projektleitung Campus Management)
    Freie Universitaet Berlin
    Grunewaldstr. 34a, 12165 Berlin
    Tel. +49 (0)30 838 75143, Fax. +49 (0)30 838 54654

    Michael,
    As of this writing, I was only able to successfully retrieve the files with IE. Firefox 2 is being given empty files.
    Thanks,
    Eric
    P.S. Thanks for making this available. And, thanks to Volker for his work on it.

  • [IS-Retail] - IS Retail + Best Practise Installation

    Hello all,
    I would like to know where i can made a start on installing the IS Retail with Best Practises on my own machine/laptop, which is purely for self-study and understand the basis purpose. I have tried to read a number of document regarding to the IDES Demo, Solution Manager and Best Practise Installation guide in the service market place, but it still got nowhere I can make a start on it.
    Highly appreciate if anyone can give me some lights or share your thoughts here. Thanks.
    Please forgive me if I ask a silly question here.....
    Regards,
    Tony

    Hi my answers for your qestions as follows
    1) In IS Retail Site is a master data, but to create Site/DC/stores need to do some config in SPRO, Like...
    Number ranges for Sites, Account groups, create DC and site profiles and assign account groups to them.
    then you Create DC or site using WB01, now site master data will consider.
    2) yes you should have all Sites in golden client ( i am not clear this questn)
    3) After golive better need to create new stores on devleopment in then export (using WBTI/WBTE) to prodcution, in case any future changes requires to do something on stores like assign/delete merch category etc... you can do its easliy to aviod data mismatch in the production.
    regards
    satish

  • Best practise BW Query design for Crystal Reports integration

    Hi all,
    I am looking for a guide on best practices when designing a BW Query to be used as data foundation for a Crystal Report.
    The scenario is that I am responsible for developing the Crystal Reports part, but not the BW Query part, therefore I would like to provide a list of best practises to the person who is responsible for the Query, this way make sure that the integration will work as good as possible. The setup is of course using BO Integration Kit for SAP.
    An example is how to use authorization variables in the query to provide data security. This is just one example, there are problably a number of other things to be aware of. A document containing suggestions for best practices is what I am looking for, or if the document does not exist, input to what should be on such a list.
    Thank you in advance.
    Regards,
    Rasmus

    Hi Rasmus,
    in regards to the Best Practices for Crystal Reports you can leverage all the knowledge you have on the Query Design today already. if you not the person for designing the query I think it is important to make sure people designing the queries do understand how Crystal Reports is leveraging the elements from the BI Query.
    /people/ingo.hilgefort/blog/2008/02/19/businessobjects-and-sap-part-2
    You should try to put as much as possible into the BI query from the logic point of view.
    and you can also build common BI queries - there is no need to build a BI query for each report.
    ingo

  • Best practise - Domain model design

    Hello forum,
    we're writing an application divided into three sub projects where one of the sub projects will be realized using J2EE and the other two sub projects are stand alone fat client applications realized using Swing. So that's the background...
    And now the questions:
    After doing some research on J2EE best practise topics I found the TransferObject-Pattern (http://java.sun.com/blueprints/corej2eepatterns/Patterns/TransferObject.html) which we certainly want to apply to the J2EE sub project and to one of the standalone client applications also. To avoid code duplications I like the "Entity Inherits Transfer Object Strategy" approach outlined in the document referenced above. But why does the entity bean inherit from the transfer object class and not vice versa? In my opinion the tranfer object adds additional functionality (coarse grained getData()-method) to the class and isn't it a design goal in OO languages that the class that extends a base class has more functionality than the base class?
    For the standalone application we want to use a similar approach and the first idea is to desgin the entitys and let the TO classes extend these entitys.
    When I get it right the basic idea behind all of these design schemes is the "Proxy pattern" but when I design it using the previously mentioned way (Entity <-- EntityTO) I will have a very mighty prox beeing able to execute all operations the base class is able to execute.
    Any tips and comments welcome!
    Thanks in advance!
    Henning

    Hello Kaj,
    at first - thanks for your fast response and sorry for coming back to this topic so late.
    After reading a bit more on patterns in general what about avoiding inheritance
    completely and using the proxy pattern instead (As explained eg.
    http://www.javaworld.com/javaworld/jw-02-2002/jw-0222-designpatterns.html here) - so moving the design to a "has a" relationship rather than an "is a" relationship.
    In the previous post you said that the client shouldn't be aware that there are entity beans and therefore the mentioned implementation was chosen - But if I implement it vice versa (Entity is base class, TO extends entity) and do not expose any of the methods of the entity bean I would achieve the same effect, or not? Clients are only able to work with the TOs.
    I have some headaches implementing it in SUN's recommended way because of the Serialization support necessary within the TOs. Implemented in SUN's way the Entity bean would also have serialization support which isn't necessary because they're persisted using Hibernate.
    Thanks in advance
    Henning

  • Best practises Subversion and Data modeler

    hello, i'am looking for some best practises regarding subversion and datamodeler.
    A team of 10 analysts create several releases of our product over time.
    Within one release you'll find several change requests.
    The application itself contains about 700tables so performance is important.
    I want to establish a lean working method were analyst can focus on their job - design.
    Till now I think to create one trunk containing the db model let's call it v17.00
    An analyst could create their designs in separate projects grouped by change request eg CR1234.
    When development starts i would compare the trunk model with their change request to generated the alter script.
    Afterwards i would import their design CR1234 into the trunk.
    Note : it's possible that a change request got cancelled - that's why i opt for a design per change request.
    This way of working seems much leaner than the setup of branches and merging.
    My opinion, being a novice subversion user, is that setting up branches and merging is "more complex" and might causes frustration for designers.
    Anyone having a simular setup or advice ?
    kr
    chris

    Hi Sam,
    Let me add my two cents here, when speaking about MAN deployments the name of the game is MPLS, so I guess you are using the same on your Cat 6500s and connecting your customers on 3550s using Vlans.
    Regarding your questions:
    a) Upgrading Ethernet to L3 for traffic shaping: This is basically done at 3550, so I suppose that's what you intend to do, plus you will be letting Spokes talk to only Hub site, so inter Vlan, atleast between Hub and each spoke will be required, hence inter valn routing. Other way is to configure P2P circuits between Hub site with Vlan mapping (per spoke) and Spoke sites with Port mapping, in this scenario Inter Vlan routing is not a necessity.
    b) Security: This depends on what exact architecure you have deployed, in my case I have simply installed a Gateway router with BGP peering with PEs, a separate VRF alongwith redistribution does the trick.
    Hope I addresses the query correctly, let me know if that helped..
    Cheers
    ~sultan

  • Best practise in SAP BW master data management and transport

    Hi sap bw gurus,
    I like to know what is the best practise in sap bw master data transport. For example, if I updated my attributes in development, what are the 'required only' bw objects should I transport?
    Appreciate advice.
    Thank you,
    Eric

    Hi Vishnu,
    Thanks for the reply but that answer may be suitable if I'm implementing a new BW system. What I'm looking for is more on daily operational maintenance and transport (a BW systems that has gone live awhile).
    Regards,
    Eric

  • What is the Best Power MAC G5 for Graphic Design and Video Edit

    I need the Best Power MAC G5 Processor CPU
    and Ram HDD Graphic card for Graphic Design and Video Edit
    and the name of the Processor
    how much the price

    Hi GabreilKnight;
    You are aware that the PowerMac G5 is no longer being produced hence if you find one it will be on the used market?
    For what you are looking at doing I would suggest that you consider a Mac Pro instead.
    Allan

  • ECC 5.0 and BO without BW/BI Integration Best Practise

    Hi,
    I know that SAP can connect with BO system using RapidMart (replacing data warehouse BW/BI). Is this best practise?Because when i see the BI Platform RoadMap,I conclude that BI and BO will be integrate into one product, and i'm afraid to invest right now because in the future it seems we need to implement the BW system to make this BI system optimal.
    My company want to use BO without implement BW system right now. SAP system that we use right now is ECC 5.0 and my company only upgrade it to next version when version 5.0 not supported again.Thank you.
    Cheers,
    Satria

    Hi Satria,
    the answer depends a little bit on what the requirement is.
    RapidMarts are an option to implement a data mart solution on top of an ERP solution. On top of the Rapid Marts you can then use the BusinessObjects tools without hitting the OLTP system directly.
    Ingo

  • Simple Page Structure with DynNavigation and ContentPages - Best Practise??

    Hi ...
    actually I am going to develop a simple JSF Application(my first) :-|
    Simple Description
    User logs in - next View(JSF Page) consists an user(rigths spezific)menu and a content part witch consists of formbased use cases which have to be solved by the application. The parts for its own is not my problem. But how to bring them together ...
    Question
    I am looking for a best practise Solution for the described problem. Which tag/technology I should use. Is it possible to solve this problem by simple using JSF or am I forced to use MyFaces, Tiles or somthing else ...
    I think this is normal use of JSF or am I wrong with that. I am reading several tutorials but did not find a solution for this global / abstract problem.
    I hope my "english" is readable :)) thanks in advance

    Connect the phone to the PC. Open the folder you want to copy using windows explorer. Copy music files. Right click & select send to Windows Phone. For help regarding Playlists go to the link below:
    Playlist WP8
    Please mark the post as solution if it solves your problem.
    Current Device - Nokia Lumia 1020/920

  • Best practise for SAP landscape and copyback procedures

    Can i get help on bestpractise for SAP landscape design and copy back procedures .

    Hi. GO to http://help.sap.com/bp/initial/index.htm
    There you find all about BP.
    Regards, Award if helpful

  • Data Modeling Best Practise

    Hi Friends !
    When designing a system, what are the best practise for Data Modeling? Please share few tips. Thanks.
    With Regards
    Rekha

    Hi,
    below link can be usefull ,
    BI Data Modeling and Frontend Design
    Also you can get the best practive(config guide) from service.sap.com.
    Best practicess
    http://help.sap.com/bestpractices
    http://help.sap.com/bp_bblibrary/600/html/
    Regards,
    Satya

  • Best Practises on SMART scans

    For Exadata x2-2 is there a best practises document to enable SMART scans for all the application code on exadata x2-2?

    We cover more in our book, but here are the key points:
    1) Smarts scans require a full segment scan to happen (full table scan, fast full index scan or fast full bitmap index scan)
    2) Additionally, smart scans require a direct path read to happen (reads directly to PGA, bypassing buffer cache) - this is automatically done for all parallel scans (unless parallel_degree_policy has been changed to AUTO). For serial sessions the decision to do a serial direct path read depends on the segment size, smalltable_threshold parameter value (which is derived from buffer cache size) and how many blocks of a segment are already cached. If you want to force the use of a serial direct path read for your serial sessions, then you can set serialdirect_read = always.
    3) Thanks to the above requirements, smart scans are not used for index range scans, index unique scans and any single row/single block lookups. So if migrating an old DW/reporting application to Exadata, then you probably want to get rid of all the old hints and hacks in there, as you don't care about indexes for DW/reporting that much anymore (in some cases not at all). Note that OLTP databases still absolutely require indexes as usual - smart scans are for large bulk processing ops (reporting, analytics etc, not OLTP style single/a few row lookups).
    Ideal execution plan for taking advantage of smart scans for reporting would be:
    1) accessing only required partitions thanks to partition pruning (partitioning key column choices must come from how the application code will query the data)
    2) full scan the partitions (which allows smart scans to kick in)
    2.1) no index range scans (single block reads!) and ...
    3) joins all the data with hash joins, propagating results up the plan tree to next hash join etc
    3.1) This allows bloom filter predicate pushdown to cell to pre-filter rows fetched from probe row-source in hash join.
    So, simple stuff really - and many of your every-day-optimizer problems just disappear when there's no trouble deciding whether to do a full scan vs a nested loop with some index. Of course this was a broad generalization, your mileage may vary.
    Even though DWs and reporting apps benefit greatly from smart scans and some well-partitioned databases don't need any indexes at all for reporting workloads, the design advice does not change for OLTP at all. It's just RAC with faster single block reads thanks to flash cache. All your OLTP workloads, ERP databases etc still need all their indexes as before Exadata (with the exception of any special indexes which were created for speeding up only some reports, which can take better advantage of smart scans now).
    Note that there are many DW databases out there which are not used just only for brute force reporting and analytics, but also for frequent single row lookups (golden trade warehouses being one example or other reference data). So these would likely still need the indexes to support fast single (a few) row lookups. So it all comes from the nature of your workload, how many rows you're fetching and how frequently you'll be doing it.
    And note that the smart scans only make data access faster, not sorts, joins, PL/SQL functions coded into select column list or where clause or application loops doing single-row processing ... These still work like usual (with exception to the bloom filter pushdown optimizations for hash-join) ... Of course when moving to Exadata from your old E25k you'll see speedup as the Xeons with their large caches are just fast :-)
    Tanel Poder
    Blog - http://blog.tanelpoder.com
    Book - http://apress.com/book/view/9781430233923

  • Any best practise to archive PO's which does not have corresponding invoice

    Hello,
             As part of initial implementation and conversion, We have a lot of PO's / LTA created but their corresponding invoices were never converted into SAP from legacy system.  SAP archiving program tags those as not business complete as the invoice qty does not match with po qty (there are no invoices to start with).  Just flagging 'delivery complete and final confirmation' of PO does not help.  Anybody ran into similar situation and how did they resolve it?  I am reluctant to enhance standard SAP archiving program to bypass those checks and that is my only last option. Any SAP recommended Note / best practise etc would help.
    Satyajit Deb

    Where is the invoice posted?
    was the invoice posted in the legacy system?
    Clearance of GR/IR account with MR11 will usually close such POs.

  • SP 2013 Development - How can I Simulate Different Devices to Help Design and Test a New UI?

    Hello Community!
    I am working with SharePoint 2013 and I need to be able to design and test a new design across multiple device browsers.  Does anyone know how to simulate a device browser for design and testing?  BTW, I know about Device Channels, and they give
    me a way to dynamically change my UI for different device browsers, but because this UI is complex, I cannot be sure what dynamic changes need to occur until I can simulate the device browsers and view my new UI in them.
    Thanks!
    Tom
    Tom Molskow - Senior SharePoint Architect - Microsoft Community Contributor 2011 and 2012 Award -
    Linked-In - SharePoint Gypsy

    Hi Tom,
    Because your question is mainly how to simulate different devices, which is more related to SharePoint development, I am moving this thread to
    SharePoint 2013 - Development and Programming forum for better response.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for