What IOS command similar to catos command 'set port vtp X disable'

Hi,
Does anyone know if a similar command of catos command 'set port vtp X disable' exists in native IOS (12.1E or 12.2SX) on cat6500?
We still can play in native IOS with VTP pruning, transparent mode but it seems that we can no more disable VTP on a particular port/interface.
Many thanks.
Regards/Ludovic.

While one may not be able to disable VTP directly, I would think you could use a MAC ACL against the VTP MAC address of 01-00-0C-CC-CC-CC. (See http://www.cisco.com/en/US/partner/tech/tk389/tk689/technologies_tech_note09186a0080094c52.shtml for details on how that addressing works.)
See http://www.cisco.com/en/US/partner/products/hw/switches/ps708/products_configuration_guide_chapter09186a00801679f8.html#wp1359352 for details on the command syntax.
Hope this helps. Please rate helpful posts.

Similar Messages

  • 'set port description' command in CatOS 8.4

    We've upgraded to CatOS 8.4 to get ssh few month ago. I haven't noticed until now that there is a 'set port description' command. It still has 'set port name' command to name the ports, but not sure what 'set port description' command does. Looked for the command in the Cisco reference guide and the command is missing from the list.
    For one, it doesn't change the port name as 'set port name' does. I suspect it could supply port information for snmp polls. Anyone know what this command is for?

    Hmmm, interesting.
    I looked it up in the command lookup tool and nothing comes back.
    Found a reference to it here which to me says its the same as the "set port name" command but as you say it doesn't work!
    http://www.cisco.com/en/US/products/hw/switches/ps663/products_tech_note09186a0080094713.shtml
    Rgds
    PJD

  • ACS command authorization - deny CatOS "set" commands

    Cisco Secure ACS 4.2
    I have a network support group that i just want to deny them the ability to use IOS and CatOS configuration commands.
    I noticed that the Per Group Command Authorization is applicable to only IOS-based commands. I applied it to deny "configure", but permit everything else.
    How do I go about setting this group up to deny set-based commands for the CatOS devices?

    Hi
    CatOS does TACACS+ right? Pretty sure it does. If it has a "shell/exec" service like IOS then ACS wont really care whether the command authorisation is IOS or CatOS - it doesnt have any specific command set knowledge. ie it uses string comparisons between what the device is requesting and what is permitted.
    However, if the command authorisations are totally different (between IOS and catos devices) you might need to place them into separate NDGs so that you can map an IOS NDG to an IOS device command set and vice versa.
    Hope that makes sense!

  • Does MAC OS have a "route add" command similar to a DOS command?

    Does MAC OS have a "route add" command similar to a DOS command?
    I know that with DOS, you can type "route add 192.168.x.x MASK 255.255.x.x 192.168.x.x" to add a route on your PC,but does MAS OS X(10.4.9) have something similar to it? I have a network printer that my winXP can access but my MAC cannot. I was unable to ping it from both wINXP and MAC. But after I added the route to my winXP I was able to ping and print to it. I do not know if I can do the same to my MAC. Does anyone know what the command is?
    Thank you in advance.

    Yes, and Welcome! ...
    http://www.osxfaq.com/man/8/route.ws
    And to make it permanent...
    http://www.osxfaq.com/tips/kluskens/index.ws

  • What keys can duplicate the "option", "command", and "escape" keys

    Am having to use an 
    ONN  external keyboard and would like to know what keys can duplicate the "Option", "Command" and  "Escape" functions.... Thank you

    krisserz,
    Actually, yes, a lot of things are similar on MACs, but for example, on this page: http://www.bugge.com/Family-and-friends/Illy/illy.html it says to find the folder Adobe Illustrator [X] Settings and there is none on my computer.
    The Move the folder hint says:
    Up to version 10, the name of the folder is Adobe Illustrator [X],
    From version CS on, the name of the folder is Adobe Illustrator [X] Settings.
    [X] is the version number; up to 10, it is just a number, and above that the Creative Suite version number, CS, CS2, CS3, CS4, and so on, is used (the corresponding standalone versions still have simple numbers, CS is called 11, CS2 is called 12, CS3 is called 13, and CS4 is called 14, but the version numbers with CS are used in the folder name).
    So in your case it would be Adobe Illustrator CS3 Settings.
    It may be worth going through all the Other options and try whichever may be relevant (Entorurage is mentioned under 7, along with quite a few others).
    One of the less nice options is to reinstall, in which case the Clean Script should be used. http://www.adobe.com/support/contact/cs3clean.html

  • What do you mean by commit command

    hi gurus,
      what do you mean by commit command, and how we can use in subroutines...
    regards,
    praveen

    Praveen,
    read the below  doc. very very useful one.
    Error Handling for Bundled Updates
    Runtime errors can occur during execution of bundled updates. How are they handled? In general, COMMIT WORK processing occurs in the following order:
    All dialog-task FORM routines logged with PERFORM ON COMMIT are executed.
    All high-priority (V1) update-task function modules are executed.
    The end of V1-update processing marks the end of the . If you used COMMIT WORK AND WAIT to trigger commit processing, control returns to the dialog-task program.
    All low-priority (V2) update-task function modules are triggered.
    All background-task function modules are triggered.
    Runtime errors can occur either in the system itself, or because your program issues an termination message (MESSAGE type ‘A’). Also, the ROLLBACK WORK statement automatically signals a runtime error. The system handles errors according to where they occur:
    in a FORM routine (called with PERFORM ON COMMIT)
    Updates already executed for the current update transaction are rolled back.
    No other FORM routines will be started.
    No further update-task or background-task functions will be started.
    An error message appears on the screen.
    in a V1 update-task function module (requested IN UPDATE TASK)
    Updates already executed for V1 functions are rolled back.
    All further update-task requests (V1 or V2) are thrown away.
    All background-task requests are thrown away.
    Updates already executed for FORM routines called with PERFORM ON COMMIT are not rolled back.
    An error message appears on the screen, if your system is set up to send them
    in a V2 update-task function module (requested IN UPDATE TASK)
    Updates already executed for the current V2 function are rolled back.
    All update-task requests (V2) still to be executed are discarded.
    All background-task requests still to be executed are carried out.
    No updates for previously executed V1 functions are rolled back.
    No updates previously executed for FORM routines (called with ON COMMIT) are rolled back.
    An error message appears on the screen, if your system is set up to send them
    in a background-task function module (requested IN BACKGROUND TASK DESTINATION)
    Background-task updates already executed for the current DESTINATION are not rolled back.
    All further background-task requests for the same DESTINATION are thrown away.
    Other previously executed updates are rolled back.
    No error message appears on the screen.
    If your program detects that an error in remote processing has occurred, it can decide whether to resubmit the requests at a later time.
    For further information about RFC processing, refer to the Remote Communications documentation.

  • I will starting afresh website in my iWeb, it shows only the head or the command line and the command new website is inactive - what do I need to start over

    Help........
    I will starting afresh website in my iWeb, when I start the program it only shows the head or the command line and the command new website is inactive - what do I need to start over - what have I done wrong

    Don't quite understand what you mean, but it says at the bottom that you are still using iWeb 08 so depending on what OSX you are running, you might consider upgrading to iWeb 09.  This works with Lion, Mountain Lion and Mavericks.
    Apple no longer sells iWeb so if you decide to upgrade, then you'll need to purchase iWeb by going to Amazon and buying the iLife 09 or 11 boxed sets, both of which contain iWeb 09.
    Install this on your Mac and it might solve your problems, or just ditch iWeb and start again with one of the newer programmes out there that are still being supported and updated, such as RapidWeaver, Sandvox, Freeway Pro/Express, Flux 4, WebAcapella 4 and EverWeb (http://www.everwebapp.com).

  • Command similar to protect..endprotect in abap

    Hi All
            Is there any command similar to protect endprotect in abap list output so that salutation doesn't fragment over next page.
    or any other logic that one can use for same?
    For e.g.,
    THANKING YOU
    FOR XYZ COMPANY LTD,
    AUTHORIZED SIGNATORY.
    Regards
    Babita

    hi babita , try to use Reserve Key word for tht .
    Here is the standard help on tht  -
    Basic form
    RESERVE n LINES.
    Effect
    If there is not enough space left on the current page for at least n lines, this statement starts a new page. n can be a constant (1,2,3,...) or a variable.
    Notes
    Before starting a new page, the END-OF-PAGE processing is executed. This differs from NEW-PAGE.
    If the RESERVE statement does not trigger a new page, output is continued on the current page.
    Use BACK to return to the first line output after RESERVE.
    Note
    Performance:
    The runtime required to execute a RESERVE statement is approx. 1 msn (standardized microseconds).
    hope this will help.
    amit

  • What is use of Read-Text  command in Sapscript  plz replay

    What is use of Read-Text  command in Sapscript  plz replay
    i m geting problem with read-text command in sapscript as will as
    perform and endperform .

    Hi Majid,
              It's a function module to read the texts from a text file. Generally it is used to retrieve the long texts.
    The function module reads the desired text from the text file, the text memory, or the archive. You must fully specify the text using OBJECT, NAME, ID, and LANGUAGE. An internal work area can hold only one text; therefore, generic specifications are not allowed with these options.
    After successful reading, the system places header information and text lines into the work areas specified with HEADER and LINES.
    If a reference text is used, SAPscript automatically processes the reference chain and provides the text lines found in the text at the end of the chain. If an error occurs, the system leaves the function module and triggers the exception REFERENCE_CHECK.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
    OBJECT = ?...
    NAME = ?...
    ID = ?...
    LANGUAGE = ?...
    ARCHIVE_HANDLE = 0
    IMPORTING HEADER =
    TABLES LINES = ?...
    EXCEPTIONS ´
    ID =
    LANGUAGE =
    NAME =
    NOT_FOUND =
    OBJECT =
    REFERENCE_CHECK =
    WRONG_ACCESS_TO_ARCHIVE =
    Export parameters
    Specify the client under which the text is stored. If you omit this parameter, the system uses the current client as default.
    Reference field: SY-MANDT
    Default value: SY-MANDT
    OBJECT
    Enter the name of the text object to which the text is allocated. Table TTXOB contains the valid objects.
    Reference field: THEAD-TDOBJECT
    NAME
    Enter the name of the text module. The name may be up to 70 characters long. Its internal structure depends on the text object used.
    Reference field: THEAD-TDNAME
    ID
    Enter the text ID of the text module. Table TTXID contains the valid text IDs, depending on the text object.
    Reference field: THEAD-TDID
    LANGUAGE
    Enter the language key of the text module. The system accepts only languages that are defined in table T002.
    Reference field: THEAD-TDSPRAS
    ARCHIVE_HANDLE
    If you want to read the text from the archive, you must enter a handle here. The system uses it to access the archive. You can create the handle using the function module ACHIVE_OPEN_FOR_READ.
    The value '0' indicates that you do not want to read the text from the archive.
    Reference field: SY-TABIX
    Default value: 0
    Import parameters:
    HEADER
    If the system finds the desired text, it returns the text header in this parameter.
    Structure: THEAD
    Table parameters:
    LINES
    The table contains all text lines that belong to the text read.
    Structure: TLINE
    Exceptions:  
    ID
    The text ID specified in the parameter ID does not exist in table TTXID. It must be defined there together with the object of the text module.
    LANGUAGE
    The parameter LANGUAGE contains a language key that does not exist in table T002.
    NAME
    The parameter NAME contains the name of a text module that does not correspond to the SAPscript conventions.
    Possible errors:
    The field contains only blanks.
    The field contains the invalid characters ‘*’ or ‘,’.
    OBJECT
    The parameter OBJECT contains the name of a text object that does not exist in table TTXOB.
    NOT_FOUND
    The system did not find the specified text module.
    REFERENCE_CHECK
    The text module to be read has no text lines of its own but refers to the lines of another text module. This reference chain can include several levels. For the current text, the chain is interrupted, that is, one of the text modules referred to in the chain no longer exists.
    WRONG_ACCESS_ TO_ARCHIVE
    The exception WRONG_ACCESS_TO_ARCHIVE is triggered if an archive is accessed using an incorrect or non-existing archive handle or an incorrect mode (that is, read if the archive is open for writing or vice versa).
    Br,
    laxmi.

  • What's the difference between "tar" command and ufsdump?

    what's the difference between "tar" command and ufsdump?

    Conceptually they do much the same thing.
    Except ufsdump is only for ufs filesystems and since it is able to use deeper knowledge of the internals gains some performance.
    ufsdump is multithreaded for example.

  • What is the use of the COMMAND botton on the keyboard of macbook pro?

    What is the use of the COMMAND botton on the keyboard of macbook pro?

    Hi,
    This is to add more functionality to your keyboard, as CTRL and SHIF do.
    for the list of the shortcuts you can use to make your computer work quicker and more comfortable you can check here.
    http://support.apple.com/kb/HT1343
    You do not have to use the Command Key if you are ok with the trackpad or mouse. Function Key make life easier.
    TZ

  • I'm on a  Mac and I need to know how to go one step back in Lightroom 5.   In other words, what is the Lightroom equivalent of Command Z in Photoshop?

    I'm on a  Mac and I need to know how to go one step back in Lightroom 5.   In other words, what is the Lightroom equivalent of Command Z in Photoshop?

    Command Z works for me on Lightroom - always has.
    Edit>Undo is the Menu command

  • XF86AudioMute / KEY_MUTE command called despite binding not set

    Hi,
    I'm using pulseaudio and I really want to configure it finally (I used to have only ALSA installed but more and more applications require Pulseaudio so I decided to give it a try).
    OK, down to business. I can't figure out how to configure my binding for mute/unmute key. I simply couldn't unmute sounds on my laptop and I thought, that
    assigning command like amixer -D pulse set Master Playback Switch toggle for XF86AudioMute in XFCE keyboard settings will do the trick. Unfortunately this command mutes and unmutes sound only when ran from console.
    Just to ensure that XFCE Keyboard settings really reflect keyboard bindings I removed the one for XF86AudioMute. Despite removing this binding, mute/unmute still seems to be called from somewhere  when dedicated button is pressed (of course after muting you can't unmute - in pavucontrol sound is still muted and you have to unmute it manually).
    So the question is - where is the XF86AudioMute binding defined??? It seems like some extra command bound to XF86AudioMute key overrides my custom command anyway...
    Last edited by jakub (2014-12-30 22:28:49)

    I have seen Function keys do something like this before (backlight and wifi radio in particular).  I suspect they might be interacting with the bios.

  • Note 3 won't answer a call by using the "answer" voice command. Other voice commands work fine (ie 'volume up') and speech to text works fine. Tried it in the car and in a quiet room at home. What am I missing?

    Note 3 won't answer a call by using the "answer" voice command. Other voice commands work fine (ie 'volume up') and speech to text works fine. Tried it in the car and in a quiet room at home. What am I missing?

        Rodilator,
    We'll figure this out together! Can you please walk us through the exact steps you're taking to answer a call when it comes in?
    SarahO_VZW
    Follow us on Twitter @VZWSupport

  • Whats the diff between this dscl commands?

    Hi, I have been trying to "CRUD" users/groups via terminal. But I'm confused which is the correct command.
    sudo dscl localhost append /Local/Default/Groups/www GroupMembership millisami
    sudo dscl localhost -append /Groups/wheel GroupMembership millisami
    Whats the difference between the above commands?

    Hi.......
    Check this.......
    What's the difference between Transferred Records and Added Records?
    Manage ODS : Difference of Transferred Records and Added Records
    Regards,
    Debjani......

Maybe you are looking for

  • [SOLVED] Find all users with a MAILTO option in their crontab

    Anyone know if this is possible? I have a script that lists all scheduled cronjobs but I need to find out which users have email notifications configured. If anyone else wants it, here is the script I use to check all user's crontabs. I did not write

  • Having trouble with Icloud

    I just downloaded icloud and can't figure out how to use it. Iused the Help site and it suggests an icloud icon in the upper left corner but I don't see it. For example, my System Preferences shows "Documents and Data but it dos'nt show up when I sig

  • Combine 2 TOs into 1

    HI Gurus If I have 2 transfer orders, how do I group this 2 transfer orders into 1? Sanjay

  • How manage outbound IDoc with QRFC in SAP CRM 5.O

    Hi experts, I want to manage outbound IDoc with QRFC. For doing it I selected the flag Query Processing in transaction WE20. When I run the program QRFC Monitor (RSTRFCM1) the system shows this error message: Status is SYSFAIL. "[SAP.111.9129] WMSAP

  • How to run non-customised report from command prompt to gen trace file?

    Hi how to run non-customised report from command prompt to gen trace file? EBS R12 RUP6. RHEL5 rgrds