Multiple Subinterfaces on same context.

Hi,
I'm having a difficult time finding examples where there is a multi-context ASA using multiple subinterfaces under the contexts. I'm running 5585-X SSP-10 in my network.
We have a license for 20 contexts, currently only using a quarter of those context. Issue is, the way they set this up was only one subinterface per context, and that's how they want to keep.
I'm already charged with adding three new vlans to our firewall for migrating some devices off our old network to our new one. Issue is if we keep doing that we're going to burn through all these contexts in no time.
I'm assuming you can have multiple vlans going to the same context with multiple subinterfaces. That being said, I would assume you can block the traffic from two vlans on the same context from each other.
Can anyone link me to some configuration examples for multiple subinterfaces, and an example of what the access rules on the same context might look like for two vlans with different subnets?
Thanks.

I feel you are overthinking this. If you have setup an ASA interface before then setting up subinterfaces in a context is not much different (other than having to allocate the interface to that given context)  Then you configure the interface on the context as you would any other interface.
Your configuration would look like this:
changeto system
interface Gig0/0
no shut
int Gig0/0.1
vlan 10
ing Gig0/0.2
vlan 20
context A
allocate-interface Gig0/0.1 - Gig0/0.2
changeto context A
interface G0/0.1
security-level 100
nameif inside
ip add 10.10.10.1 255.255.255.0
interface G0/0.2
security-level 0
nameif outside
access-list TEST-ACL permit ip 10.10.10.0 255.255.255.0 any
access-list TEST-ACL2 permit ip any host 10.10.10.10
access-group TEST-ACL in interface inside
access-group TEST-ACL2 in interface outside
Please remember to select a correct answer and rate helpful posts

