ACE - Traceroute showing same IP for each hop

I'm having problems with traceroute on my servers sitting behind our ACE module. The module is in routed mode and is performing all NAT to the Internet.
When I try to traceroute to any external IP, each hops answer has the same IP address (final destination IP).
Servers not behind the ACE do not have this problem.
I've turned ICMP-Guard off and opened ICMP up on every interface with an permit icmp any any ACL.
Any help would be appreciated.

You have to configure...
!-ACL defining ICMP-
access-list ICMP line 10 extended permit icmp any any
!-Class Map referencing ACL-
class-map match-all ICMP-INSPECT-L4CLASS
description ICMP fixup - L4 Class
2 match access-list ICMP
!-LB Policy which is applied on your client side vlan.
!-Add the class statement and switch on imcp inspection
policy-map multi-match L4-SLB-POLICY
class ICMP-INSPECT-L4CLASS
inspect icmp error
!-Client Side VLAN-
!-Apply the service police otherwise use your existing policy-
interface vlan 3104
service-policy input L4-SLB-POLICY
Hope it helps
Roble

Similar Messages

  • How do I convert a power point document to a pdf where it will show the notes for each slide?

    How do I convert a power point document to a pdf where it will show the notes for each slide?

    To get the 'handout view' with a slide and the speaker notes on the same page, you have to save the PDF file directly from PowerPoint (the later versions of Microsoft Office can make PDF files without the help of Acrobat).

  • Can I plot 2 locations at the same time for each record in a table

    I'm trying to plot 2 Locations (2 points on a Power View Map) at the same time for each record/project in a table
    I can plot 1 location for each project of course with no problem
    but I'm trying to show the Begin Point and the
    End Point for each project at the same time
    Is this even possible?

    First of all THANKS this worked!
    But now I stumbled on another issue. So I actually have 3 tables (and I've adopted them to the file you sent)
    Table 1 => TripData
    Trip
    LongLat
    Location
    Type
    TypeCode
    Size
    NW Tour
    47.568077, -122.320800
    Seattle, WA
    Begin
    0
    1
    NW Tour
    47.035608,   -122.884812
    Olympia,   WA
    End
    1
    1
    Cali Trip
    37.808848, -122.412580
    San Francisco, CA
    Begin
    0
    1
    Cali Trip
    32.682611, -117.178348
    San Diego, CA
    End
    1
    1
    Table 2 =>
    TripInfo
    Trip
    OneLongLat
    NTP
    NW Tour
    47.568077, -122.320800
    1/1/2015
    Cali Trip
    37.808848, -122.412580
    1/5/2015
    Table 3 =>
    ALLTrips
    Trip
    Stop
    Owner
    NW Tour
    1
    Owner1
    NW Tour
    2
    Owner2
    NW Tour
    3
    Owner3
    NW Tour
    4
    Owner4
    NW Tour
    5
    Owner5
    Cali Trip
    1
    Owner6
    Cali Trip
    2
    Owner7
    Cali Trip
    3
    Owner8
    Cali Trip
    4
    Owner9
    Cali Trip
    5
    Owner10
    Cali Trip
    6
    Owner11
    This is how the Diagram View looks like in PowerPivot
    Trip Data => Trip Info <= ALLTrips
    Since I don't know how to post pictures
    The MAP FIELDS are as follows
    SIZE - Count of Stop(s)
    LOCATIONS - OneLongLat followed by
    LongLat (drill down feature)
    COLOR - Trip
    The problem now happens with the drill down feature
    You can either plot OneLongLat which is the general location for each trip
    Or LongLat of each trip which shows the begin and end points
    But you can't use the drill down feature???
    If instead of OneLongLat you use a
    State Column it actually works!!!
    I wonder if it has to do with the fact that both locations used for the drill down are Long/Lat numbers???
    Any suggestions???
    And again Thanks for the response!

  • I have 2 ipad2s on one account. can i share the apps purchased rather than having to purchase same app for each.  I am only user.

    I have 2 ipad2s on one apple/itunes account.  can i share the apps purchased rather than purchase the same apps for each ipad2
    . i am only user.

    .... And you can put them on as many iDevices as you own. There is no limit as long as you use the same Apple ID and iTunes account for all of the devices.

  • Why do i need to buy the same app for each device over and over again??

    why do i need to buy the same app for each device over and over again??
    and why cant i just pay for the app ones for all devices as long at it is with the same account??
    i hate that i have to oay for the same game or app three time one for ipad ones for iphone and ones for mac please do something about that apple..!!!

    First, you posted in the Mac App Store forum which are apps for the Mac OS X, not iOS devices.
    You do not need to re purchase your apps. Connect your iOS devices to your computer, launch iTunes. From the menu bar click Apps then click Sync
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Change field value in a table, based on another field value in the same row (for each added row)

    Please Help, I want to change field value in a table, based on another field value in the same row (for each added row)
    I am using this code :
    <HTML>
    <HEAD>
    <SCRIPT>
    function addRow(tableID) {
    var table = document.getElementById(tableID);
    var rowCount = table.rows.length;
    var row = table.insertRow(rowCount);
    var colCount = table.rows[0].cells.length;
    for(var i=0; i<colCount; i++ ) {
    var newcell = row.insertCell(i);
    newcell.innerHTML = table.rows[1].cells[i].innerHTML;
    switch(newcell.childNodes[0].type) {
    case "text":
    newcell.childNodes[0].value = "";
    break;
    case "checkbox":
    newcell.childNodes[0].checked = false;
    break;
    case "select-one":
    newcell.childNodes[0].selectedIndex = 0;
    break;}}}
    function deleteRow(tableID) {
    try {var table = document.getElementById(tableID);
    var rowCount = table.rows.length;
    for(var i=0; i<rowCount; i++) {
    var row = table.rows[i];
    var chkbox = row.cells[0].childNodes[0];
    if(null != chkbox && true == chkbox.checked) {
    if(rowCount <= 2) {
    alert("Cannot delete all the rows.");
    break;}
    table.deleteRow(i);
    rowCount--;
    i--;}}}catch(e) {alert(e);}}
    </SCRIPT>
    </HEAD>
    <BODY>
    <INPUT type="button" value="Add Row" onClick="addRow('dataTable')" />
    <INPUT type="button" value="Delete Row" onClick="deleteRow('dataTable')" />
    <TABLE id="dataTable" width="350px" border="1">
    <TR>
    <TD width="32"></TD>
    <TD width="119" align="center"><strong>Activity</strong></TD>
    <TD width="177" align="center"><strong>Cost</strong></TD>
    </TR>
    <TR>
    <TD><INPUT type="checkbox" name="chk"/></TD>
    <TD>
    <select name="s1" id="s1">
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    </select>
    </TD>
    <TD><input type="text" name="txt1" id="txt1"></TD>
    </TR>
    </TABLE>
    </BODY>
    </HTML>

    Hi,
    Let me make sure u r working with table control.
    First u have to create a event(VALIDATE) to do the validation.
    Inside the event,
    1. First get the current index where user has pointed the curson
    2. Once u get the index read the internal table with index value.
    3. Now u can compare the col1 and col2 values and populate the error message.
    1. DATA : lo_elt TYPE REF TO if_wd_context_element,
                   l_index type i.
    lo_elt = wdevent->get_context_element( name = 'CONTEXT_ELEMENT' ).
         CALL METHOD LO_ELT->GET_INDEX( RECEIVING  MY_INDEX = l_index.
    above code should be written inside the event.
    Thanks,

  • My inbox used to show the sender for each message and now it does not...how do I get it back to where it was?

    My inbox used to show the sender for each message and now it does not...how do I get it back to where it was?

    Right click the heading at the top of the message list and select From from the list of options.

  • In Cover Flow, a compilation album shows different covers for each song.  How do I make it show one cover for the whole album?

    In Cover Flow, a compilation album shows different covers for each song.  How do I make it show one cover for the whole album?

    Also in the first page of Get Info for all tracks set the Album Artist to be Various Artists.
    If you select all the tracks and right click to get info then you can do all the tracks in one go

  • I imported events from iphoto into aperture and aperture is showing 2 photos for each picture, one original and one edited although none of the photos from iphoto had been edited. Any idea why this has happened and what I need to do to prevent this.

    I imported several events for iPhoto into Aperture3 and in Aperture it shows two photos for each photo imported, one original and one edited although none of the photos imported were edited. Why has this happened and what do I need to do to prevent this in future. I have only recently got Aperture and am trying to learn as I go along using the Focal Press guide. Thanks for any help.

    Ir. Bob wrote:
    A photo that was rotated in iPhoto will also show up as iPhoto edited.
    This is not what I found to be the case in a recent experiment using iPhoto11- I did repeat it to be sure.
    https://discussions.apple.com/message/15586837#15586837
    Quickly, what I found is that only the ones I did actual adjustments on brought over two images.  Images that were simply rotated, had "quick fixes" or "Effects" did not bring in two images.  More importantly, among the ones with adjustments that did bring in two images, the ones with the keyword  "iPhoto Edited" appear to be nothing more than iPhoto's 6MB JPEG Previews.  The master was a 25MB RAW image.
    I don't know why some users are experiencing doubles on everything, but I recommend caution in deciding which ones to remove or you may find yourself deleting masters and keeping previews. 
    DLS

  • Calls listing,  why repetition of the same contact for each call ?

    Calls listing,  why repetition of the same contact for each call ?

    jasonnPOS,
    you seam to have had the exat same problem I am having now. Have you solved it?
    The link you send in your post :
    http://support.apple.com/kb/TS2326
    As I think you already noticed doesn't solve the problem it merly duplicates the numbers in each contact. One with +and country code and one without that...
    There has to be another solution...

  • Can any one help.  I have put music on my phone and its showing lots of the same covers for each song on the album, how do i make it into one album?

    Hi Can anyone help? I have put music on my i-phone but its showing lots of the same album cover for each individual song, how can I create one cover for the album?

    Do you have Sidebar ON?
    iTunes > View > Show Sidebar.
    Connect and select iPhone in iTunes Sidebar under DEVICES, choose the Music tab on the right, select Sync Music and whatever music you the on iPhone. Click Apply (bottom right)

  • Routing issue- seeing same IPs for two hops

    Hello All,
    I'm seeing two same IPs in the traceroute output. Is that due to routing issue that nexhop is as the same device for the first time?
    Log:
    6  10.30.102.26  61.060 ms 10.30.100.142  61.266 ms 10.30.102.26  61.071 ms
    7  10.30.102.26  61.139 ms  61.211 ms 10.61.191.2  60.948 ms
    Can you  guys help me to fix the issue??
    Regards,
    Thiyagu

    Are you load balancing anywhere?
    6 10.30.102.26  61.060 ms
       10.30.100.142  61.266 ms
       10.30.102.26  61.071 ms
    7 10.30.102.26  61.139 ms  61.211 ms
       10.61.191.2  60.948 ms
    HTH,
    John
    *** Please rate all useful posts ***

  • Two idocs of same type for each line item

    I am new to SAP PI and seeking your help in the following scenario
    legacy -> SAP PI -> branched to two idocs in ECC
    The scenario is that a fixed length flat file coming from Legacy wil contain some line items but each line will be a separate invoice ..the twist . since it is a financial posting each invoice(line) has to be posted twice in the same IDOC but different logics  which implies that for each line in the file there will be two IDOCS created in ECC of the same type, where one would be the AR posting and the other would be the AP posting
    How can i make this happen without BPM ??
    I have referred to a blog 1 : n possible in PI without BPM but here it is a combination of 1:n and also splitting of the line and posting it to two IDOCS simultaneously
    since the transformation logics are different  will I  have to create two mappings but how and where to use them ??
    Can I please have someone help me with the steps in ESR ad ID
    Kindly help
    Thanks
    Rohan

    Thanks Prateek i have done that but
    " Map the occurrence of line items to the node Idoc at the target structue and then multiple idocs will be created "
    is what  iam unable to do
    In the mapping  i have to create  two idocs per line item and this is creating  just one
    my source structure is like this
    MT_abc     1.1
    Invoices     1..unbounded
    field 1
    field 2 etc
    and the target is
    ACC_DOCUMENT02 1..1
    IDOC                     1.unbounded
    and i have mapped invoices to IDOC
    now for  testing in the test tab of mapping
    how do i test  if i will have  two IDOC if i get  one line item  ??
    Edited by: RohanS on Jun 18, 2009 2:06 PM
    Edited by: RohanS on Jun 18, 2009 2:08 PM

  • How to show serial umber for each of the record in a table stating with 1.

    I want to show serial number starting from 1 for each of the row in the table. Is there any why to achieve this in OBIEE answers?

    simple.. take a dummy col and put formula RCOUNT(1)

  • Re-writing the same queries for each universe?

    Hello
    For our Xcelsius dashboards, we have 6 customers with the same universe stucture. Our dashboard uses 15 queries (QaaWs).
    Now, for each customer, I have had to duplicate each query then change the universe. This is a pain and I feel there must be a better way.  If I need to change a query for example, I have to change 6, one per customer, even though I am only changing the universe.
    Is there any way around this?
    Thanks
    Eddie

    Eddie,
    What I feel is that you need to link all these universes into one single universe and build those 15 queries.
    Thanks,
    Karthik

Maybe you are looking for

  • Connecting my home dvd player to my iMac

    Is this at all possible? I don't use my television for anything but watching dvds. I would love to be able to get rid of it and just use my iMac for watching dvds. I have a code-free dvd player and a collection that is split between region 1 and regi

  • Need Product key

    I purchased a HP Pailion dv 6516tx notebook. part number GN393PA#ACJ SERIAL: (S)[text removed for privacy] RMN HSTNN-Q33C PACK ID: QCH0114873 BOX ID: H4FN-1MZXG i NEED THE PRODUCT KEY AS I FIND IT DIFFICULT TO USE WORD AND OTHER SOFTWARE. I HAVE TRIE

  • Macbook Pro Retina Display 15'' Late Graphics

    Hello Everyone, 1 Week ago i changed my macbook pro to retina. I just got 2013 Late 15" ones with 512GB SSD 16GB Ram 2.7ghz Cpu and Nvidia 2GB Vram. The problem is i am playing League Of Legends only and just using laptop for daily use web email etc.

  • Weird kernel panics all the time. All debugging information provided...

    Mac mini Core Duo 1,66Ghz. 2x256Mb 3rd party memory. Tested in Hardware Test and memtest (8 times, from single user mode). All tests passed ok. Also, permissions fixed and partition verified Tried with Mac OS 10.4.8 and then after "Archive & install"

  • DMV error 037

    Hi, I am getting DMV error 037 Microsoft SQL Server database connection exception: com.microsoft.jdbc.sqlserver.sqlserverdriver when i am trying ( java -jar dmv\dmv.jar D:\dmv\config\dbInfoss2k.prop d:\dmv\dmvreport.txt ) my classpath is JDBC.ClassPa