FWSM can not show sessions in xlate between two specific vlans

Dear Experts ,
I have FWSM running version 3.2(23) , configured with interface vlans , all having the same security level , except outside interface vlan which has security level 0 , also same-security-traffic permit inter-interface and same-security-traffic permit intra-interface are configured, my problem is when establishing sessions (I tried TCP only using ssh and telnet , in addition of ping ) from one specific vlan (172.16.1.0/28)  to other vlan (172.16.1.16/28) , I can not see the established sessions  in "show xlate debug" output ! although I can see these sessions from capture !  the two subnets are separate , two different /28.
I can see the session established from the remaining interface vlans with same security level toward  172.16.1.16/28 , my question is what is the exception with vlan having this subnet172.16.1.0/28, how it can reach other vlan with subnnet 172.16.1.16/28 without showing anything in xlate table ? do you thing it is bug ? please advise
Regards

Red1,
Need to make sure the packets are arriving on the correct interface.  Need to grab captures and the debug level syslogs at the same time. Hope you are not running into the xlate limitation of the module.
Pls. check the limitation link here:
http://www.cisco.com/en/US/docs/security/fwsm/fwsm32/configuration/guide/specs_f.html#wp1056716
-Kureli
https://supportforums.cisco.com/community/netpro/expert-corner#view=webcasts
Upcoming Live Webcast in English: January 15, 2013
Troubleshooting ASA and Firewall Service Modules
Register today: http://tools.cisco.com/squish/42F25

