Using more than 1000 VLAN Ids with VTP

How do I overcome the 1000 VLAN Id limitation with VTP ?

Hi,
you need VTP version 3 for that matter or set the switches to transparent. Unfortunately VTPv3 is only available in CatOS 8.1(1) or later. See also
Understanding How VTP Version 3 Works
VTP version 3 differs from earlier VTP versions in that it does not directly handle VLANs. VTP version 3 is a protocol that is only responsible for distributing a list of opaque databases over an administrative domain. When enabled, VTP version 3 provides the following enhancements to previous VTP versions:
•Support for extended VLANs.
http://www.cisco.com/en/US/products/hw/switches/ps708/products_configuration_guide_chapter09186a008019f048.html#wp1017196
Hope this helps! Please rate all posts.
Regards, Martin

Similar Messages

  • Can I use more than one iTunes account with my apple TV?

    Can I use more than one iTunes account with my apple TV?

    That depends what you mean. If you mean can you purchase from more than one iTunes account on the Apple TV, then the answer is no. If you mean can you stream from more than one iTunes library, which use different accounts, then the answer is yes, so long as they both use the same ID and password for homesharing.

  • Using more than one external drive with apple tv and itunes

    I've searched the forums and haven't found a clear answer for this. Is it possible to use two seperate drives for the itunes library? I've already filled up my external firewire drive and would like to get another one.
    I've read in several places that people are doing this, but haven't found clear instructions on how its done.
    Much thanks!
    Brown.Recluse

    I don't think you can have more then one folder designated as you itunes library folder, so you can not have more then one drive for your library folder. However you can use more than one drive for you content. I have 6 drives that I use right now. I store the movies and tv shows on those drives. I drag a movie into then library tab in itunes and it just links itunes to the path of the movie. To do this however you have to unclick a option in itunes. It is the menu that you tell the path to you library, you have to unclick “copy to your library” not sure if this is the exact name of this. If you don't do this it will try to copy the movie you dragged in instead of linking it. I actually have nothing in my Itunes library folder. You can also do this with purchased content as well. Just move the purchase content to a drive of your choice from the itunes library. Delete it from itunes. Then drag it into itunes from the new drive. I hope this all makes sense, let me know if you have any other questions.

  • How do I use more than one USB device with Airport Extreme?

    I would like to plug a shared hard drive into my new airport extreme and still be able to plug in a shared printer as well. How am I supposed to do this with only one USB port. Do I use a USB hub???
    Is it possible to connect a hard drive using one of the ethernet ports?

    To use multiple USB devices you would use a powered USB hub.
    You can connect a hard drive to one of the Ethernet ports providing the hard drive is a NAS and supports Ethernet connections. In that situation the NAS hard drive is just like any other Ethernet client and the AirPort Extreme base station (AEBS) does not handle the file sharing services. The drive itself would provide the file sharing services.

  • Can I use more than 1 backup drive with Time machine?

    I wanted to run this proposed setup by this board, before I ordered HDs:
    For my Mac which is located at the office:
    I want to use 2 internal 500GB HDs.
    Drive 1: System Disk & main File storage
    Drive 2: Primary Time Machine Backup Volume. Backing up Daily.
    I would also like to have an external HD, that I can keep at home, but bring into the office, say once a month to have an additional backup that I can take home with me in case of a catastrophic event such as if the office would burn down. Sort of a backup of the backup, just in case.
    Can Time machine switch back and forth between 2 backup drives, or will I have to do manual backup to the external drive. It would be nice to have Time machine do it, since it will only be copying modified files.

    I believe TM can do it. you'll have to go to system preferences and click on "change TM drive" every time you switch. However, I would recommend a different type of backup for your less frequent backups. use CCCloner or Superduper! to make a bootable clone of your system once a month. I'm not sure about CCCloner but superduper can do it by updating only the files that have been changed so it shouldn't take too long.

  • How to use more than one airport express with multiple speakers

    I have 2 Airport Express. Prior to the multiple speaker enhansement I changed spekers by changing the wireless network. Each of the Airports is recognised as a wirelss network. Is there any way I can make my computer and itunes to see all of my Airports so I can use the Multiple Speaker function for both of my Airports at the same time withour having to change wireless network.

    You need to have a single wireless network.
    If you con't have a wireless router, then you will need to configure one of the Airport Express (AX) units to join the existing wireless network of the other AX.

  • I have a 2-gen iTouch that I love.  Thinking of buying a 4-gen.  Can I transfer my apps and the results to a new iTouch?  What I'm focused on is a solitaire app that I've played more than 1000 games on with a 69% win rate.  I know it's crazy but I want to

    ... continue that.

    Yes. Make a new backup of your current iPod Touch in iTunes.  See this article for whats included in a backup.
    http://support.apple.com/kb/ht1766
    When the new iPod Touch arrives, plug it in and register it, and then restore the iPod from that backup to retain all your App data.
    http://support.apple.com/kb/ht1414
    Items such as your Apps, music, movies, etc. should all still be in your iTunes library, so you should just be able to configure the new iPod to sync these items.
    B-rock

  • Vector or ArrayList  use for dropdown with more than 1000 entries

    Hi Friends
    I am having more than 1000 entries of different TimeZone's which i need to display in a dropdown list.
    i am not able to decide whether i need to use a Vector or Arraylist for storing these values.
    please let me know which one will be best suited to use in case the list entry is more than 1000 characters.
    waiting for a positive reply from your side.
    Thanks & Regards
    Vikeng

    A JComboBox can be constructed from a Vector (rather than any other sort of List) without having to implement your own ComboBoxModel. (JList is similar).
    I agree with kajbj - a control like this with a thousand entries is rather poor interface design. One exception might be if the entries are sorted in some way, and you "jump" to the appropriate place in the list as the user types.

  • IN operator with more than 1000 values

    Hi,
    For a given list of IDs (PKs), I need to fetch the corresponding rows.
    The problem is that I have more than 1000 values and as far as I know that IN operator is limited to 1000
    values.
    I thought about using UNION such that each Select contains up to 1000 IDs.
    example":
    select * from temp where id in(1....1000)
    union all
    select * from temp where id in(1001....2000)
    Is there a better way to do that?
    Thanks
    dyahav

    As others have presented technical solutions, i'll present you a logical one (seemingly logical anyways, but it will depend on your application).
    I have seen some applications where you get
    select * from some_table where ... <conditions>;That result set is returned to the front end and presented to the users who then pick a series of records and submit another request to the database which ends up being...
    --note, this could be a many table join, with lots more information that just the some_table, this is illustrative only
    select * from some_table where pk_value in (super_super_duper_list_based_on_last_result_set);If this mimics what you have in your application, i'd recommend just fixing it so the users can select a reasonable set of data, OR the entire set (in the last case you'd just send the <conditions> instead of a massive list of PK values).
    Again, highly speculative but i thought i'd mention it in the off chance it's useful to you.

  • How can i use IDSM-2 in inline mode for more than two VLANs?

    can i use the IDSM-2 in inline mode to be ips to more than two VLANS
    like this or it isn't
    intrusion-detection module 5 data port 1 access-vlan 10,20,30,40,50
    intrusion-detection module 5 data port 1 access-vlan 100,200
    thank u all for your help

    The IDSM-2 ports need to be configured as trunk ports with multiple vlans rather than as access ports.
    http://www.cisco.com/en/US/partner/products/hw/vpndevc/ps4077/products_configuration_guide_chapter09186a00807517eb.html#wp1068377
    And instead of creating an inline interface pair by pairing Gig0/7 with Gig0/8 within the IDSM-2 configuration, you would create inline vlan pairs.
    With an inline vlan pair you pair 2 vlans on the same interface.
    You can have up to 255 inline vlan pairs on each interface (assumining you keep the total traffic from all of the pairs within the IDSM-2s performance limit of around 500Mbps)
    How to create inline vlan pairs:
    http://www.cisco.com/en/US/partner/products/hw/vpndevc/ps4077/products_configuration_guide_chapter09186a00807517bb.html#wp1047852
    The other aspect you need to be aware of is that not all IOS versions will support configuring the IDSM-2 data ports as trunk ports for inline vlan pairs.
    Your best bet is to use 12.2(18)SXF4 or a later version on the 12.2(18)SXF train.
    The 12.2(33)SR train does not currently support the trunk feature for the IDSM-2.

  • List with more than 1000 elements

    I'm trying to use this query:
    select *
    from street
    where street_cod in ('street_code_list')
    It working well when the 'street_code_list' has less than 1000 codes but it fails when it have more, with a message that says that a list can't have more than 1000 elements. How can I fix this problem? Can I use any other kind of object to store my list?
    I'm querying the database in ColdFusion using ODBC.
    Thank you in advance,
    Rui

    Another thing to consider doing is simply creating a "list table" which would contain your list elements and allow you to do a
    SELECT X
    FROM Y
    WHERE X IN (SELECT X
    FROM Z)
    type query.
    I don't know where you are getting your list from, but if it is persistant (i.e, doesn't change with every program run) this is certainly a viable option (and may be usable even if the list does change every run).
    If this is being executed in PL/SQL (or some other procedural language) you could also just loop through your list: execute the query with the first 1000 list elements and do your processing, then the next, and so on. Of course, to some extent this depends on your processing, but if you need the entire result set before you can process it, then you could store the individual result sets in a PL/SQL table or an array (if you are using Pro*C or whatever) and then process when the PL/SQL table/array was fully populated.

  • Can I use more than one iPod with one computer?

    Howdy,
    I have a (hopefully) quick question. Can I use two iPods with one user account on one computer? Can iTunes keep two different iPods separate with different syncing rules for the same user account and iTunes library? I'm interested in the answer for both Mac and Windows machines.
    Thanks!
    Mikael
    TiBook   Mac OS X (10.4.6)  

    You can use more than on iPod on one computer, and you can also use one iPod on more than one computer. Check out these articles:
    http://docs.info.apple.com/article.html?artnum=300432
    http://docs.info.apple.com/article.html?artnum=61675
    Hope these help you out!
    Best wishes,
    CG

  • Can I use more than one bluetooth device at a time with my iphone4

    Can I use more than one bluetooth device at a time with my iphone4

    Anthony
    I have a Plantronics 975 earpiece that works very well with my Razr.  I
    just got a Panasonic KX-TG7873S phone system for my home, it has a
    "Link-to-Cell" cellular convergence solution, from what I understand it is
    just Bluetooth enabled.  I have paired both device with my Razr.  In
    settings, Bluetooth setting, both device show.  But only one device can
    connect at a time.  If my Plantronics is connected and I choose the
    Panasonic device, the Plantronics device disconnects and the Panasonic
    device then says it is connected.  Both devices work when they
    are connected.  Is it because they are both "headsets"?
    So, to have to remember to connect to one or the other device, depending on
    weather I am coming or going is not practical.
    On Sat, Sep 14, 2013 at 1:14 PM, Verizon Wireless Customer Support <

  • Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes? Both my daughters have ipods, my wife has one

    Dear All
    Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes. My daughters have a different generation 'nano' each & my wife a 'shuffle'?
    Many thanks

    Click here for options.
    (69081)

  • SendMail: can not send mail with body more than 1000 caracters

    Hi,
    I can not send mail with a body wich is more than 1000 caracters.
    FUNCTION SendMail(SMTPServerName IN STRING,                     
                        Sender IN STRING,                     
                        Recipient IN STRING,                     
                        CcRecipient IN STRING,                     
                        BccRecipient IN STRING,                     
                        Subject IN STRING,                     
                        Body IN STRING,                     
                        ErrorMessage OUT STRING,                     
                        Attachments IN ATTACHMENTS_LIST) RETURN NUMBER IS      
                        AttachmentList VARCHAR2(4000) := '';      
                        AttachmentTypeList VARCHAR2(2000) := '';   
                          BEGIN       ParseAttachment(Attachments,                      
                                                      AttachmentList);      
                                      RETURN JSendMail(SMTPServerName,
                                                       Sender,                       
                                                       Recipient,                       
                                                       CcRecipient,                       
                                                       BccRecipient,                       
                                                       Subject,                       
                                                       Body,                       
                                                       ErrorMessage,                       
                                                       AttachmentList); 

    Hi,
    I can not send mail with a body wich is more than 1000 caracters.
    FUNCTION SendMail(SMTPServerName IN STRING,                     
                        Sender IN STRING,                     
                        Recipient IN STRING,                     
                        CcRecipient IN STRING,                     
                        BccRecipient IN STRING,                     
                        Subject IN STRING,                     
                        Body IN STRING,                     
                        ErrorMessage OUT STRING,                     
                        Attachments IN ATTACHMENTS_LIST) RETURN NUMBER IS      
                        AttachmentList VARCHAR2(4000) := '';      
                        AttachmentTypeList VARCHAR2(2000) := '';   
                          BEGIN       ParseAttachment(Attachments,                      
                                                      AttachmentList);      
                                      RETURN JSendMail(SMTPServerName,
                                                       Sender,                       
                                                       Recipient,                       
                                                       CcRecipient,                       
                                                       BccRecipient,                       
                                                       Subject,                       
                                                       Body,                       
                                                       ErrorMessage,                       
                                                       AttachmentList); 

Maybe you are looking for