Similar Messages

  • Multiple war with same context root

    Dear all,
    I would like to know if it's possible to have several war in an EAR file with a same context root?
    I know that it is possible to have several war but I don't know if it's possible to share the same context root.
    The problem here is that the application on which we work is provided by another company, hence we have an original EAR containing the company war as well as the company EJB. As new versions of the application are delivered to us quite frequently, it's impossible to store the code developped by us in the EAR, as it is replaced in each delivery.
    Concerning our custom code, it is not a problem as we develop this code in a separated project which is included as a jar in the APP-INF/lib directory of the EAR file.
    But concerning the war it's an other problem. Indeed, we develop custom JSFs pages or javascript. These files are placed in the application war file which changes for each delivery.
    Thus, we would like to create an other war file which will contain all our custom pages and javascripts in order to be able, in each delivery, to fully replace the other war containing the company pages and javascripts. This would allow us to save time each time a new delivery is done.
    The important thing would be to keep the same context root for the two wars, enabling transparency for the application.
    Thanks for your help,
    Citrouille57

    Hello,
    this is possible in IBM Websphere via custom extension: http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/tprs_sharing_data.html
    I don't know if it's possible somewhere else.
    k.

  • How to configure multiple virtual hosts for the same context root /

    Hi,
    I am using Glassfish V1 U1 - b14 on Solaris.
    I am trying to configure two applications to be mapped to the / root context, each one in its own virtual host.
    Two things I have noticed:
    1. I have to manually add virtual-hosts="hostId" in domain.xml/application-ref ... looks like just simply deploying the app does not do that although the application is set as default for its particular virtual host. Is this a bug?
    2. Although I have set for each virtual host the default web-app correctly, and they both respond fine, I cannot map both of them to the / context. The second application (chronologically deployed) does not respond when called with the / context ....
    Any ideas? Is this a bug again?
    Regards,
    Rares
    Message was edited by:
    raresp

    Wow, that's a shame. All mighty Application Server and two different apps on two different virtual hosts are considered ambiguous to have the same context root definition.... Fair play to Tomcat and 90% of the rest of servlet containers!
    In my case I have the same EAR we are planning to deploy to many (up to 30) virtual hosts. Faking different context roots for each deployment will bring unnecessary overheads...
    Should I file a bug or feature request?
    Thanks again for your answer, although you're basically saying it is not possible I will wait and look a while for a possible solution before bringing this topic to a conclusion.

  • How to restrict login for multiple users having same Role

    Our Web Application is deployed on Tomcat 5.5
    The requirement is ?
    There are roles in application like "operator", "admin"?
    There are multiple users created for each of the above role.
    When one user of "operator" role is logged in, then
    It should not allow to login for another user of "operator" role.
    Also, if user did not log out & application gets close, then
    It should not allow to login for another user of "operator" role.
    Also, it should not allow to login for multiple requests of same user
    (using another browser instance...)
    Is it possible using session object?
    But, using session object, it will create separate objects for different users,
    So here I will not be able to restrict session object creation rolewise.
    Also, how to retrieve these multiple session objects created for different users on server?
    If anyone is having the solution please reply as soon as possible,
    Thank you.

    To tell you the truth, this is a stupid requirement. It must be an extremely fragile application.
    In any case, you will have to write your stuff for that. Probably a filter that on login, logout, and session expiration checks, makes, or removes entries in a DB (using a synchronized resource to prevent race conditions) or possibly even simply in an application context object.

  • How to set multiple values in one context-attribute

    Hi all,
    Anybody knows a possibility to set multiple Values to a context-attribute?
    I know it how to get it with the following code:
    String break[]= request.getParameterValues("break");
    Now I want to do something like:
    request.setParameterValues(break[no]);
    where no is a counter in a loop.
    With the Method setAttribute(), I overwrite the previous inserted value.
    Thanx
    Robert

    I have not explizit declared break as an array.
    It is the Context- Attribute I want to send. I thaught that I can use it as an array in the same way I can do it when I send Data from an HTML- Form (with multiple values) to an servlet.
    I don't know how to declare the Attribute explizit as an array.
    that it is you wanted to know?
    I think my main problem is to get an array from the servlet to the jsp. Is there an other possibility (other than via Context-Attributes) to do that?
    thanx
    robert

  • Same context root conflict.

    I'm try to run multiple instances of an application running on the same box (each on their own managed server) but use the same context root (/servlet)
    e.g.
    server1 -> /app -> /servlet
    server2 -> /app2 -> /servlet
    Currently how I do it is give each of them their own servlet name, e.g
    server1 -> /app -> /servlet
    server2 -> /app2 -> /servlet2
    I'm trying to make the urls for each instance as simple as possible. I can already see potential instances where the server#, app#, and servlet# would all be different numbers.
    If I set them to both servlet weblogic throws me this error:
    Exception:weblogic.management.ApplicationException: prepare failed for app2 Module: app2 Error: Context path '/servlet/' is already in use by the module: app application: app
    * [Deployer:149033]preparing application app2 on server2
    * [Deployer:149033]failed application app2 on server2
    * [Deployer:149034]An exception occurred for task [Deployer:149026]Deploy application app2 on server2.: Exception:weblogic.management.ApplicationException: prepare failed for app2 Module: app2 Error: Context path '/servlet/' is already in use by the module: app application: app.
    Any help that you can provide will be greatly appreciated.

    Hello,
    this is possible in IBM Websphere via custom extension: http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0/index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/tprs_sharing_data.html
    I don't know if it's possible somewhere else.
    k.

  • Web services and servlets in same context

    I would like to provide web services and servlets under the same context, where the servlets are handled by a controller mapped to multiple urls.
    If I map the servlet controller with
    <url-pattern>/servlet</url-pattern>
    then /prjServ/servlet works in a browser but of course any other urls (eg /prjServ/servlet/fred) do not.
    If I change the web.xml to be
    <url-pattern>/servlet/*</url-pattern>
    all attempts to access the servlet get requested resource not available.
    The web service continues to work fine whichever mapping I use for the servlet (the web service is /prjServ/mlm).
    Does the web service handling affect the way I can map the servlets?

    No, it should not. For the JAXRPC SI, the web services are implemented
    via one common servler.

  • How can I print multiple copies of same photo onto one page on iPhoto 9.5.1?

    How can I print multiple copies of same photo onto one page on iPhoto 9.5.1? I was able to do it on the old iPhoto, but can't seem to be able to do it on the new iPhoto. Grrr...

    Photos does the same thing.... Only workaround I can come up with is to create a template in Pages and copy &amp; paste.

  • How to update software on multiple iPhones using same iTunes account?

    How to update software on multiple iPhones using same iTunes account?

    SeanB15 wrote:
    Here are more details on my situation which should help clarify things...
    I purchased three iPhone 4 models back when they first came out (for my family) that all share the same iTunes account for access to apps and music, but each phone/user still has his/her custom contact list, email accts, and select lists of apps and music from the one iTunes acct library.  The problem is (as I understand it) that I can only update the software on one of the three iPhones – the primary phone I used to setup the iTunes acct without wiping out the separate contact lists, etc. As it stands today... the first (primary) iPhone associated with the iTune acct has been updated with the latest software version 5.1.1 and sync'd up with all the apps, music, etc from the one iTune acct, while the other two iPhones are still running on the original software version 4.0.2 and are experiencing problems now. I was advised by AT&T back in January that it would be necessary to setup separate iTunes accts for the second and third iPhones in order to receive system updates and still be able to manage separate contact lists, etc. If I go this route, I assume we will lose all the apps on phones #2 and #3 that we have been "sharing"... correct? Since this AT&T advice was prior to iCloud coming out, would iCloud be a better solution or at least part of the solution? I really don't yet understand how iCloud works. Hopefully, one of you can help me??
    we have 2 iphone 4's synced to the same itunes account for apps and music since the day we bought them, but each has a different icloud acct. they have both been updated on the same itunes account with every update that has come out since we bought them in december of 2010. nothing on either phone has ever been lost or duplicated. having said all that, maybe i'm missing something here, but we have had no problems. we do have itunes setup to sync manually. i do believe i'm a piker compared to lawrence finch, but i'm just telling you what happens in my house. maybe check with apple? is there a store near you?

  • How to use/sync single data (file) across multiple instances of same application

    Currently we have an application (a diagram editor), that have the ability to save and load (serialize) its state in a xml file.
    Now we want this application to behave like Microsoft OneNote application. Where multiple users have the ability to access the same file.
    Later we may also need to enhance with other things like, (1)what is changed and who changed it, (2)option to resolve conflicts if any.
    I came to know about sync framework to resolve this. so far, i have not tried it.
    All i want is,
    Virtually single file should be edited by multiple instances of same application.
    We need a dll (sync framework) that does following
    It takes complete responsibility of file handling.
    Using this dll, each instance of the application will notify their own changes.
    Each instance of the application should have the ability to detect the changes that is recently made (when, who, what are the changes).
    My question:
    Will sync framework be suitable for this requirement?
    If so, is there a demo application that represents this?
    - Jegan

    Seems like I have found the solution.
    In the taskflow there is a property named data-control-scope and I set it to isolated instead of the default (shared) and this seemed to do the trick.
    I can now have two instances of the same taskflow running with different ApplicationModules
    Cheers,
    Mark

  • Multiple copies of same emails

    Hey,
    My problem started few days ago, I received multiple copies of same emails (about 5 copies/email). Now I tried to delete those copies using the plugin (Remove multiple messages) but it doesn't seem to delete. Still shows same amount of emails (about 35000), about 28000 needs to be deleted, in my inbox folder.
    So when I try to get new emails, it says hard-drive is full etc... it isn't full. Webmail works great, but only have the latest 7days emails.
    I'm using POP. please help to fix this fast.

    Were you able to resolve this problem? I have the same issue, but on a macbook pro.

  • Multiple copies of same photo on same page seems to assume A4?

    I'm trying hard to work out how to print out multiple copies of the same picture. I want to get 2 copies on each 4x6" sheet of photo paper and have followed all the steps...
    Selected 1 picture, hit print, went to Settings, selected "Multiple of the same photo per page".
    I then went to Print Settings, selected Borderless 4x6 (yes, the printer works fine with that usually - HP Photosmart C4280) and set the Print Size to 2x3 and the preview shows the 2 copies of the same photo side-by-side no problem.
    So I hit OK, clicked on Print and...
    It's not aligning with the left hand side of the 4x6 - it's not respecting the selected paper size. If I put in a sheet of A4 to test, the 2 pictures come out in the centre of the page (in the requested size). So as a result I can't print on the 4x6 paper as most of the picture gets printed on nothing!
    Am I doing something wrong or is this some kind of bug in either iPhoto or the HP printer driver? Anyone had any success with this? If so, what kind of printer were you using?

    Jemster:
    Here's the workflow I used to get 2 2x3s on a 4x6:
    1 - select photo & click on print button
    2 - select 4x6 borderless and 2x3 print size
    3 - click Customize button
    4 - click on settings button
    5 - select "Multiple of same photo per page" (after clicking OK two photo are shown on the preview)
    6 - click on the Print button.
    Where I differ is that I don't go back to Print Settings to select the 4x6 paper size after Step 5. Give that a try.
    NOTE: Do a Print to PDF to check it out instead of printing on paper. That will save some paper in case it doesn't work.
    That gives me two photos on the 4x6. I'm using a Canon i850. I also get the same results with an Epson R280.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • How do you share Aperture file across multiple users on same Mac?

    How do you share Aperture file across multiple users on same Mac? Seems this should be a preferences choice.

    When you share your library between users, you may run into permission and ownership problems, if both users are editing the Aperture library and not only reading it. To avoid that, it helps to put the Aperture library onto a separate disk or a separate partion of your hard drive. For s separate partition or disk you can enable the "ignore ownership on this volume" flag. Then all users can access the library as owners of this library.
    You might try to put the aperture library into a shared folder on your mac, but that has caused problems recently, i.e. when the library also contains video files.
    Regards
    Léonie

  • How to create multiple instance on same database

    Hi ,
    I would like to know how to create multiple instance on same database . I know that some people use database configuration assistant to do this but i could not figure out how they did it.
    Any how if some one can help me with this and can give me links of this it would be great help for me.
    Thank you for reading my problem and helping me !
    Amil
    please if possible mail me on [email protected]

    How to create multiple instance?????Do you mean multiple instances on the same database, or multiple databases on the same machine ?
    I m new to this field....
    Willin to learn a lot about oracle....Then it wouldn't be bad reading a bit of Database Concepts

  • TS4006 can you have multiple phones on same user email

    can you have multiple phones on same user email

    If you mean can they share the same iCloud account, yes.  Just be aware that when multiple devices share the same iCloud account, any data they sync with the account will be merged and the merged data will appear on all of the devices.  Also, any action taken on one device (such as adding or deleting contacts) will also be taken on all other devices sharing the account.  Finally, the iCloud backups of all the devices will share the same iCloud storage space.

Maybe you are looking for

  • Opening a pages document in Word

    Hi there. I am mainly using Pages to edit documents that have been generated in Word by other computers. I have no problem opening and editing these files but when I am finished, is there a way of saving them so that I can email them back to the othe

  • Betreff: T440s - Only 1024x768 on external monitor (DVI, Ultra Dock, Win8.1/Win7)

    EDIT NOTE: This message was moved to the top of the thread in order to assist us with an escalation. For all future post and commments please continue posting in this thread. One more victim here.  T440s (fully patched, UltraDock, lid closed, externa

  • Cp5 Project version control

    Hi all Can anyone recommend best practice for version control in Cp5? In other documentation I'm in the habit of saving the version number in the file name, but with Captivate, if there are links to projects, changing file names with every edit will

  • INPUT_FILE_NO ERROR

    Hi When I am trying to run package using sap delivered  process chain to load master data from BI infoobject (0company) to a dimension  it is throwing error: "cant find Input_file_no".   how to resolve it." thank in advance Mahi

  • Exporting Help Please

    Alright im really new to macs and imovie hd. I want to export my movie ive made into quicktime format and want it to be a little under 100mb cause i want to upload it to youtube. Now i want good qaulity video and sound. How to you go about setting st