Need help with routing - 2 ASA's in one site

Hi all,
I'm sort of a newbie to all this so sorry if im not clearly asking this the right way.
In the office, we have an ASA used as primary internet, which is on the 10.55.152.0/29 network
Im currently trying to bring up a secondary ASA for back up internet, which is on 10.55.152.8/29 network
My issue is that i cant seem to ping the inside interface of the secondary ASA for backup internet.
The core switch these connect to is a Nexus 5548.
Is there any sort of routing i need to do on the Nexus, or even on the second ASA?
Thanks!

You posted the questions 20 minutes ago? Why are you bumping it. People answer questions when they know the answer.
I tend to ignore people who expect an immediate answer.

Similar Messages

  • Need help with LAN Architecture - ASA/IPS, and ISR placement

    Dear friends, I am new to Cisco community, had no previous experience with managed networks and desperately need an advice setting up a LAN for my small business. Here is what I did so far:
    ASA w IPS is facing internet, has a webserver connected to DMZ and then ISR on the inside interface. ISR is used for running CCME/CUE VOIP and VLAN NAT. Switch is connected to the ISR with a trunk interface. I setup multiple VLANs with ACL to separate engineering/management/sales/fileserver. Inter VLAN routing is enabled on the switch to allow Gigabit routing from the Fileserver VLAN to the Engineering VLAN.
    I know this is probably overkill for a 4 people company, but my objective is to be ready for possible attacks form both outside and inside and to ensure business continuity and minimal service interruptions.
    My question, would it be more practical to connect ASA directly to the switch and do VLAN NAT on the ASA instead of the router? This way if router fails, I loose VOIP but not Internet and if ASA fails, I only loose internet, while phones will stay operational. This approach should also let me use ASA IPS to monitor inter VLAN traffic, so if 1 of the user PCs gets infected, hopefully IPS will contain the damage to a single VLAN.
    What would experienced network architect do in my case? Any suggestions?
    Please, forgive me if I misunderstood something or did something silly, as this is my first network setup (not including household grade routers)
    Thank you very much in advance!

    Thank you for your response!
    I still keep debating if it has any advantages to use a Router in between ASA and the switch, or should I connect switch directly to
    ASA, so the only function of the router is to run VOIP?
    I saw multiple network diagrams which all had a border router, then ASA then switches. In my case router runs VOIP and I would want it to be behind ASA. Any benefits of running internet traffic through both ASA and a router?
    For redundancy, we can’t really afford 2nd ASA at this time, for now I would want to make sure there is as little chance as possible that both phones and internet go out simultaneously. 

  • Need help with routing a network in VMware.

    I have one network with the IP of 192.168.2.10. A router is setup with two networks. The first network has an IP of 192.168.2.3 and the second network has an IP of 192.168.3.2. Then there is one final network whose IP is 192.168.3.10. My goal is to set
    up route table entries and have all the networks be able to ping each other. The route table entries I am referring to is the
    route -p add command. If someone could help me understand what entries I should input so all the networks can ping each other, that would be great. Thanks. If you need a picture of the network, I have a diagram. 

    Hi Brandon,
    A diagram or picture will help us to understand your case.
      For dump file or other logs which do not contain the sensitive information, you can still use OneDrive to share them so that other community members can also provide help in analysis.
      If you concern personal information or company related information in logs, we recommend to send log files to our forum email account: [email protected]
    Regards,
    D. Wu
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Need Help With hp psc 1350 all-in-one, Please.

    Good morning.
    The subject printer, purchased in January 2004, has done a great job over the years, but recently has encountered a number of problems.  They may have started with several problems with my Windows XP Home Edition SP3 (loss of sound, Security Center not opening, etc.).  It begin with an alert that I did not have a valid Windows image for C:\ProgramFiles\HP\hpcoretech\HPcompMgr.dll.  Today, when trying to print something off  the net I got another alert that HPZEN609.exe - bad image.
    I have discovered that my HP Printer is no longer under warranty support, etc.  Plus, my computer was built in 2003, so maybe both are going bad.  But, I thought someone here might have experienced the same printer problems and know how to correct them. 
    Your help would be appreciated.
      Thanks,  Scotirish         12/13/11    11:45 a.m. EST

    Good morning.
    The subject printer, purchased in January 2004, has done a great job over the years, but recently has encountered a number of problems.  They may have started with several problems with my Windows XP Home Edition SP3 (loss of sound, Security Center not opening, etc.).  It begin with an alert that I did not have a valid Windows image for C:\ProgramFiles\HP\hpcoretech\HPcompMgr.dll.  Today, when trying to print something off  the net I got another alert that HPZEN609.exe - bad image.
    I have discovered that my HP Printer is no longer under warranty support, etc.  Plus, my computer was built in 2003, so maybe both are going bad.  But, I thought someone here might have experienced the same printer problems and know how to correct them. 
    Your help would be appreciated.
      Thanks,  Scotirish         12/13/11    11:45 a.m. EST

  • Need help with input, parsing, and loop in one program

    I am doing an assignment that is supposed to:
    # ask the user for a URL
    # For the entered URL, read all the HTML text from the page and extract all links (other URLs) and image names. These should be printed to the console window.
    # Reprompt for a URL until the user presses the cancel button.
    # Define at least one helper method that serves a practical purpose that your main method will use. Note that your method(s) should serve a useful purpose, and it should make sense that they are separated out from the main method.
    So far, I figured out how to ask if the user would like to play again, though I can't make it loop to play again. The "NO_OPTION" works fine and exits out.
    I cannot figure out at all how to ask for the URL and then use that URL to try to parse the HTML to find the links and pictures.
    for the loop, is it:
    do{
    ...//all the stuff//
    }while (option == JOptionPane.YES_OPTION) ?(I think I have to parse, looking for "img src" and "a href", anyway)
    The biggest thing I'm getting hung up about is where to start. All it'll do is ask for the URL, say there is an error, and ask if I want to do it again. Don't know how to make it loop again. Like I said, I think it's a do while loop but am not completely sure where it goes and how to have it work on the entire thing with message dialoge boxes
    To ask for the input, I was trying to make the dialoge box a string so the string would be displayed and have the links extracted
    String linkString=   
              JOptionPane.showInputDialog("Please enter a URL:");...but it obviously doesn't work like that...
    Here is the whole mess so far...I don't know what my question is because I know what I want, just not the terms to ask. help?
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.URL;
    import java.net.URLConnection;
    import javax.swing.JOptionPane;
    public class WebPageExaminer
         public static void main(String[] args)
              String linkString=   
              JOptionPane.showInputDialog("Please enter a URL:");
        String link = null;
        URL url;
        URLConnection urlC;
        InputStream inStream;
        InputStreamReader inStreamReader;
        BufferedReader reader;
        try
        url = new URL(link);
        urlC = url.openConnection();
        inStream = urlC.getInputStream();
        inStreamReader = new InputStreamReader(inStream);
        reader = new BufferedReader(inStreamReader);
        String inputLine = reader.readLine();
        while (inputLine != null)
          System.out.println(inputLine);
          inputLine = reader.readLine();
        catch(Exception e)
          JOptionPane.showMessageDialog(null, "Error reading from file");
        } int answer = JOptionPane.showConfirmDialog(null, "Examine Another URL?", "Click Yes or NO:", JOptionPane.YES_NO_OPTION);
        if (answer == JOptionPane.NO_OPTION)
             System.out.println("Goodbye");
             System.exit(0);
              if (answer == JOptionPane.YES_OPTION)
                  System.out.println("OK!");
    }Edited by: digital.tradecraft on Mar 14, 2009 1:27 PM

    You posted the questions 20 minutes ago? Why are you bumping it. People answer questions when they know the answer.
    I tend to ignore people who expect an immediate answer.

  • Helpdesk Agent Needs help with JAVA applet not loading for HTTPS site

    Sorry....I am posting here as I do not know where to start.
    JAVA Console Message. The applet runs via HTTP URL but will not load via HTTPS. Any idea would be much appreciated.
    load: class com.ebreviate.auction.applet.TickerTape.class not found.
    java.lang.ClassNotFoundException: com.ebreviate.auction.applet.TickerTape.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-7" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-com.ebreviate.auction.applet.TickerTape.class" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    load: class com.ebreviate.auction.applet.graph.LineGraph.class not found.
    java.lang.ClassNotFoundException: com.ebreviate.auction.applet.graph.LineGraph.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    Exception in thread "Thread-6" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception in thread "thread applet-com.ebreviate.auction.applet.graph.LineGraph.class" java.lang.NullPointerException
         at sun.plugin.util.GrayBoxPainter.showLoadingError(Unknown Source)
         at sun.plugin.AppletViewer.showAppletException(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

    I am repeating the question that RHM submitted...has anyone found a solution to this issue...Applet com.pogo.client.jvmtest.applet started. I was not having a problem and then out of no where on Sept. 13 my game rooms failed to load and this message started appearing. I have done everything asked of me to clear files both Internet and Java, to uninstall, re-install, etc...nothing works. Does anyone have an answer for a very non technical user?

  • NEED HELP WITH MY ACCOUNT!!!​!!!!!!!!!

    Hi, I REEEAAALLLY need help with my account, I only have one account and never made another one but it says I'm not on a administrator account, it says I have an unknown type account, and I can't figure out how to make it an administrative account, what should I do?
    -Dexter

    Hi, I REEEAAALLLY need help with my account, I only have one account and never made another one but it says I'm
    not on a administrator account, it says I have an unknown type account, and I can't figure out how to make it an
    administrative account, what should I do?
    -Dexter

  • Purchased extreme to replace modem/router DSL used telephone cord need help with set up

    Prior to purchasing Airport Extreme had a standard modem/ wireless router from ATT for DSL. I have two macbooks both dropped connections while online with older modem.
    Airport Extreme purchased to correct connection issues I need help with set up. The older modem just used telephone cord. I tried to use telephone with extreme it did not work.
    How do I get extreme to work as the modem and router ?

    How do I get extreme to work as the modem and router ?
    you can't. the extreme is only a router. you need a separate modem (or disable the wireless part of your old router and use it as a modem - if that's possible).

  • Need help with Airport Express and so on.

    Ok so my main problem before getting into what I need help with here is that our MacBooks and now my iPhone 6 plus isn't staying online. Keep getting booted off and then I either have to select the network again or it will eventually go back on. If anyone has a solution or so please feel free to answer that as well. I'm running on Roadrunner with a Netgear 600 wireless router and a motorola modem. Both of which I'll leave the link to below for a better look.
    My Main Question: So I'm looking at a new wireless router mainly and possibly a new modem. I know Apple products are trustworthy but how good is the Airport Express and other Airport products. Also what is the Maximum speed and Maximum data speed for the cheapest express station and if anyone knows the speeds of the other devices it would be greatly appreciated.

    DSL Router to Netgear 5-port Switch and I used the switch to connect to Airport Extreme, TV, Blue-Ray DVD player and DirecTV Receiver.
    The AirPort Extreme base station (AEBS) is a router so it will do what you need.
    You need to reconfigure your setup. Connect the WAN port of the AEBS to the DSL router. Then connect the Netgear switch to one of the LAN ports on the AEBS. The AEBS will properly share the connection.

  • Need help with a WRT54GS V5.1

    i need help with my WRT54GS V5.1 wireless router. it cannot connect to the internet and i don't know why. at the moment i have to use an ethernet cable coming from a virgin media modem. information that might be usefull. one of the antennas on the router is broke i am using windows vista on a toshiba laptop. the model is WRT54GS V5.1 thanks for people who help note: i am only 13 so somethings you say i might not understand.

    Access Setup page of router .....
    Click wireeless tab .... have a note of the wireless settings on that page .... Please click on the tab "Application and gaming" and click on sub
    tab "Port range forwarding"
    1) On the first line in Application box type in "Xbox", in start box
    type in 88, in end box type in 88, in protocol keep it both, in ip
    address type in 192.168.1.20 and give a check mark on enable box.
    2)   On the second line in Application box type in "Xbox", in start box
    type in 3074, in end box type in 3074, in protocol keep it both, in ip
    address type in 192.168.1.20 and give a check mark on enable box.
    3) Now save the settings
    4) Once you return to the setup page, click on the tab "Administration"
    and disable the UPNP and save the settings.
    5) Now assign the given ip address on your xbox
       ip address :- 192.168.1.20
       subnet mask :- 255.255.255.0
       default gateway :- 192.168.1.1
    Please assign the dns address on the xbox
      primary dns :- 4.2.2.2
      secondary dns :- 192.168.1.1
    6) Please try to test your xbox live.

  • HT201269 I'm not a tech person, but need help with my Itunes account in transferring money and downloads onto new phone I purchased 2 weeks ago when my Iphone was stolen. I don't know how to get the money or music on new phone?

    Need help with Itunes transferrs and can I use my Edge phone as a router?

    I'm not a tech person, but need help with my Itunes account in transferring money and downloads onto new phone
    Is this an iPhone?
    Set it up using the AppleID you used on the previous iPhone.

  • I think I need help with driver (software) settings for D110a

    I think I need help with driver (software) settings for D110a all-in-one
    Product: D110a all-in-one
    OS: Windows XP Professional
    Error messages: None
    Changes before problem appeared: None--new installation
    The quality of photo images (mostly JPG files) in printouts is awful even though the files display beautifully on the PC screen. I am using
    IrfanView software for displaying/printing. As far as I can tell, IrfanView is not the problem.
    When I print the same images on a Deskjet 5150 attached to a different PC also running XP Pro and IrfanView, the quality of the printouts is at
    least acceptable, Some would probably say good or very good.
    It's dificult to explain in words the problem with the printouts. A picture of really pretty vegetables (squashes, tomatoes, watermelon, etc) comes
    out much too red. Moreover, the red, which appears shaded on the screen, seems to be all one shade in the D110a printouts.
    Something similar happens to a view of a huge tree in full leaf. On screen, there are subtle variations in the "greenness" of the leaves. In the
    printout, all green is the same shade. In the same printout, the trunk of the tree is all a single shade of grey. It isn;t even obvious that the
    trunk is a round, solid object.
    I liken the effect to audio that disappears entirely when you lower the volume and gets clipped into square waves in even moderately loud passages.
    I don't know whether the D110a driver software permits adjusting the parameters that appear to be set incorrectly, and if adjustments are possible,
    how I would identify which parameters to adjust, how I would access them, or how I would adjust them. I'm hoping that someone can help. Thanks.
    I forgot to mention that I have used the diagnostic application and it tells me that there are no problems.
    e-mail me at [email protected]

    brazzmonkey wrote:
    Hi everyone,
    I noticed the following message when network starts on my gateway
    Warning: This functionality is deprecated.
    Please refer to /etc/rc.conf on how to define a single wired
    connection, or use a utility such as netcfg.
    Then I realized the way network settings should be written in rc.conf has changed. But I can't figure out how this should be done.
    Currently, my set up is the following (old way):
    INTERFACES=(eth0 eth1)
    eth0="dhcp"
    eth1="eth1 192.168.0.10 netmask 255.255.255.0 broadcast 192.168.0.255"
    ROUTES=(!gateway)
    eth0 is on DHCP because the IP is dynamically assigned my ISP.
    eth1 has a fix IP because it's on the LAN side.
    No problem to use DHCP on eth0 with the new settings.
    But for eth1, I don't know what I am supposed to write for gateway.
    Wiki isn't clear on that one either, and it looks like many articles still refer to the old way.
    Any guidance appreciated, thanks.
    brazzmonkey,
    you can't define 2 interfaces the old way (even though I saw some tricky workaround somewhere in the forums).
    Use, f.e., netcfg:
    Comment your old lines.
    In /etc/rc.conf insert:
    NETWORKS=(Eth0-dhcp Eth1-static)
    DAEMONS=(..... !network @net-profiles ....)
    In /etc/network.d create 2 files:
    First one is named  Eth0-dhcp.
    Contents:
    CONNECTION="ethernet"
    DESCRIPTION="Whatever text"
    INTERFACE=eth0
    HOSTNAME="your hostname"
    IP="dhcp"
    DHCP_TIMEOUT=15
    Second one is named Eth1-static.
    Contents:
    CONNECTION='ethernet'
    DESCRIPTION='whatver'
    INTERFACE='eth1'
    HOSTNAME='hname'
    IP='static'
    ADDR='192.168.0.10'
    GATEWAY='192.168.0.1' # your gateway IP
    DNS=('192.168.0.1') # your DNS server
    The names Eth0-dhcp and Eth1-static are not magic. They just must be the same in rc.conf and in /etc/network.d.
    Hope it helps.
    mektub
    PS: netcfg must be installed.
    Last edited by Mektub (2011-07-20 14:07:05)

  • NEED HELP WITH WORKFLOW CONFIGURATION

    I need help with 3 situations below. Please help me with these. How do I configure these. I also haveto provide specs to the Abaper. What exactly do I need to include in the specs. I anyone has the specs similar to these please send me over. Also tell me what I need to do to get these requirements fulfilled.
    1)  Description:
    This is a workflow requirement to serve as a reminder of upcoming investment
    maturities.
    Requirements Details:
    Create a workflow to serve as a reminder of upcoming investment maturities.
    Donor System Processing Narrative:
    Read the maturity dates on investments.
    Target System Processing Narrative:
    Send a notice to the parties that an investment will be maturing soon.
    2)  Description:
    Implement workflow to route invoice receipts using a one time vendor for management
    review and posting
    Desired Functionality:
    If a one time vendor is entered by the AP Voucher Clerk the invoice will be automatically
    parked by the program and a workflow notification triggered to the Accounting
    Supervisor and Accounting Manager (backup). The Accounting Supervisor will review
    the parked document and imaged copy of the actual invoice and post the parked
    document.
    3)  Description:
    An approval workflow is needed for credit memos posted to SAP customer accounts.
    Desired Functionality:
    The Cash Journal Clerk will post a credit memo to the customer account using transaction
    FV75 Park Customer Invoice. This transaction will automatically trigger a workflow to
    the Accounting Manager for approval and then to the CFO who will approve and post the
    parked document. (In order for this transaction to automatically trigger what configuration needs to be done).

    Bob;
    You can borrow the example code that ships with both NI-DAQ (in case you are doing NI-DAQ function calls) and Labview. The best examples to start with are the ones that have the prefix STC.
    Hope this helps.
    Filipe A.
    Applications Engineer
    National Instruments

  • Need help InterVlan Routing on SF300-24P? .

    Hello
    I really need help with Inter vlan routing via Kerio Controll 7.4.1.
    I have several SF300-24P switches (IOS 1.3.0.62) and i have created a several VLAN's.
    Vlans: Vlan 10, 100, 200 and interface vlan 213 (for management).
    I can ping hosts in the same Vlan via this switches. From switch to host, port is in access mode and between switches ports is in Trunk mode
    (also i had a problem here, trunk wasn't working untill i used command: switchport trunk allowed vlan add all).
    Also port is in Trunk mode between KERIO and SW1 (switch). interface is in TRUNK mode from switch's side because i don't know how configure interface TRUNK mode on kerio.
    On kerio i have configed one physical interface with IP - 172.16.0.1 255.255.255.0 and on the same interface i have created
    VLAN 10, VLAN 100 and VLAN 200.
    static IP's for this interfaces:
    10.0.0.1 255.255.255.0 VLAN 10
    192.168.100.1 255.255.255.0 VLAN 100
    192.168.200.1 255.255.255.0 VLAN 200
    On KERIO i have created DHCP Lease for each VLAN, but i cannot get IP's from DHCP. So i assigned static IP's  to computers
    (for example for VLAN100 PC, VLAN 200 PC and so on) but they cannot ping each other when they are in different vlans, so inter vlan routing itsnot working. but with static IP on the PC, i can ping every VLAN's IP address on KERIO.
    so pls tell me how i must configure inter vlan routing on kerio, is it possible?
    or what must i do? where is my mistake? maybe when i put IP on pysical interface?
    here is my configs and pls help and give me config example.
    config-file-header
    SW1
    v1.3.0.62 / R750_NIK_1_3_647_260
    CLI v1.0
    set system mode switch
    file SSD indicator plaintext
    vlan database
    vlan 10,100,200,213
    exit
    voice vlan oui-table add 0001e3 Siemens_AG_phone________
    voice vlan oui-table add 00036b Cisco_phone_____________
    voice vlan oui-table add 00096e Avaya___________________
    voice vlan oui-table add 000fe2 H3C_Aolynk______________
    voice vlan oui-table add 0060b9 Philips_and_NEC_AG_phone
    voice vlan oui-table add 00d01e Pingtel_phone___________
    voice vlan oui-table add 00e075 Polycom/Veritel_phone___
    voice vlan oui-table add 00e0bb 3Com_phone______________
    hostname SW1
    username administrator password encrypted 7fc3774d79570c81cda124d5dcf80b8ae0fcdd6c privilege 15
    username cisco password encrypted 1defefd1f4a214009775b2c2b6b961a77da384b5 privilege 15
    interface vlan 10
    name Staff
    interface vlan 100
    name Cards
    interface vlan 200
    name AP's
    interface vlan 213
    name Management
    ip address 172.16.213.1 255.255.255.0
    no ip address dhcp
    interface fastethernet1
    description MANAGEMENT-VLAN
    spanning-tree disable
    switchport mode access
    switchport access vlan 213
    interface fastethernet2
    spanning-tree disable
    switchport mode general
    switchport general acceptable-frame-type untagged-only
    interface fastethernet3
    spanning-tree disable
    switchport mode general
    switchport general acceptable-frame-type untagged-only
    interface fastethernet4
    spanning-tree disable
    switchport mode access
    switchport access vlan 200
    interface fastethernet5
    spanning-tree disable
    switchport mode access
    switchport access vlan 200
    interface fastethernet6
    spanning-tree disable
    switchport mode access
    switchport access vlan 100
    interface fastethernet7
    spanning-tree disable
    switchport mode access
    switchport access vlan 100
    interface gigabitethernet1
    description Direction-To-SW2       <--- This port is Trunk, but its not showing here for some reason.
    spanning-tree disable
    interface gigabitethernet2
    description Direction-To-KERIO  <--- This port is Trunk also.   i used: switchport mode trunk on both interfaces
    spanning-tree disable
    exit
    banner login 
    SW1
    config-file-header
    SW2
    v1.3.0.62 / R750_NIK_1_3_647_260
    CLI v1.0
    set system mode switch
    file SSD indicator encrypted
    ssd-control-start
    ssd config
    ssd file passphrase control unrestricted
    no ssd file integrity control
    ssd-control-end cb0a3fdb1f3a1af4e4430033719968c0
    vlan database
    vlan 10,100,200,213
    exit
    voice vlan oui-table add 0001e3 Siemens_AG_phone________
    voice vlan oui-table add 00036b Cisco_phone_____________
    voice vlan oui-table add 00096e Avaya___________________
    voice vlan oui-table add 000fe2 H3C_Aolynk______________
    voice vlan oui-table add 0060b9 Philips_and_NEC_AG_phone
    voice vlan oui-table add 00d01e Pingtel_phone___________
    voice vlan oui-table add 00e075 Polycom/Veritel_phone___
    voice vlan oui-table add 00e0bb 3Com_phone______________
    hostname SW2
    username administrator password encrypted 7fc3774d79570c81cda124d5dcf80b8ae0fcdd6c privilege 15
    username cisco password encrypted 1defefd1f4a214009775b2c2b6b961a77da384b5 privilege 15
    interface vlan 10
    name Staff
    interface vlan 100
    name Cards
    interface vlan 200
    name AP's
    interface vlan 213
    name Management
    ip address 172.16.213.2 255.255.255.0
    no ip address dhcp
    interface fastethernet1
    description MANAGEMENT-VLAN
    spanning-tree disable
    switchport mode access
    switchport access vlan 213
    interface fastethernet2
    spanning-tree disable
    switchport mode general
    switchport general acceptable-frame-type untagged-only
    interface fastethernet3
    spanning-tree disable
    switchport mode general
    switchport general acceptable-frame-type untagged-only
    interface fastethernet4
    spanning-tree disable
    switchport mode access
    switchport access vlan 200
    interface fastethernet5
    spanning-tree disable
    switchport mode access
    switchport access vlan 200
    interface fastethernet6
    spanning-tree disable
    switchport mode access
    switchport access vlan 100
    interface fastethernet7
    spanning-tree disable
    switchport mode access
    switchport access vlan 100
    interface fastethernet8
    spanning-tree disable
    switchport mode access
    switchport access vlan 100
    interface gigabitethernet1
    description Direction-To-SW1    <--- This port is Trunk also.   i used: switchport mode trunk
    exit
    banner login 
    SW2
    i have excluded many interfaces because hey have same configs.

    Yes Kerio is capable for routing. i wanted to make InterVlan routing via kerio Ccontroll, but i can't and that's i asked here, i need to know reason.
    I have modified 1 switch to L3, and inter vlan routing its now working (without Kerio) and i hope this switches dont have problem when they are DHCP server also.
    thanx for help. I Hope i didnot have much mistakes in config.

  • I need help with my wifi text. I can't use them

    I need help with my iPhone 4. I can't text since. I get wifi in my house ?

    What is the make & model of the wireless router that you are trying to extend with the WN3000RP? Can any other wireless clients connect to the extended network, just not your iMac?

Maybe you are looking for

  • Creating pl/sql procedure problems

    Dear all, I have problems with creating a procedure which select returns more then one row. CREATE OR REPLACE PROCEDURE ECM_DATA.check_padrones_datos IS   v_padron_check   VARCHAR2(50);   v_padron_number   VARCHAR2(50); BEGIN    SELECT count(pd.estad

  • Invisible lines on

    My Creative MuVo v200 came and when turned it on there are some missing Lines on LCD, what can i do?I?ve alredy sended it to Creative but when it came it was same as when i sended..waf? Pls , help me

  • Validate Biztalk schema Element field value

    HI Experts, I have a scenario here, i have an incoming xml file and i need to validate the data in the xml. for Ex- <elementvalue>name1,name2,name3,name4</elementvalue> Is there any thing to do in biztalk to validate name1,name2,name3,name4 agnist th

  • 11.1.4 and 11.1.5 not working in windows 7 64bit

    I updated to 11.1.4 and experienced the same problems as many others- uninstalling and re installing eradicated the error messages but the store never opened and my phone would not sync. I've up graded to 11.1.5 and now it is freezing, crashing- incl

  • How to transfer all iTunes Library in PC to my new iMac?

    I used to store everything in my PC with Windows XP operating system. Now I buy a new iMac and want to transfer all iTunes data to the MAC? The old PC will no longer be used. Could any one teach me how to do that? Thanks. For I am a new guy in iMac,