Similar Messages

  • JMStudio Error  "Can not create session manager"

    Hi,
    I'm trying to transmit an mpg file through a simple pc to pc network, using the transmission wizard in the JMStudio, and everytime it causes a "can not create session manager" error, even when I try to transmit .mp3 file
    I'm using an ip like 100.100.0.1 for the sender machine, and 100.100.0.2 for the receiver machine, and I don't know where is the problem
    thanks in advance

    Um,maybe the port that you use for transmission is already occupied.
    Make sure that you are not using JMStudio to transmit streams while trying to receive streams from the same port.

  • My Startup Disk can not show in Finder.

    My Startup Disk can not show in Finder.but it can be used in OSX normally.
    So can I put it back to Finder?

    If the startup disk is for Mac OS 9, neither MacBook nor PowerMac G5 can boot into 9. Only the PowerMac G5 can use Mac OS 9 in Apple menu -> System Preferences -> Classic.
    Please be more detailed what sort of Startup Disk you are talking about, which operating system, and which machine this is a problem with.

  • Can not show Address of BP in XL reporter

    Hi all!
    I don't undersatnd why i can not show address of BP in XL reporter although i have already entered these information for address.
    Thanks!

    If you use the report composer to create your report:
    Drag the business partner object into the report view an then make right-click --> display more attributes and than choose the adress fields you want to display
    Hi !
    I have already used this way before i create new thread but Address is stll not showed. You can test in your Database
    I'm using SAP B1 2007A Pl42
    Thanks!

  • I am a Taiwanese. My iPod nano can not show the lyrics

    My iPod nan can not show the lyrics.It will be like"ifhfjdghuiadhghjkbdbdjkbdgdnkjn589d567g564h54df+.......................... "
    Why?
    How to solve it?

    Right->click on these tracks in iTunes and choose Get Info.  Then head to Lyrics tab.  Are the correct lyrics listed there?
    B-rock

  • Lightroom 4.1 can not show text correctly

    lightroom 4.1 can not show text correctly when publish in PDF and blurb format
    the text can be show correctly in JPEG format
    but lightroom 4.0 can show correctly with the same book.
    i cant publish my book on blurb now

    I don't think LR4 adjustments can be directly sent to CS4, because CS4 cannot interpret LR4's new processing engine.
    I think you have to use Edit In... and create a TIF or PSD and send those to CS4

  • Can not show applet in jeditorpane

    Hi,
    I want to load a Web page which contains an applet into a JeditorPane, but I found the applet can not show in the editorpane.
    I use the following statement to create a JEditorPane
    JEditorPane htmlpane = new JEditorPane("http://sulu.informatics.indiana.edu/6S/network/");
    The static text is showing, but the applet graph is always missing. Do I need to do something else? Please help me!

    JEditorPane's abilities to show HTML are very limited. It doesn't support CSS, JavaScript, applets and many other things. You'll need a real browser component for that.

  • Itunes can not show chinese characters.

    My Itunes can not show chinese characters, they are all blocks, while I can re-type in the chinese name of the song in Itunes, then it works.
    The same as Japanese, some time it can show Jap, while sometime can not. How can I solve this problem. My computer is Mac system

    Do you have such problem only with Chinese characters?

  • HT201210 my iphone can not show home scene, keep showing plug in to the itunes

    my iphone can not show home scene, keep showing plug in to the itunes, tried restore buy fail, error 3941

    update to latests version of itunes if you have
    then uninstall it
    reboot and resintall

  • Why this tree can not show on the Applet?

    hi, all, I try to create a java Applet show a tree, this following code has no error, but the tree can not show on the Applet, can any one tell me why? thanks!
    <code>
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.awt.dnd.*;
    public class AppletApp extends Applet {
         Date myDate;
         protected JTree m_tree = null;
         protected DefaultTreeModel m_model = null;
         protected JTextField m_display;
         public void init() {
         public void paint(Graphics g) {
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("root");          
              DefaultMutableTreeNode node1 = new DefaultMutableTreeNode("node1");          
              root.add(node1);                    
              node1.add(new DefaultMutableTreeNode("sub1_1"));                         
              node1.add(new DefaultMutableTreeNode("sub1_2"));                                        
         public static void main(String arg[]) {
              JFrame myFrame = new JFrame();          
              Container contentPane = myFrame.getContentPane();
              contentPane.setLayout(new GridLayout(1,2));          
              AppletApp app = new AppletApp();          
              contentPane.add(new JScrollPane(app), BorderLayout.CENTER);     
              myFrame.addWindowListener (new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              app.init();
              app.start();
              myFrame.setSize (400,400);                              
              myFrame.setVisible(true);          
    </code>

    Not quite sure what you are trying to do, but if you move the code from the paint() method into the init() method (then delete your paint() method), then add one new line to the init() method (after the code you just inserted) that reads:
    getContentPane().add(new JTree(root));
    - You should at least see a tree!

  • G580 Lenovo Solution Centre can not show me the warranty period

    For some reason, the program Lenovo Solution Centre can not show me the warranty period, as the model of the motheboard is not detected ... On the site of Lenovo - product registered as a detective in the Netherlands.
    How do I register my laptop and what could be the problem?
    ps:
    BIOS - 5ECN96WW
    Product number: 2189

    hi musto,
    Welcome to the Forums.
    The Lenovo Solutions Centre Requires the serial number to show the warranty information. If the software is not able to read it, this may be the problem.
    You may get the latest version below and you may register the product using this link.
    Lenovo Solution Center for Windows 8 (64-bit), 7 (64-bit)
    lscsetup_x64_22002.exe
    Released: 15 Aug 2013
    Version: 2.2.002
    32.4 MB
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Hello there - how can I share my iTunes library between two users on the same computer? I put the library in a shared folder between both and have selected this library on both as well, but when I update iTunes with music etc it only appears on one?

    Thank you Joe - I tried this but it's only showing a teensy amount of music - the stuff on the second users account as opposed to the giagntic library on the 'main' account. I actually went to a Genius Bar and they said that apple doesn't really want you to share music between accounts - parents don't want to hear their kids music etc. Which seemed strange, but it might be the case sadly   Thanks anyway!

  • Dont want to show the divided line between two rows in a Grid.

    Hello Friends,
    I want a Grid in which I want multiple rows but i dont want to show the divided line between two rows.
    It is just like a grid on Territories form(Administrator->SetUp->General->Territories)
    Thanks.

    Mithun,
    The component you're talking about is not a grid, and that component is not exposed by the UI API so you cannot use it.
    Regards,
    Vítor Vieira

  • How can I insert a vertical line  between two underlined unfilled with text lines.  I am trying to construct an invoice and I need a break.  If I try any of the shapes or inset functions it eliminates my underlined lines and shifts the whole document.

    I am trying to construct an invoice.  How can I install a vertical line between two or more underlined lines to create a break.  I have tried the insert, shapes and nothing works.  If I try any of the functions the whole document shifts to the right and I loose some of the lines.  Is there a work around, or is I work not able to do what I want?   
    Thanks
    Armand

    It sounds as though you may have "Object Causes Wrap" activated for the Line Shape. This will push other content away.
    See the Wrap Inspector.
    Jerry

  • How can I make a server differ between two or more clients?

    How can I make a server differ between two or more clients?
    The clients can connect and talk to the server fine, but how can I make the server talk to one, two or all clients? i.e. what would be a good way to implement this?
    Currently, the server listens for connections like this:
    while (listening) {
    try {
    new ServerThread(this, serverSocket.accept()).start();
    I guess one way would be to add the ServerThreads to a Hashtable with the client ID as key, and then get the ServerThread with the proper client ID, but this seems unnecessary complicated. Any ideas?

    Complicated was perhaps the wrong word, I should have
    written something like it doesn't "feel" right. Or is
    this a common and good way to solve communication
    between a server and multiple clients?Thats pretty much how I do it. I normally use an array or ArrayList of Sockets instead of HashTable, with [0] being the first player etc.... Then you can communicate with exactly who you want. If you want to send bytes to all of them, just send the same thing to each socket individually (or is there a better way to do this?).

Maybe you are looking for

  • Editing Text in Acrobat Pro 9.

    I have been trying to edit text in Acrobat Pro 9 using the touchup tool. Nothing happens when I try to type text or replace existing text. I have read that the system font must match the text in the PDF in order to change the text. According to the p

  • HT1338 How to see photos slide show in macbook?

    How to see photos slide show in macbook?

  • Error a12e1 in CC installer

    I get the error a12e1 when trying to install CC desktop installer. I recently formatted the disk and had a CC installed on that disk, didn't have the chance to remove it and i don't know if its related to it. Nevertheless, I tried several things with

  • Is there a substitute for the Adobe flashy layer for the iPad?

    When trying to open an attachment from an e-mail on my iPad, I cannot do so without an Adobe flash player,  which isn't possible.  Any alternatives?

  • Not starting: what do I do?

    Last night, my battery died. No big deal. I plugged it in this morning (the orange light appeared on the input) and tried to start it, but nothing happened. I let it charge for a bit, but still got nothing. I looked for answers here and tried to rese