Feature is not shown in cisco feature navigator

Good morning, 
I came to important problem regarding cisco feature navigator. I was looking for particular features (I'd like to implement in near future) in particular Cisco IOS images (I have on my network) and I found out, that cisco feature navigator doesn't show some features as present in some images even though commands for configuration of these features seem available. One such feature is DHCP snooping on c2960x-universalk9-mz.150-2.EX3.bin IOS. If I try to look it up in feature navigator, I see that this particular feature isn't present (please take a look at attached file). When I go into console of particular device with that image, there are commands like:
SW1#show ip dhcp snooping
Switch DHCP snooping is disabled
DHCP snooping is configured on following VLANs:
none
DHCP snooping is operational on following VLANs:
none
DHCP snooping is configured on the following L3 Interfaces:
SW1#show ip dhcp snooping binding
MacAddress          IpAddress        Lease(sec)  Type           VLAN  Interface
Total number of bindings: 0
available. 
Is it usual that there can be slight discrepancies when comparing reality with cisco feature navigator?
Thank you in advance, 
Standa

Hi Leo, 
thanks for your reply, but I'm afraid we misunderstood each other. My question wasn't related to DHCP snooping configuration as such, It was related to problem, that Cisco feature navigator reports DHCP snooping as unavailable in particular IOS regardless of fact, that particular IOS allows me to enter commands for DHCP snooping configuration. If I had this problem with one particular feature, It would be no problem for me to verify absence or presence of that feature in particular IOS by configuring that feature. But what if I  have ten IOSes and 12 features and I want to know whether these IOSes are able to run these features? It seems as huge burden for me to configure all the features on all the IOSes in order to determine whether they're capable of these features. 

Similar Messages

  • Word opening in Client Application in SharePoint document library when feature is not activated in manage features in site collection

    Hello, I wish for all Word documents to open in the browser for my SharePoint document library on my team site.
    The feature 'open in client application' is not activated in Features for the site collection and the setting in the document library is set on 'Use the server default (open in the browser)
    When I select File > new> from the ribbon in the document library - it still opens Word in the client application?
    Any ideas on this?
    Is there a general Office 365 setting over riding SharePoint somewhere?
    Regards
    kegan1

    Okie don't open up a ticket. Can you please open internet explorer...See if its the latest version. Once you have done that can you login to the SharePoint site. Then go to the internet wheel option  in top right corner > select manage add on >
    Click on toolbars and extensions on left > then click on SharePoint open documents in client and disable it. Close the browser completely now for the changes to take effect. Open internet explorer once again and then try to go to site collection click on
    file and create new. The word will open up in browser now. This has to be done on each and every machine in your firm so that users will be able to open up only in browser. Out of the box there is only one way is to customize the ribbon and remove the new
    option from there or creating an all together new ribbon for your SharePoint from visual studio.

  • I WANT TO UNINSTALL ELEMENTS 10 ON WINDOWS 8 BUT IT IS NOT SHOWN UNDER PROGRAMMES AND FEATURES SO HOW DO i DO IT PLEASE?

    I
    WANT TO UNINSTALL ELEMENTS 10 ON WINDOWS 8 BUT IT IS NOT SHOWN UNDER PROGRAMMES AND FEATURES SO HOW DO i DO IT PLEASE?i

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements
    But please not all-caps.

  • I want to uninstall Elements 10 but it is not shown under Programmes and features in my Windows 8. How do I do it please?

    I want to uninstall Elements 10 but it is not shown under Programmes and features in my Windows 8. How do I do it please?

    See if this helps:
    https://helpx.adobe.com/photoshop-elements/kb/manually-remove-photoshop-elements-10.html

  • Api for Cisco feature navigator

    I am curious to know if there’s any API’s (SOAP, REST or NBI) available
    to access Cisco Feature Navigator from external system to automate some of
    our software development.

    kindly check the following links
    https://developer.cisco.com/site/networking/security/identity-services-engine/overview/
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-2/api_ref_guide/api_ref_book/ise_api_ref_ers1.html#30233
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-2/api_ref_guide/api_ref_book/ise_api_ref_pref.html#pgfId-1024079

  • My "Group" feature is not working in Pages 5.0.1. Any help here?

    My "Group" feature is not working in Pages 5.0.1. Any help here?

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies do the following:
    #Go to Firefox > History > Clear recent history or (if no Firefox button is shown) go to Tools > Clear recent history.
    #Under "Time range to clear", select "Everything".
    #Now, click the arrow next to Details to toggle the Details list active.
    #From the details list, check ''Cache'' and ''Cookies'' and uncheck everything else.
    #Now click the ''Clear now'' button.
    Further information can be found in the [[Clear your cache, history and other personal information in Firefox]] article.
    Did this fix your problems? Please report back to us!

  • Selective XML Index feature is not supported for the current database version , SQL Server Extended Events , Optimizing Reading from XML column datatype

    Team , Thanks for looking into this  ..
    As a last resort on  optimizing my stored procedure ( Below ) i wanted to create a Selective XML index  ( Normal XML indexes doesn't seem to be improving performance as needed ) but i keep getting this error within my stored proc . Selective XML
    Index feature is not supported for the current database version.. How ever
    EXECUTE sys.sp_db_selective_xml_index; return 1 , stating Selective XML Indexes are enabled on my current database .
    Is there ANY alternative way i can optimize below stored proc ?
    Thanks in advance for your response(s) !
    /****** Object: StoredProcedure [dbo].[MN_Process_DDLSchema_Changes] Script Date: 3/11/2015 3:10:42 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- EXEC [dbo].[MN_Process_DDLSchema_Changes]
    ALTER PROCEDURE [dbo].[MN_Process_DDLSchema_Changes]
    AS
    BEGIN
    SET NOCOUNT ON --Does'nt have impact ( May be this wont on SQL Server Extended events session's being created on Server(s) , DB's )
    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
    select getdate() as getdate_0
    DECLARE @XML XML , @Prev_Insertion_time DATETIME
    -- Staging Previous Load time for filtering purpose ( Performance optimize while on insert )
    SET @Prev_Insertion_time = (SELECT MAX(EE_Time_Stamp) FROM dbo.MN_DDLSchema_Changes_log ) -- Perf Optimize
    -- PRINT '1'
    CREATE TABLE #Temp
    EventName VARCHAR(100),
    Time_Stamp_EE DATETIME,
    ObjectName VARCHAR(100),
    ObjectType VARCHAR(100),
    DbName VARCHAR(100),
    ddl_Phase VARCHAR(50),
    ClientAppName VARCHAR(2000),
    ClientHostName VARCHAR(100),
    server_instance_name VARCHAR(100),
    ServerPrincipalName VARCHAR(100),
    nt_username varchar(100),
    SqlText NVARCHAR(MAX)
    CREATE TABLE #XML_Hold
    ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY , -- PK necessity for Indexing on XML Col
    BufferXml XML
    select getdate() as getdate_01
    INSERT INTO #XML_Hold (BufferXml)
    SELECT
    CAST(target_data AS XML) AS BufferXml -- Buffer Storage from SQL Extended Event(s) , Looks like there is a limitation with xml size ?? Need to re-search .
    FROM sys.dm_xe_session_targets xet
    INNER JOIN sys.dm_xe_sessions xes
    ON xes.address = xet.event_session_address
    WHERE xes.name = 'Capture DDL Schema Changes' --Ryelugu : 03/05/2015 Session being created withing SQL Server Extended Events
    --RETURN
    --SELECT * FROM #XML_Hold
    select getdate() as getdate_1
    -- 03/10/2015 RYelugu : Error while creating XML Index : Selective XML Index feature is not supported for the current database version
    CREATE SELECTIVE XML INDEX SXI_TimeStamp ON #XML_Hold(BufferXml)
    FOR
    PathTimeStamp ='/RingBufferTarget/event/timestamp' AS XQUERY 'node()'
    --RETURN
    --CREATE PRIMARY XML INDEX [IX_XML_Hold] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index
    --SELECT GETDATE() AS GETDATE_2
    -- RYelugu 03/10/2015 -Creating secondary XML index doesnt make significant improvement at Query Optimizer , Instead creation takes more time , Only primary should be good here
    --CREATE XML INDEX [IX_XML_Hold_values] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index , --There should exists a Primary for a secondary creation
    --USING XML INDEX [IX_XML_Hold]
    ---- FOR VALUE
    -- --FOR PROPERTY
    -- FOR PATH
    --SELECT GETDATE() AS GETDATE_3
    --PRINT '2'
    -- RETURN
    SELECT GETDATE() GETDATE_3
    INSERT INTO #Temp
    EventName ,
    Time_Stamp_EE ,
    ObjectName ,
    ObjectType,
    DbName ,
    ddl_Phase ,
    ClientAppName ,
    ClientHostName,
    server_instance_name,
    nt_username,
    ServerPrincipalName ,
    SqlText
    SELECT
    p.q.value('@name[1]','varchar(100)') AS eventname,
    p.q.value('@timestamp[1]','datetime') AS timestampvalue,
    p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') AS objectname,
    p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') AS ObjectType,
    p.q.value('(./action[@name="database_name"]/value)[1]','varchar(100)') AS databasename,
    p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') AS ddl_phase,
    p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') AS clientappname,
    p.q.value('(./action[@name="client_hostname"]/value)[1]','varchar(100)') AS clienthostname,
    p.q.value('(./action[@name="server_instance_name"]/value)[1]','varchar(100)') AS server_instance_name,
    p.q.value('(./action[@name="nt_username"]/value)[1]','varchar(100)') AS nt_username,
    p.q.value('(./action[@name="server_principal_name"]/value)[1]','varchar(100)') AS serverprincipalname,
    p.q.value('(./action[@name="sql_text"]/value)[1]','Nvarchar(max)') AS sqltext
    FROM #XML_Hold
    CROSS APPLY BufferXml.nodes('/RingBufferTarget/event')p(q)
    WHERE -- Ryelugu 03/05/2015 - Perf Optimize - Filtering the Buffered XML so as not to lookup at previoulsy loaded records into stage table
    p.q.value('@timestamp[1]','datetime') >= ISNULL(@Prev_Insertion_time ,p.q.value('@timestamp[1]','datetime'))
    AND p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') ='Commit' --Ryelugu 03/06/2015 - Every Event records a begin version and a commit version into Buffer ( XML ) we need the committed version
    AND p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') <> 'Replication Monitor' --Ryelugu : 03/09/2015 We do not want any records being caprutred by Replication Monitor ??
    SELECT GETDATE() GETDATE_4
    -- SELECT * FROM #TEMP
    -- SELECT COUNT(*) FROM #TEMP
    -- SELECT GETDATE()
    -- RETURN
    -- PRINT '3'
    --RETURN
    INSERT INTO [dbo].[MN_DDLSchema_Changes_log]
    [UserName]
    ,[DbName]
    ,[ObjectName]
    ,[client_app_name]
    ,[ClientHostName]
    ,[ServerName]
    ,[SQL_TEXT]
    ,[EE_Time_Stamp]
    ,[Event_Name]
    SELECT
    CASE WHEN T.nt_username IS NULL OR LEN(T.nt_username) = 0 THEN t.ServerPrincipalName
    ELSE T.nt_username
    END
    ,T.DbName
    ,T.objectname
    ,T.clientappname
    ,t.ClientHostName
    ,T.server_instance_name
    ,T.sqltext
    ,T.Time_Stamp_EE
    ,T.eventname
    FROM
    #TEMP T
    /** -- RYelugu 03/06/2015 - Filters are now being applied directly while retrieving records from BUFFER or on XML
    -- Ryelugu 03/15/2015 - More filters are likely to be added on further testing
    WHERE ddl_Phase ='Commit'
    AND ObjectType <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND ObjectName NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND T.Time_Stamp_EE >= @Prev_Insertion_time --Ryelugu 03/05/2015 - Performance Optimize
    AND NOT EXISTS ( SELECT 1 FROM [dbo].[MN_DDLSchema_Changes_log] MN
    WHERE MN.[ServerName] = T.server_instance_name -- Ryelugu Server Name needes to be added on to to xml ( Events in session )
    AND MN.[DbName] = T.DbName
    AND MN.[Event_Name] = T.EventName
    AND MN.[ObjectName]= T.ObjectName
    AND MN.[EE_Time_Stamp] = T.Time_Stamp_EE
    AND MN.[SQL_TEXT] =T.SqlText -- Ryelugu 03/05/2015 This is a comparision Metric as well , But needs to decide on
    -- Peformance Factor here , Will take advise from Lance if comparision on varchar(max) is a vital idea
    --SELECT GETDATE()
    --PRINT '4'
    --RETURN
    SELECT
    top 100
    [EE_Time_Stamp]
    ,[ServerName]
    ,[DbName]
    ,[Event_Name]
    ,[ObjectName]
    ,[UserName]
    ,[SQL_TEXT]
    ,[client_app_name]
    ,[Created_Date]
    ,[ClientHostName]
    FROM
    [dbo].[MN_DDLSchema_Changes_log]
    ORDER BY [EE_Time_Stamp] desc
    -- select getdate()
    -- ** DELETE EVENTS after logging into Physical table
    -- NEED TO Identify if this @XML can be updated into physical system table such that previously loaded events are left untoched
    -- SET @XML.modify('delete /event/class/.[@timestamp="2015-03-06T13:01:19.020Z"]')
    -- SELECT @XML
    SELECT GETDATE() GETDATE_5
    END
    GO
    Rajkumar Yelugu

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • HT6337 HandOff feature does NOT work

    HandOff feature does NOT work on my iPhone6 and iPad Air.
    I have the latest updates (iOS 8.1) installed and my MBP is on Yosemite 10.10...
    I have my iPad Air, iPhone6, and MBP on the same network.
    And, I have bluetooth enabled.
    Yet, I don't see the handOff icon appear on any of my mobile devices...
    Am I missing something??
    Does setting a password on all my devices affect this feature?

    Hello LoreZyra,
    Thanks for using Apple Support Communities.
    To get Handoff working between your devices, please take a look at the article below for settings needed to be configured on your devices.
    Check your settings
    Check the following settings on your iPhone, iPad, or iPod touch:
    Go to Settings > Wi-Fi and turn on Wi-Fi if necessary.
    Make sure your iOS devices are connected to the same Wi-Fi network by going to Settings > Wi-Fi and comparing the name of the network each is on.
    Go to Settings > Bluetooth and turn on Bluetooth if necessary.
    Go to Settings > General > Handoff & Suggested Apps and make sure Handoff is on.
    Go to Settings > Phone. If you seeWi-Fi Calling, turn it off.
    Check the following settings on your Mac:
    Go to the Wi-Fi icon at the top of your screen and turn on Wi-Fi if necessary.
    Make sure your Mac and iOS devices are connected to the same Wi-Fi network. Go to Settings > Wi-Fi on your iOS device and compare the name of the network with the Wi-Fi network on your Mac.
    Go to the Bluetooth icon at the top of your screen and turn on Bluetooth if necessary.
    In System Preferences > General, select “Allow Handoff between this Mac and your iCloud devices.” If you don't see this setting, your Mac may not support Handoff.
    Open the FaceTime app, go to FaceTime > Preferences and turn on “iPhone Cellular Calls.”
    Go to System Preferences, and sign out and then sign in again to your iCloud account.
    Get help using Continuity with iOS 8 and OS X Yosemite
    Take care,
    Alex H.

  • Look Up feature is not working properly.

    Look Up feature will not work if another word is selected inside the Look Up display of the first word. The only solution was to the problem is to click on the word "Dictionary" (so that you will be using the Dictionary application instead) and then you will be able to look up for the second word that was originally displayed in the Look Up display.
    It's really annoying this extra step just to look up for a word. That problem did not happen before installation OS X Yosemite update. I hope they fix that problem

    If you don't get an answer here, you might want to search/ask in the Chinese Mac list:
    http://groups.google.com/group/chinesemac

  • Feature can not be recognized

    It seems I am facing a problem with feature can not be recognized for leaving action (PA40)
    Leaving is supposed to have MSN 20 with program generated 1PAPA/FEAT000MSN20 but my client has different program generated which is $P00003U. How do I change it?

    what is generate feature TCODE? Is it se38 for running the above program? I execute it however I have a message says "When recognizing the predecessors, youmay not specify a feature because the reorganization with subsequent activation can not be performed for a subset"
    Edited by: Dian Santioso on Jan 24, 2008 11:59 AM
    Edited by: Dian Santioso on Jan 24, 2008 12:09 PM

  • How can I take my iCloud account off of my sons phone when the settings/iCloud feature is not hilited?

    How can I take my iCloud account off of my sons phone when the settings/iCloud feature is not hilited?

    No it's all greeted out too:-( I'm not sure why he's getting txts and emails that I get too. I think he has access to my pics as well.

  • Why do you not offer a reversion feature when you crash my add on with updates?

    I at my advanced age rely on the norton toolbar for storing and remembering my multitude of logins. It seems as if every time you update firefox, I lose this feature and have to search the internet for an hour to find and download the prior version of firefox to get it back, and often it auto updates again within hours and wipes out that effort. Why can you not offer a reversion feature when you update? I have voiced this complaint repeatedly over several years. I am happy with firefox with that one exception. It is VERY annoying and time consuming.

    You could set your Firefox to notify you of updates, and give Norton a few days to update before actually updating Firefox. To set that, use this dialog:
    orange Firefox button ''or'' classic Tools menu > Options > Advanced > Update
    The "Check for Updates" option might fit the bill. Definitely easier than rolling back an update.

  • I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help

    I have a bluetooth headset that only works in phone feature but not in itunes or apps on my iphone, please help.
    It works fine through my macbook, can't find anything in settings on iphone to resolve problem

    The headset has to have A2DP capability, which most (I believe) do not.
    http://en.wikipedia.org/wiki/Bluetooth_profile

  • Looking for a free app for secure note taking with search feature (unlimited)

    Hi dudes,
    As the topic suggests, I'm looking for a free app for secure note taking with search feature without any restriction on the number of notes or any other major restriction. I already use HiDisk (which lacks search feature), and security note+ (which has limitation on the number of notes). I also have used My Disk which its search feature doesn't work correctly (it's buggy).
    Thank you.

    One named NotePad is free, saves as .txt files.
    Another, WriterRoom, costs $1.99USD, and saves as .txt and .doc files.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • After updating to iOS6, I can no longer find the "little yellow man" in the MAP application and so cannot do a virtual tour of my destination or current position. Surely this feature has not been lost?

    I have recently updated to iOS6. With this new version came the "new and improved" MAPS. One of the most important features i enjoyed on the previous version was the google map feature of being able to take a virtual look at your position or destination by using the "little yellow man". I no longer see this feature and am wondering what I am doing wrong. Obviously apple would not be so negligent as to remove this feature on purpose!
    Thanks
    Ian

    That feature you mentioned is called Google Street View. As you see in its name, it has Google in it.
    Apple is no longer working with Google for their map system, for many unknown reasons (we can only speculate). Therefore, it is normal that Street View is not included anymore.

Maybe you are looking for

  • Dump on execution of RFC HRXSS_PER_READ_P0006_US in ECC

    Hi I am just trying to execute one of FM that is used in case of country specific self service application. But I get following dump in the  backend. Strangely standard wd java also calls this FM without any dump. I also did check though extenal debu

  • Problem with application variable

    Hello, I have one servlet which is reading the contents from web.xml and putting the values in the application object which I use in jsp program. As my servlet in get loaded at the startup so whenever I change the values in the web.xml then I need to

  • Reading a multi-dimensional array from a binary file?

    Hi, experts! Once again I'm stuck with a basic problem in labview. I've ben trying to make a VI that reads a binary measurement file that consists of a 2D array, i.e. n channels of sampled data. This seems to be easier said than done in LV and I the

  • After turning on, it takes much longer time to turn on. all the functions don't work.have to wait a long time

    After I turn on my macbook, it takes a much longer time to turn on. I can move around the arrow, but nothing works. I tried to click every app, no response. I have to wait a long time and then everything works. Did I do something wrong? Thanks

  • Improve scrolling in graphics

    Here is some code import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.util.*; public class junk extends JFrame implements MouseMotionListener  {   junkit ju = new junkit();    public junk() {     super();     setSize(530,550