Can not add a vlan on cisco 876

Hello.
I' trying to add a vlan on vlan database of a cisco 876, but it says to me:
Router#vlan database
Router(vlan)#vlan 2
Vlan can not be added. Maximum number of 1 vlan(s) in the database.
why I can't add a new vlan?
I have the c870-advsecurityk9-mz.124-4.T7 image.
thanks

The VLAN database is relevant to switches, not to routers.
I presume your router is connected to a switch that can handle VLANs. That is where you need to create your layer-2 VLANs. If you want your router to connect to a VLAN, say VLAN 2, then you have to do it something like this:
interface f0.2
encapsulation dot1q 2
ip address 192.168.2.1 255.255.255.0
Repeat that for however many VLANs you want to route.
Kevin Dorrell
Luxembourg

Similar Messages

  • Can not add IPS devices to IME 7.0.1, 7.0.2, 7.0.3 or 7.1.1

    Hi!
    On a new XP SP3 machine with Java 1.6.0.27, I can not add any IPS devices (AIP-SSM-20). I can log in on them with ssh or ASDM.
    I always get this error:
    "Error response from IME Server - IOException: Read Time Out. IME IME Server is not responding. Please check if it is running"
    IME Server service is running (IMEServer.exe and IMEJava.exe process are running on the PC). Trying to restart services it hungs on "Stoping" ... have to kill both process with taskkill and then, restart the Cisco IPS Manager Express service. MySQL-IME servies is up and running
    I tried with IME 7.0.1, 7.0.2, 7.0.3 and 7.1.1 with same result.
    NO firewall on PC, full access allowed on ASA, PC-ASA-IPS are on the same subnet/VLAN
    Tried to re-create the IPS certificates, same error.
    On Java properties, Direct Connection option on Network configuration is selected.
    Any idea what's wrong or what I can try to get IME working?
    Thanks

    In most cases I have encountered exhibiting this behavior, IME is being affected (denied/blocked/conflicting/stopped/etc.) by a HIPS software product installed on the system. If you are able to identify such a product, then try temporarily disabling/removing it and testing again. Some antivirus products can cause this type of behavior as well (including some level of basic HIPS functionality), so you may find that to be the culprit.
    If you are unable to identify the cause, test on a clean OS install (not an existing pre-made image or IT-created image that includes modifications/domain membership/packages/etc.); a completely clean OS install with IME 7.1.1.

  • Can not add intercom button to phone template in cucm 8.5

    For some reason I can not add the intercom button to phone template in cucm 8.5 

    Hi Matthew,
    You may be seeing this (it's older info);
    Intercom Support for Cisco Unified IP Phones
    Cisco Unified IP Phone Model
    SCCP
    7931
    7941
    7941G-GE
    7942
    7945
    7961
    7961G-GE
    7962
    7965
    7970
    7971
    7975
    You can check your version;
    Intercom Support for Cisco Unified IP Phones
    The list of devices that support the Intercom feature varies per version and device pack.
    Use the Cisco Unified Reporting application to generate a complete list of devices that support the Intercom feature for a particular release and device pack. To do so, follow these steps:
    1. Start Cisco Unified Reporting by using any of the methods that follow.
    The system uses the Cisco Tomcat service to authenticate users before allowing access to the web application. You can access the application
    –by choosing Cisco Unified Reporting in the Navigation menu in Cisco Unified Communications Manager Administration and clicking Go.
    –by choosing File > Cisco Unified Reporting at the Cisco Unified Real Time Monitoring Tool (RTMT) menu.
    –by entering https://:8443/cucreports/ and then entering your authorized username and password.
    2. Click System Reports in the navigation bar.
    3. In the list of reports that displays in the left column, click the Unified CM Phone Feature List option.
    4. Click the Generate a new report link to generate a new report, or click the Unified CM Phone Feature List link if a report already exists.
    5. To generate a report of all devices that support Intercom, choose these settings from the respective drop-down list boxes and click the Submit button:
    Product: All
    Feature: Intercom
    The List Features pane displays a list of all devices that support the Intercom feature. You can click on the Up and Down arrows next to the column headers (Product or Protocol) to sort the list.
    Cheers!
    Rob

  • Can not add a picture to the JFrame from an ActionListener class

    As topic says, I can not add a picture to the JFrame from an ActionListener class which is a class inside the JFrame class.
    I have a Map.java class where I load an image with ImageIcon chosen with JFileChooser.
    I my window class (main class), I have following:
    class OpenImage_Listener implements ActionListener
         public void actionPerformed(ActionEvent e)
              int ans = open.showOpenDialog(MainProgram.this);     // "open" is the JFileChooser reference
              if(ans == open.APPROVE_OPTION)
                   File file = open.getSelectedFile();                    
                   MainProgram.this.add(new Map(file.getName()), BorderLayout.CENTER);     // this line does not work - it does not add the choosen picture on the window,
                            //but if I add the picture outside this listener class and inside the MainProgram constructor, the picture apperas, but then I cannot use the JFileChooser.
                            showMessageDialog(MainProgram.this, fil.getName() ,"It works", INFORMATION_MESSAGE);  // this popup works, and thereby the ActionListener also works.
    }So why can�t I add a picture to the window from the above listener class?

    The SSCCE:
    Ok, I think I solved it with the picture, but now I cannot add new components after adding the picture.
    Look at the comment in the actionlistener class:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Test extends JFrame{
         JButton b = new JButton("Open");
         JFileChooser jfc = new JFileChooser(System.getProperty("user.dir"));
         Picture pane;
         Test(){
              super("Main Program");
              setLayout(new BorderLayout());
              JPanel north = new JPanel();
              add(north, BorderLayout.NORTH);
              north.add(b);
              b.addActionListener(new Listener());
              setVisible(true);
              setSize(500,500);
              pane = new Picture("");
              add(pane, BorderLayout.CENTER);
         class Listener implements ActionListener {
              public void actionPerformed(ActionEvent e){
                   int ans = jfc.showOpenDialog(Test.this);
                   if(ans == jfc.APPROVE_OPTION)
                        File file = jfc.getSelectedFile();
                        Test.this.add(new Picture(file.getName()), BorderLayout.CENTER);
                        pane.add(new JButton("NEW BUTTON")); // Why does this button not appear on the window???
                        pane.repaint();
                        pane.revalidate();
         public static void main(String[] args)
              Test t = new Test();
    class Picture extends JPanel
         Image pic;
         String filename;
         Picture(String filename)
              setLayout(null);
              this.filename = filename;
              pic = Toolkit.getDefaultToolkit().getImage(filename);
            protected void paintComponent(Graphics g)
                super.paintComponent(g);
                g.drawImage(pic,0,0,getWidth(),getHeight(),this);
                revalidate();
    }

  • Can not add games to iPod touch 4g...

    Can not add games to iPod touch 4g from ITunes (PC) it worked befour new update but why not now..

    I can now transfer apps including games to my ipod from windows pc in Itunes. I click on ipod tab on the left hand side then click on the apps tab then tick the box at the top to sync and now i can drag and drop apps. No apps or music was lost, still all on my ipod touch, but it did mix my apps up so i had to sort them out. I don't know why it did not work, no setting where change, but the update might of change it.

  • Can not add function to pages-document created with Applescript

    If I create new document using the GUI (New document) I can place the cursor within any table-cell, type "=" (equal sign) and f.e. "2+2" which will result in a cell showing a "4".
    If I create a document with Applescript, I can not add new functions (neither by typing = nor by using Insert >> Function (may be different, I have German version here). Already existing functions (which already were in the template) can still be used and work as expected but can not be altered.
    Any idea?
    I use Pages '08, Version 3.03
    Code I used to create the document:
    tell application "Pages"
    launch
    make new document at front with properties {template name:templateName}
    # Angebotsnummer ins Dokument schreiben
    tell body text of front document
    make new paragraph at after paragraph 1 with data angebotsNr
    set paragraph style of paragraph 2 to "Überschrift"
    end tell
    # Datei abspeichern
    set dateiName to missing value
    repeat until dateiName is not equal to missing value
    set dateiName to text returned of (display dialog "Datei Name:" default answer angebotsNr & "_" & kundenName) as text
    end repeat
    save front document in angebotsOrdner & dateiName
    end tell

    I apologize but the given script can't run.
    The variable templateName is undefined.
    The variable angebotsNr is undefined too.
    About the described behavior, it's a bug which I never discover before.
    It's always striking in Pages '09.
    Here is the report which I filed :
    Bug ID# 8704270
    Summary:
    +Odd behavior of tables in Pages documents created by a script+
    +Steps to Reproduce:+
    +Run this huge script+
    +tell application "Pages"+
    +make new document at front with properties {template name:"Blank"} (* "Vierge" on French systems *)+
    +end tell+
    +Insert a table+
    +try to insert a formula+
    +Expected Results:+
    +I assumed that I will get the formula editor which I get when the document is created by hand+
    +Actual Results:+
    +There is no way to get the editor, no way to insert the equal character.+
    +This odd behavior strike in all versions of Pages '09 and Pages '08+
    Regression:
    +None to my knowledge+
    Yvan KOENIG (VALLAURIS, France) dimanche 28 novembre 2010 11:30:29

  • Can not add pictures to my website

    When I edit my website on (bluedomino.com) I can not add pictures I receive an error message - an error has interrupted communication between your browser and the website server. Bluedomino looked at the problem and could not resolve said it was firefox issue. I switched over to Int.Explore and I have no problem it also seems to run faster. I have no problem viewing my web sites all the pictures display I can't add new ones. I'm able to upload the pictures to bluedomino but can not insert them on the edit page or post them.

    Hello solidroq,
    This can be worked around by creating a version of the video that is compatible with your iPod.
    Select a video and choose File > Create New Version > Create iPad or Apple TV Version.
    iTunes: Videos may be unable to sync to iPhone, iPad, or iPod
    http://support.apple.com/kb/TS1497
    Cheers,
    Allen

  • Can not add entries to iCloud synced calendar on iphone

    I can not add new entried to my iPhone Calandar that is suposed to sync up to iCloud. (Adding via iCal on MacBook Pro is OK)
    I am also stil not able to just completely delete my iCould account from my iPhone.
    Realy frustrating. Any help appreciated. (Suggestions for a reset  are NOT, as I have been reset my phone at least 50 times over the last few days already)
    Is there a way to completely reset/clear an iCloud account?
    Why does the iPhone insist on trying to contact iCould if I want to remove the account from my phone?
    G.

    the bug seems to be in the handshake between the phone and icloud - i cloud needs to know the phone is off the cloud, but you can't connect to icloud from the phone to tell it, because there is a bug. it appears some people have been able to get decent tech support from apple - I have not.

  • Can not add movie to itune

    Hi,
      I just set up new itunes for ipod touch but i just can not add movie file (mp4) to library in itunes. Please help! Thanks so much!

    Make sure you're looking for it in the Movies or TV Shows libraries, or do a search for it by name.
    Did you check if the format is compatible with iTunes (QuickTime plays more formats if you have add-ons)?
    "but when I open that file with itunes"
    This statement confuses me as your point 1/ says you can't find it in iTunes.

  • Can not add photos to my photo stream.

    This morning I started my computer and got the following error.
    I get the error on my PC
    My Photo Stream can't be updated
    iCloud Photos can't update because you don't have permission to add files to download folder.  Open iCloud to pick another folder.
    then I get the error:
    The upload folder for iCloud Photos is missing
    The upload folder for iCloud Photos had been moved or deleted.  Open iCloud to pick a new folder.
    As far as I know, nothing has changed on my computer.  I can not add anything to the iCloud Photos folder.

    harryhal wrote:
    unable to add individual photos to individual albums.
    Best I can tell it's either because that wouldn't work on the iPad, or they haven't enabled it.
    Select a Photo (or Photos) in the Photo Stream and click the + button on the toolbar. You can then choose which Albums to Add it to.

  • Can not add Exceptions to Transparent proxy

    Hello all,
    I am sure this is simple but I can not figure out what has changed to cause this. Currently, I can not add items to the exception list in HTTP Transparent Proxy.
    I only see refresh and close buttons on the screen - no Apply changes.
    I have 2 BM servers and one I have access to without issues but the other does not work.
    It definitely worked at some point in time because it has 25 entries but has since stopped.
    What am I missing?
    Thanks,
    Steve D.

    sjdimare wrote:
    > Here are the details:
    >
    > Both servers are identical in configuration (other than ip addresses):
    >
    > NW 6.5 SP7 and updated TCP
    > BM 3.9 SP2 (tweaked per CJ website)
    >
    > Both servers exist in their on OU which is partitioned
    >
    > The server that is working currently only has 17 exceptions but I do
    > not think it is a # of exceptions issue.
    >
    > While in iManager, if I select Proxy Services, on the main page the
    > buttons on the bottom of one server shows "Apply Changes, Backup and
    > Close" while the non-working server only has " Refresh and Close". This
    > seems to indicate to me that their is a rights or roles issue in
    > iManager that did not exist before but I can not figure out where.
    >
    > Thanks for your assistance.
    >
    > Steve D.
    >
    >
    1. Tid 3506678. Apply Changes button is missing in the iManager server
    configuration proxy screen
    Be aware of the issue when you manager a bm server from non local
    iManager instance. Tid 7001625:Apply changes button not submitting changes

  • Can not add videos to my ipad 2

    I have a the app called Telestrator, I'm trying to add sports videos to teach with, I can not add them to my ipad via iPhoto or iTunes, I have tried several videos conversions but keep getting the "the video is not playable on this iPad"

    Hello solidroq,
    This can be worked around by creating a version of the video that is compatible with your iPod.
    Select a video and choose File > Create New Version > Create iPad or Apple TV Version.
    iTunes: Videos may be unable to sync to iPhone, iPad, or iPod
    http://support.apple.com/kb/TS1497
    Cheers,
    Allen

  • Can not add item to the shopping Cart with FireFox 8.0

    I can not add items to the shopping cart with Firefox 8.0. Switch to IE everything works then.

    Such details are stored in a cookie, so make sure that you do not block cookies on that site.
    *Tools > Page Info > Permissions
    You can inspect and manage the permissions for all domains on the <b>about:permissions</b> page via the location bar.
    *http://kb.mozillazine.org/Cookies
    *http://kb.mozillazine.org/Websites_report_cookies_are_disabled

  • Can not add items to the dock

    I can not add icons to the dock, I am able SOMETIMES to edit the dock (moving icons around or delete them), there is no rule, sometimes I can grab the icon on the dock, and sometimes I just can't (I have the pop up when I can't) , I deleted users/username/library/preferences/com.apple.dock.plist and issued a killall dock command, with no difference.
    any help will be appreciated

    Welcome to Apple Discussions.
    The Dock did not return to default on that command?
    Try again and also delete username/Library/Preferences/com.apple.finder.plist
    If it's still no-go create a new User go to System Preferences >> Accounts >> "+" (make it an admin acct) and test the Dock in this new account, if it works the problem is isolated to your User and not systemwide.
    Let us know.
    EDIT: Also are you running any enhancement software?
    -mj
    Message was edited by: macjack

  • My computer crashed. So does this mean I can not add any more music to my ipod from a different computer without all the songs being erased? Can I sync my ipod to a new computer if I allow all the songs to be erased?

    My computer crashed. So does this mean I can not add any more music to my ipod from a different computer without all the songs being erased? The ipod works fine and now i got a new computer. So it seems like my only options are leaving my ipod in a state where i cant add anymore songs or erasing all my songs and trying to use my ipod from my new computer. Can someone please inform me on how to have my ipod work from a different computer, even if i have to erase my songs. Thanks.

    Yes, if you choose the Erase and Sync option (or restore your iPod) you will be allowed to sync your iPod with the new computer.
    If you would like to save the content that's currently on your iPod, see this older thread from another forum member Zevoneer discussing the different ways to copy the content on an iPod back to your PC.
    https://discussions.apple.com/thread/2417169?start=0&tstart=0
    B-rock

Maybe you are looking for

  • Calendar - How can I expand the recurrences of a recurring item in ItemAdding event receiver?

    When a user add a new recurrence event to a calendar I want to check if any of the recurrences overlap with events already in the calendar. I saw the property Recurrences Data and its XML but I didn't find a way to translate that value to dates I can

  • My iTunes won't recognize my new iPod touch

    i just got a new ipod touch for christmas.  when i try to sync it to my itunes, which isn't updating by the way, it doesn't recognize the device.  if i uninstall itune completely and reinstall it, will this help?

  • Is this a new usage in PL/SQL?

    Hi friends, Today I've tested new features in 11G, and read the Document "Oracle Database 11g: The Top New Features for DBAs and Developers" and when I come to page 226 chapter PL/SQL Performance, I see this code as follows: alter session set plsql_w

  • No RFC authorization for function group RFC2

    When I am trying to import RFCs/IDOCs from ECC to XI in the integration repository, I am getting this error: User has no RFC authorization for function group RFC2. Any input is appreciated. Thanks, tnv

  • BW ESTIMATION MODEL- Effort Estimate

    Hi Gurus,           As i am creating a BW estimation model I have put the following effort for complexities for differnt tasks. Please suggest if you think the estimation should be differnt to what I have estimated as I am a rookie in these area.