Max. number of interface and route for a vrf

Hi all,
for a single vrf how many interface and how many routes can i have?
Does a limit exist? Or it dipends only by the memory capacity of the router?
Thanks in advance
Gianluca

Hi,
there is only the memory and the CPU load of the PE limiting those values.
Regards, Martin

Similar Messages

  • Max number of columns in table for compression

    i was told that 256 columns is the max number in a single table for oracle to do compression on table. Can anyone confirm this ?

    I can't confirm it off the top of my head but if it is the case then it is documented at http://tahiti.oracle.com you can look it up yourself.
    What I do want to weigh in on is the insanity of a table with more than 256 columns. I consider any table with more than 50 columns suspect, more than 100 likely a strong indication that someone understands little about normalization. Anyone contemplating 255+ columns should have their fingers removed from their keyboard by force if necessary.

  • Max number of part appraiser allowed for a 360d appraisal

    Hi, experts,
    i am trying to implement a 360 degree appraisal using OSA framework(part appraisal).
    according to F1 help:
    If you have selected only the Part Appraiser (PAPP) and/or Importance
    Part Appraisal (PWGT) columns in an appraisal template, this is a 360°
    appraisal, and the SAP system does not restrict the number of part
    appraisers allowed.
    in my template, only have PAPP column , but the maximun number of part appraisers allowed is still set to 18. what's wrong? it should be no limit.
    i tried to create a document(using phap_create_pa) , the 18 limitation stop me to add more part appraiser.
    i am so confused, does that mean we can not have a REAL 360 appraisal without limitation for part appraiser?
    thanks and best regards.
    Jun

    hi,
    i traced into the program,  in funciton module
    HRHAP_0DOC_MAX_NO_PART_APPER
    it's quite clear, there is no special logic for 360 appraisal , the formula is always set to :
        no_of_part_appraisers = ( c_column_max_number - l_total_columns )
                                DIV l_part_columns.
    so i think it's not possible to use OSA to depict an REAL 360 appraisal without maximum appraiser limitation.
    the maxi number is (18 -1) / 1 = 17
    which is really a pitty...
    br.
    zj

  • Using ASA 5510 and router for dual WAN Connections.

    Guys, neeed some help here:
    Context:
    1- My company has one ASA 5510 configured with Site-to-site VPN, Ipsec Cisco VPN and AnyConnect VPN.
    2- We use ASA to connect to the single ISP (ISP 1) for internet access. ASA does all the NATing for internal users to go out.
    3- A second link is coming in and we will be using ISP 2 to loadbalance traffic to internet (i.e. business traffic will go via ISP1 and “other” traffic will go via ISP2).
    4- A router will be deployed in front of the ASA to terminate internet links.
    5- No BGP should be used to implement policy (traffic X goes via ISP1, traffic Y goes via ISP2).
    Questions:
    How do I get this done, particularly, how do I tell the router, for traffic X use ISP1 and for traffic Y use ISP2? PBR is my friend?
    Since I will be having 2 public Ip Addresses from the 2 ISPs, how do I NAT internal users to the 2 public Ip addresses ?.
    Finally, which device should be doing the NATing? The ASA just like now or move NATing to the Router?
    Thanks
    Ndaungwe

    Hi,
    Check the below link, it gives information on trasperant fw config and limilations. Based on the doc, you may need to move the VPN /anyconnect to router as well. From the routr end you may be able to set up static routes pointing to diff ISP based on traffic needs but this will be compleicated setup and can break things. Wait for other suggestions or if possible stick to ASA to terminate both links and still route the traffic to diff ISPs (Saves the router cost as well).
    http://www.cisco.com/en/US/partner/products/hw/vpndevc/ps2030/products_configuration_example09186a008089f467.shtml
    Thx
    MS

  • When i try to sign in icloud with different id it says max number of free accounts reached for this device what shall i do

    PLease help me.....i wanna sign in icloud with different account but it says max number of free acconts reached

    Somehow your Apple ID/iCloud account has been used on multiple iOS devices and exceeded the maximum. We have no way of knowing which devices. We are users like you on this forum.

  • Audio interface and software for my 13" MBA?

    I just bought a new Macbook Air, the $999 13" model, and installed OSX Mavericks
    I'm looking to purchase a compatible audio interface and recording/editing software to use with my XLR microphone.
    Any pointers? I just don't want to spend $500 and get home and have it not work!

    I'm quite impressed by Apogee Duet. 2-channel & no MIDI (still does provide some control function with its single knob) which sounds like it suits what you're looking for. Very simple & elegant design, the sound quality is supreme considering its cost.
    Near field monitor of my choice is KRK V8's. Nice natural sounding set of monitors. In comparison to competitors at the price range, these sets 'breathe' & provide a bit more air in sound production without exaggerating any particular freq.
    When it comes down to choosing monitor speakers, go to a local pro audio shop & try out a bunch so you can compare. Just remember to bring test CD that you know well what it should sound like.
    Good luck!

  • Setting network interface and ttl for MulticastSocket

    Hello
    I've tried to set the network interface and the TTL for a MulticastSocket, but it has no effect. For testing I set the TTL to '4' and the network interface to 'lo' (localhost), but everybody in the local area network get my message with TTL=1...
    I use Fedora Core 5 (Linux), with no settings in the iptables.
    Here is the code I used:
    private String networkInterface="lo";
    private String address="239.192.0.5";
    private int port=54321;
    private int mcastTtl=4;
    public void send(){
    InputStream input=getContextClassLoader().getResourceAsStream("something.xml");
    byte[] buffer = new byte[1480];
    int length = input.read(buffer,0, 1480);
    inetAddress = InetAddress.getByName(address);
    nInterface=NetworkInterface.getByName(networkInterface);
    MulticastSocket socket = new MulticastSocket(port);
    socket.joinGroup(inetAddress);
    DatagramPacket packet = new DatagramPacket(buffer, length,
    inetAddress, port);
    socket.setTimeToLive(mcastTtl);
    socket.setNetworkInterface(nInterface);
    socket.send(packet);
    socket.leaveGroup(inetAddress);
    For simplicity I took the Error handling off here, but certainly I have it in my code. No errors, no problems, everybody get the correct message... But not with the settings I made.
    Any tips?
    Thanks:
    Bence

    I'm seeing the exact same thing. It's as if setNetworkInterface() doesn't actually do anything at all.
    java version "1.5.0_09"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_09-b03)
    Java HotSpot(TM) Server VM (build 1.5.0_09-b03, mixed mode)
    OS: Linux kernel 2.6.14.3, CentOS 4.2
    Code example (parts removed for clarity) follows. This code works perfectly when I allow it to attach to the default (eth0) interface. When I try to change the interface it binds to, all packets are still multicast to eth0 ONLY! I see nothing on lo or eth1.
    Properties props = System.getDefaultProperties();
    props.setProperty("java.net.preferIPv4Stack","true");
    MulticastSocket mcs = new MulticastSocket(localPort);
    mcs.setNetworkInterface(NetworkInterface.getByName("eth1"));
    InetAddress group = InetAddress.getByName("230.1.1.1");
    String payload = "This is my payload";
    DatagramPacket dgram = new DatagramPacket(payload.getBytes(),
    payload.length(),
    group, groupPort);
    mcs.send(dgram);

  • Advice on audio interface  and monitors for I-Mac

    My setup is a basement studio. Mac pro, logic pro, Mackie control, motu 896, unitor 8 channel midi, line 6 pod xt pro, lexicon mx 400. Allen & heath board 16.2 wizard, Amps, Drums, Mics. The list goes on. Networked with my I-Mac in my office 2 floors up. So I copy My project folders to my I-Mac. Im very comfortable in my office so I thought I would do my final mix and master in my office. So my question is what would be a decent 2 channel audio interface no midi, and near field monitors maybe 3 to 4 feet away to mix and master. Reasonable. Thanks Bill

    I'm quite impressed by Apogee Duet. 2-channel & no MIDI (still does provide some control function with its single knob) which sounds like it suits what you're looking for. Very simple & elegant design, the sound quality is supreme considering its cost.
    Near field monitor of my choice is KRK V8's. Nice natural sounding set of monitors. In comparison to competitors at the price range, these sets 'breathe' & provide a bit more air in sound production without exaggerating any particular freq.
    When it comes down to choosing monitor speakers, go to a local pro audio shop & try out a bunch so you can compare. Just remember to bring test CD that you know well what it should sound like.
    Good luck!

  • Typical number of CVCs and Matlocs for Sizing

    Friends,
    Can anyone tell me what would be the typical size of APO application?
    I know it varies from company to company but trying to understand what would be the optimal number.
    I have seen anywhere between 6000 to 600,000 SKUs for SNP and about 500,000 CVC's for DP. Please share your experiences  and I am hoping that this thread can be a good resource for people looking to understand the sizing effort of APO application.
    Thanks
    Prod_Planner.

    Hi,
    You are right. It completely depends on the organization, type of manufacturing and so on. It is really difficult to quote any specific numbers.
    I have seen Matlocs of abt 250k and CVCs of about 50k.
    Hope it helps.
    Thanks
    Mani

  • ICM 8.5 and higher : Max number of scripts and CT

    Hey all,
    I was wondering if any of you had encountered limitations in :
         -the number of scripts (both active versions and number of versions you can keep)    
         -the number of call types
    in an ICM 8.5 or higher version system?              

    Thanks for this feedback David.
    Our project is currently still being deployed and we will have about 12000 agents (simultaneous connections). We have not yet done all the scripting as not all the sites are in production yet, but the number of call-types in the end will probably be close to 10000.
    Emmanuelle

  • How to change phone number in Imessage and "waiting for Activation"

    i use my iphone5 - factory unlocked  between two countries with two different sim card. When i am in the USA i can use both my both number and email address to send imessage.
    I notice when i am in jamaica i can use only my email address to send imessage.
    I tried just about everything i see in these forum.
    I signed out of my apple ID and started to reactive my imessage. I notice when i am setting up it displayed my local phone number and email address as method person can contact via imessage. however aster clicking ok, i noticed it is still displaying my att phone number. the phone number area is grayed out.
    I even update the local number to my apple id.
    added the local number also to my contact in the phone.
    I tried everything possible
    also it s saying "waiting for activation" some time now.

    Hello Spum,
    It sounds like you are not able to activate your phone number for iMessage usage when you are in Jamaica.  I recommend following the steps in the section titled "Troubleshooting telephone-number activation (iPhone only)" in the following article:
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • UK - 857 With BT ADSL MAX - Lines become unstable and router require FW upg

    Hi,
    We are starting to see a number of DSL MAX sites running 857 routers becoming unstable, constant loss of sync, re-authentications etc - sometimes up to 400 a day. We called out the Telco (BT) and they tested the line as OK and stable. After swapping the kit three times I spoke with TAC and they provided me with a newer version of the ATM Firmware (2.6.4) - This fixes the problem and stabilises the line.
    My question is - Has anyone else seen this problem in the UK? Are BT rolling out a code upgrade to their DSLAMs or changing some hardware? Is this likely to affect all UK DSL MAX connections in the near future?
    Andy.

    Andy,
    We've likewise seen issues with Cisco 870 routers on BT ADSL lines. I doubt that BT will do any upgrades to their DSLAMs as we've found them pretty unhelpful when it comes to DSL. We're currently rolling out a lot of 870s and I'm going to be upgrading firmware on all of them before deployment.
    Cheers,
    Neil

  • Max number of cells in numbers for iPad?

    I tried opening a large spreadsheet on my iPad and got the error that I had too many cells. I know in excel the limit is per number of rows but does anyone know what the limit is in numbers

    nick_harambee wrote:
    I too can't open a Numbers '09 file on the iPad. Its around 600KB with 7 sheets. Sometimes similar sized files open, sometimes not.
    Is it crashing or is it giving wrong results ?
    I understood that with the late changes it opened but some formulas give odd results.
    I sent the test file to some one which is often on this forum.
    Just hope that he will respond.
    Yvan KOENIG (VALLAURIS, France) vendredi 13 août 2010 22:19:24

  • What to do for Streaming??? : 'axis interface pragma' vs 'pragma for ap_fifo interface and RESOURCE for AXIS'

    Hi all,
    I need streaming interface with accelerator. I followed one tutorial. There I mentioned through pragma that ap_fifo interface will be used along with AXIS RESOURCE. But now I found that there is one option for axis interface in pragma. I want to know what is the difference between this two procedure. It is very confusing. Can I blindly change "ap_fifo interface + AXIS RESOURCE" to "axis interface"??? Or there is some differences?? Which one is hardware optimized.??????

    Depends on the HLS version. In the current tool version, if you are interested in setting up an AXIS interface then the directive to be used in axis.
    void example(int A[50], int B[50]) {
    //Set the HLS native interface types
    #pragma HLS INTERFACE axis port=A
    #pragma HLS INTERFACE axis port=B
    If you are using hls::stream<> then by default the top level interface is implemented as ap_fifo interface. ap_fifo will not support bi-directional access.

  • Turning Modem and Router off for two weeks?

    Would it have an effect on my Infinity profile if I turned off both the modem and router for a couple of weeks?
    I ask mainly due to concern about the Openreach Modem potential for overheating.
    Thanks for any advice. 
    Please Click On any Text in Blue as that automatically links to information.
    PC (NDEGR)
    Solved!
    Go to Solution.

    If switching it off for a fortnight causes any problems , then there are far more serious problems in the network than overheating modems.
    We would never get any elecrical work done in our houses, and what about the occasional elecrical outages we all get from time to time
    Go on be a
    toekneem
    http://www.no2nuisancecalls.net
    (EASBF)

Maybe you are looking for

  • Could someone who has dns set up correctly confirm that this test works?

    The test that's here http://docs.info.apple.com/article.html?artnum=106798 says if you attempt to visit this link: http://17.254.0.91 and you are taken to Apple's page then you probably don't have your DNS set up correctly. Can anyone confirm, who ha

  • Using Apple TV as a multi-room music server

    I am trying to decide whether Apple TV is a good choice for use as a multi room wireless music server. I would rather use Apple TV than say Sonos because I like Apple TV's video capabilities. My decision is going to be largely based on Apple TV's/iTu

  • Using Dreamweaver Templates

    I'm trying to set up a portion of our site using Dreamweaver CS3 so that I can allow others to edit it with Contribute. I've created and applied the template to the pages. One of the things that needs to be included in the template is a virtual inclu

  • Interface Package CHECK

    I expose my problem. I create a specifical hierarchical structure package on CRM7 for test Interface Package Check. This is a representation of my hierarchical structure package :                                                             P1 (Struct

  • About software

    How can I update my Nokia Lumia 625 in to WP8.1 plse help me guys