Help understaning NAT table for SIP

Hi Folks,
I've been battling SIP and NAT for nearly 3 months now   I've got to the point where I think I may well have found a bug in IOS.  Incoming calls are not getting to my CME, outbound calls are fine.  The sip-ua is registered fine.
2611xm-1#show sip-ua register status
Line                              peer        expires(sec)  registered
================================  ==========  ============  ==========
01xxxxx8882                       -1          86            yes
Without a static route, the NAT translation table on the 877 that connects to the internet looks like this:
877va-1#show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
udp 82.70.85.118:1024  192.168.1.254:5060 212.23.7.228:5060  212.23.7.228:5060
No incoming calls come through, but looking at the table, I understand why as the ITSP is routing calls to ports 5060, not 1024.
With this static route:
ip nat inside source static udp 192.168.1.254 5060 82.70.85.118 5060 extendable
The table looks like this:
877va-1#show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
udp 82.70.85.118:5060  192.168.1.254:5060 212.23.7.228:5060  212.23.7.228:5060
udp 82.70.85.118:5060  192.168.1.254:5060 ---                ---
Incoming calls come through, which makes sense as the port is now open!
If I delete the static route, clear the translation table and re-register the sip-ua the table looks like this:
877va-1#show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
udp 82.70.85.118:5060  192.168.1.254:5060 212.23.7.228:5060  212.23.7.228:5060
Calls come through for around 12 hours (probably until something times out and the sip-ua re-registers to the first scenario on port 1024).
Why is the 877 setting up the translation to port 1024 - what can I do to fix this?
My 877 settings are:
no ip nat service sip udp port 5060
ip nat inside source list 1 interface Dialer1 overload
ip route 0.0.0.0 0.0.0.0 Dialer1
ip route 192.168.2.0 255.255.255.0 192.168.1.254
My CME SIP settings are:
sip-ua
credentials username 01xxxxx8882 password xxxxxxxxxxxxxxxxxxx realm voip.zen.co.uk
authentication username 01xxxxx8882 password 7 xxxxxxxxxxxxxxxxxxxxxxxxx
nat symmetric role active
nat symmetric check-media-src
retry invite 3
retry register 10
timers register 150
registrar dns:voip.zen.co.uk expires 120
sip-server dns:voip.zen.co.uk
connection-reuse
  host-registrar
permit hostname dns:voip.zen.co.uk
permit hostname dns:asterisk01.voip.zen.co.uk
permit hostname dns:asterisk02.voip.zen.co.uk

Thanks fo thre reply Daniele.
IOS is 15.3(3)M, but I've updated this today from an ealier version hoping to fix the problem.
If I do the following:
877va-1#show ip nat translations | include 5060
udp 82.70.85.118:1029  192.168.1.254:5060 212.23.7.228:5060  212.23.7.228:5060
877va-1#clear ip nat trans
877va-1#clear ip nat translation *
877va-1#clear ip nat statistics
Then on the CME box, re-register the sip-ua.
877va-1#show ip nat translations | include 5060
udp 82.70.85.118:1030  192.168.1.254:5060 212.23.7.228:5060  212.23.7.228:5060
It takes the next port.  Its never using 5060 in the first place from what I can tell

Similar Messages

  • Nat tunnel for SIP closing after 933 seconds.

    Hello.
    We have a OS X Server 10.6.8 that acts as a nat gateway and firewall to our network. Through it I have opened tunnels to an IPECS ip-telephone system, everything works fine, except that it appears to close tunnels after 933 seconds. So, if I have an active call it will terminate after exactly 933 seconds. I cannot find anything in any log or anywhere in the documentation to explain this behaviour.
    Any help or confirmation of this behaviour would be greatly appreciated.

    Hi Inventica,
    Can you please get a SIP debug capture of this event happening?
    The following command is dangerous and should only be run for a short period of time as it can crash the system from overloading it, but it will be very helpful in assisting with the diagnosis.
    Step-1:
    Turn monitoring on the terminal "term mon" if you are using a console cable it is on automatically
    Step-2:
    debug CCSIP all
    The above is what will crash the system if you leave it on too long, do no more than say 2-3 calls, also make sure putty has at least 2000000 lines in the settings so that way you can copy all to clipboard and post it in a text file.
    Once you have this captured in a text file, please upload that file up here so we can see it
    Cheers,
    David Trad.

  • Need help creating Vector table for specific class

    I am trying to create a Vector table of class Node and I think I understand the concept but in practice I am not
    sure why the compiler complains about non-static reference on statement mv.table.add(new Node(names[n]). Please help. I can not get this thing to work.
    import java.util.*;
    class MyVector {
    Vtable table;
    public static void main(String[] args){
    MyVector mv = new MyVector();
    String names[] = {"one","two","three","four","five"};
    for (int n;n<names.length;n++)
    mv.table.add(new Node(names[n])); //<-ERROR
    table.list();
    if (table.del("de")) System.out.println("deleted");
    table.list();
    public MyVector(){
    System.out.println("MyVector_C");
    table = new Vtable();
    public class Node {
    private String name;
    public Node(){name=new String("Null");}
    public Node(String s){name=s;}
    public void setName(String s){name=s;}
    public String getName(){return name;}
    public String toString(){return "[Node:"+name+"]";}
    public class Vtable extends Vector {
    private Vector v;
    public Vtable(){v=new Vector();}
    public void add(Node n){v.add(n);}
    public Node getNode(String s){
    Iterator i=v.iterator();
    while(i.hasNext()){
    Node n;
    n = (Node)i.next();
    if (s.equals((String)n.name))
    return(n);
    return null;
    public void list(){
    Iterator i=v.iterator();
    while (i.hasNext()){System.out.println((Node)i.next());}
    public Boolean del(String s) {
    Iterator i=v.iterator();
    while(i.hasNext()){
    Node n = (Node)i.next();
    if (s.equals((String)n.name)) {
    v.remove(n);
    return(true);
    return(false);
    }

    public class Vtable extends Vector {
    private Vector v;
    public Vtable(){v=new Vector();}
    public void add(Node n){v.add(n);}
    public Node getNode(String s){
    Iterator i=v.iterator();
    while(i.hasNext()){
    Node n;
    n = (Node)i.next();
    if (s.equals((String)n.name))
    return(n);
    return null;
    I get ur problem...
    When VTable extends Vector all u have to do is...
    VTable table=new VTable();
    table.add(new node(..));
    There is no need to get the Vector obj in picture as VTable extends Vector...
    I guess, this helps u.

  • Please help to find table for report S_ALR_87013558 (budget commitment)

    Dear SAP Guru,
    How can i find the table that store the value for report S_ALR_87013558 ?
    Many thanks in advance.
    Nies

    TABLES: RPSCO_X, COIX, COIX_DATA40, RKB1X, RKB1F, RKB1D.
    PROJ, PRPS_R, ACT01, AUFK, VBAK, TCNDB, VSKOPF, IMTP, IMPR,
    TCNDBT.

  • Help on QCI table for all GRs for the month

    May I know if there is a way, maybe in table form, to view all the quantities in other units found in QCI for the entire month GR?

    Hi Satish,
    Thanks for your response.
    I tried your suggestion, but I wish to see the "additional quantities" portion of the QCI. Using your suggestion, I was able to view the metering and observed conditions.

  • TABLES FOR MASTER & TRANSACTIONAL DATA

    Hi all ,
    can some body help me with TABLES FOR MASTER & TRANSACTIONAL DATA
    DP,SNP,PP/DP.
    Thanks

    Hi,
    You can find out it as per your requirement.
    Use transaction SE80 - ABAP workbench  -->
    select Repository Information system  -->
    Select ABAP Dictionary  --> Data base table -->
    In the right hand side window you will get screen in that give details as below
    Standard selection screen
    Table name : enter *
    In the Application Component:
    You will get Tree structure to Select Application Componenet
    in that expand the node of SCM --> SCM APO --> SCM-APO-MD for Master Data
    Here you will get application  -- Double click on the required Application
    e.g. Duble Click on SCM-APO-MD-PR for Product
    Here you will get list of table related to application componenet Product
    <b>/SAPAPO/MATKEY                 Product</b>
    Some of the Master Data Tables:
    /SAPAPO/APNTYPE                APN Type
    /SAPAPO/APNTYPET               Alternative Product Number Type
    /SAPAPO/APO01                  APO Planning Version
    /SAPAPO/APO01DEL               Deletion Log File Versions
    /SAPAPO/APPLOCS                Location Master: Relevant Location Types for Application
    /SAPAPO/APPLS                  Application Types : SAP Application Types
    /SAPAPO/CD_LOC                 Customizing Change Documents Location
    /SAPAPO/CD_PPRFL               Customizing: Change Documents: Product Profiles
    /SAPAPO/CD_PRDHD               Customizing: Change Documents: Product
    /SAPAPO/CD_PRDLC               Customizing: Change Documents: Location Product
    /SAPAPO/CD_PRDLW               Customizing: Change Documents: Storage Type Product
    /SAPAPO/CD_PRDWH               Customizing: Change Documents: Storage Type Product
    /SAPAPO/CONSPROF               Model Consistency Check: Check Profile
    /SAPAPO/CONSPROT               Model Consistency Check: Check Profile Descriptions
    /SAPAPO/CUSTCHK                Model Consistency Check: User-Specific Checks
    /SAPAPO/CUSTCHKT               Model Consistency Check: Descriptions of User-Spec. Checks
    /SAPAPO/GRPTYPE                Product Group Types
    /SAPAPO/GRPTYPET               Description of Product Grouping
    /SAPAPO/LOC                    Locations
    /SAPAPO/LOC_SUB                Mapping Table for Sublocations
    /SAPAPO/LOCCOMP                Table Obsolete Since SCM Release 4.1
    /SAPAPO/LOCMAP                 Mapping Table for Locations
    /SAPAPO/LOCMOT                 Location: Means-of-Transport-Dependent Attributes
    /SAPAPO/LOCPROF                Version-Dependent Location Profile for Penalty Determinati
    /SAPAPO/LOCT                   Locations Short Text
    /SAPAPO/LOCVER                 Location: Version-Dependent Fields
    /SAPAPO/LTTYPE                 Location Resources
    /SAPAPO/LTVER                  Location Resources: Version-Dependent Fields
    /SAPAPO/MARM                   Units of Measure
    /SAPAPO/MATAPN                 Alternative Product Number
    /SAPAPO/MATBOD                 Product BOD Assignment
    Hope this information will be helpful for you work on and find out Important tables for your own BP

  • Reference field and table for AUFK for F4 help in alv.

    Hi All,
       I need to put F4 help on ALV for order no (AUFK) what is the reference field and table for that?
      i tried giving field as aufk and table as ccss but its not working.
       ls_fcat-ref_field = 'AUFNR'.
        ls_fcat-ref_table = 'CCSS'.
    Thanks & Regards,
    Ruchi Tiwari

    Hi,
    Try this.
    Set the f4 help for the field in the fieldcatalog
      ls_fcat-f4availabl = 'X'.
    1. Create a event of ONF4 for the alv grid.
    2. Set the event handler.
    3. Append the field for the F4 help in the internal table and call the below method
        CALL METHOD g_mprn->register_f4_for_fields
        EXPORTING
          it_f4 = i_f4.
    4. create a class definition and implementation
        refer sample pgms (BCALV_F4, BCALV_GRID_EDIT_DELTA and BCALV_GRID_EDIT)
    Hope this may be helpful.
    Regards,
    Sharin.

  • Please help me to find the table for fields where the descriptions are give

    please help me to find the table for fields where the descriptions are given below
    Customer Support Administrator
    first line Support indicator

    You could also try table DD01T. In se 16,put in the description thats needed,you will get to know the respective data elements.
    Then you can use DD03L to find the respective table. This would work if the data element is not generic.
    Regards,
    Anubhav.

  • Need help for NAT, ACL for VoIP

    Dear experts
    I configure my PBX server to work with one VoIP provider. When I put the server in blank network, mean that without VLANs.
    The IP PBX server can register to the VoIP provider system normally and I can make call out and receive calls normally.
    However,  when I put the PBX behind the Cisco router with some configuration. The  PBX cannot register with the VoIP provider system.
    Eventhough I can receive calls from outside but can not make a call from inside to outside, because of the PBX cannot register.
    Could you please help me to point out what is wrong with my Cisco router configuration.
    Thanks a lot
    Building configuration...
    Current configuration : 1982 bytes
    ! Last configuration change at 17:18:27 UTC Mon Feb 24 2014
    version 15.1
    service timestamps debug datetime msec
    service timestamps log datetime msec
    no service password-encryption
    hostname Router
    boot-start-marker
    boot-end-marker
    enable secret 5 $1$ZJEF$8np0QvQTD1nTaOosa9yGW1
    no aaa new-model
    memory-size iomem 20
    no ipv6 cef
    ip source-route
    ip cef
    multilink bundle-name authenticated
    crypto pki token default removal timeout 0
    license udi pid CISCO2911/K9 sn FTX1603AH9C
    interface Embedded-Service-Engine0/0
    no ip address
    interface GigabitEthernet0/0
    description internal-LAN
    ip address x.x.x.4 255.255.0.0
    ip nat inside
    ip virtual-reassembly in
    duplex auto
    speed auto
    interface GigabitEthernet0/1
    no ip address
    duplex auto
    speed auto
    interface GigabitEthernet0/1.1
    encapsulation dot1Q 11
    ip address 172.x.x.1 255.255.240.0
    interface GigabitEthernet0/2
    description internet
    ip address 50.x.x.93 255.255.x.x
    ip nat outside
    ip virtual-reassembly in
    duplex auto
    speed auto
    ip forward-protocol nd
    no ip http server
    no ip http secure-server
    ip nat inside source list 100 interface GigabitEthernet0/2 overload
    ip nat inside source static udp x.x.x.8 5060 50.x.x.93 5060 extendable
    ip route profile
    ip route 0.0.0.0 0.0.0.0 50.x.x.94
    ip route 172.16.240.0 255.255.x.0 x.x.x.5
    ip route 172.16.242.0 255.255.x.0 x.x.x.5
    access-list 100 permit ip x.x.0.0 0.0.255.255 any
    access-list 100 permit ip 172.16.240.0 0.0.0.255 any
    access-list 100 permit ip 172.16.242.0 0.0.0.255 any
    access-list 100 permit udp any any range 5004 5090
    access-list 100 permit udp any any range 10000 20000
    control-plane
    line con 0

    Hello.
    Do you have the same static NAT mapping for TCP 5060?

  • Need help opening NAT type to OPEN on a model WRT54GS router for xbox 360

    I have tried from other people's advice and when i test Xbox Live i always get a Moderate NAT type. I am becoming frustrated with how it is not working and I am hoping someone can help me. Please leave advice/suggestions and thank you for your time.

    Open the setup page of the router using 192.168.1.1 by putting the password as admin with username as blank & click the Administration tab & on the same page you will see UPNP.You need to select it as disable in order to help opening NAT type to OPEN.

  • Help required in finding out the tables for FS-Claims Management module

    Hi All,
    In FS - claims Management module, i need to find out from which tables we can fetch the following fields,
    INSURED             : insured person
    DESCINSURED     : Description of insured person
    CLAIMANT     : person eligible for benefits
    DESCCLAIMANT     : Description of insured claimant
    OUTSTRES     : Outstanding reserve
    PAID             : paid amount
    INCURRED     : paid amount + outstanding reserve LOSSDESC     : loss description
    Thanks & Regards,
    Anil

    Hi Anil,
    I was searching for the fields you mentioned using SE15 and came up with lot of hits. I thought, it would be good if you do the same thing and you can find the relevant tables as might you have good idea in this area.
    I will tell you the procedure and I hope it will give you good results.
    1) Go to SE15 (Repository Info System)
    2) Click on "ABAP Dictionary"
    3) Click on "Fields"
    4) Select "Table Fields"  and enter description as "insured" on the right hand side panel with Application component as "FS"
    5) Click "Execute" (F8) and you will lot of hits.
    You need to search through it to find relevant tables for your purpose.
    Hope this will give you an idea.
    Regards,
    Vicky
    PS: Award points if helpful

  • Hi help me on coding for a IDOC for a CATSDB TABLE

    hi help me on coding for a IDOC for a CATSDB TABLE

    Hi,
    Check this fucntion module also.It can help you.
    ALE_PTMGREXTWOSCHED_INSWCOST
    Message was edited by:
            Jayanthi Jayaraman

  • Help with tables for frustrated newbie

    Could someone look at the starters of a site I'm trying to
    get up and going? The link is here:
    http://canyoncrestfoundation.org/newhomepage.htm
    The site is a table with five rows. I would like to be able
    to use the basic design on other pages, and change the fourth row
    down on different pages. It's the row with the image of the
    teenagers, and it has the text what "if I try to type here...". I'm
    using Dreamweaver 8 and if I move click on the draw table button in
    Layout mode, and then try to move the cursor over that row, I get a
    circle with a line diagonally across the middle. I really wanted to
    be able to have varying layouts in that center part. Also, what do
    I do to move the top text in that row over-- where it says,
    "Partnering with..." Thank you! I'm feeling very frustrated with
    this.
    Please be kind and gentle. I'm figuring this out on
    my own, and am just a volunteer for the foundation.

    Looks exactly like the problem I faced....
    Thilak.
    quote:
    Originally posted by:
    Newsgroup User
    First things first, get out of layout mode - you'll end up
    doing yourself an
    injury ;-)
    Do not 'draw' tables, insert them. copy and paste the
    following into a new
    DW window and see how I've put the various elements
    together. Use separate
    tables for each of your elements - it should get you on the
    right track:
    PS: This may be a good tutorial to have a read through
    before you go any
    further too:
    http://www.dwfaq.com/Tutorials/Tables/flexible_tables.asp
    It will show you how to 'nest' tables, so that adjacent
    cells don't 'blow'
    out as you add content....
    Code here:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <HEAD>
    <TITLE>Canyon Crest Academy Foundation fundraising
    volunteer
    support</TITLE>
    <META NAME="DESCRIPTION" CONTENT="Canyon Crest Academy
    Foundation
    provides monetary and volunteer support to the school.
    Budget information,
    upcoming events, contact information for the board,
    volunteer opportunities
    all listed at the site.">
    <META NAME="KEYWORDS" CONTENT="Canyon Crest Academy,
    fundraising,
    volunteer, contact board, donors, giving">
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1">
    <title>newhomepage</title>
    <style type="text/css">
    <!--
    body {
    background-image: url(../../Library/Application
    Support/Macromedia/Dreamweaver
    8/Configuration/ServerConnections/CCAF//htdocs/images/eostilework1f.gif);
    margin-left: 30px;
    margin-top: 30px;
    margin-right: 30px;
    margin-bottom: 30px;
    background-image: url(images/eostilework1f.gif);
    body,td,th {
    font-family: "Times New Roman", Times, serif;
    font-size: 10px;
    color: #111111;
    a:link {
    color: #880000;
    a:visited {
    color: #555555;
    a:hover {
    color: #220000;
    a:active {
    color: #440000;
    .style4 {
    font-family: "Times New Roman", Times, serif;
    font-size: 12px;
    -->
    </style>
    </head>
    <body>
    <div align="center">
    <table width="900" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td><img src="images/top.jpg" width="900"
    height="105"></td>
    </tr>
    <tr>
    <td><img src="images/view1.jpg" width="900"
    height="89"></td>
    </tr>
    </table>
    <table width="900" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td>Home</td>
    <td><a
    href="../../htdocs/Giving1.html">Giving</a></td>
    <td>Volunteers</td>
    <td>Board</td>
    <td>Successes</td>
    <td>something else </td>
    </tr>
    </table>
    <table width="900" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td><span class="style4">...partnering with
    students, parents and staff to
    facilitate community involvement and provide financial
    support for CCA
    educational programs and priorities.</span></td>
    </tr>
    </table>
    <table width="900" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td><table width="900" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td valign="top"><p><img
    src="images/highschoolkids_000.jpg" width="216"
    height="144" align="top"></p>
    <p> </p></td>
    <td valign="top"><p>What if I try to type here?
    That works, so why can't the
    table? </p>
    <p>type as much as you want in this cell
    </p></td>
    </tr>
    </table></td>
    </tr>
    </table>
    <table width="900" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <td><img src="images/bottom.jpg" width="900"
    height="95"></td>
    </tr>
    </table>
    </div>
    </body>
    </html>
    Nadia
    Adobe? Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Customisation Service Available:
    http://www.csstemplates.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html
    "Sootica" <[email protected]> wrote in
    message
    news:[email protected]...
    > Could someone look at the starters of a site I'm trying
    to get up and
    > going?
    > The link is here:
    >
    http://canyoncrestfoundation.org/newhomepage.htm
    >
    > The site is a table with five rows. I would like to be
    able to use the
    > basic
    > design on other pages, and change the fourth row down
    on different pages.
    > It's
    > the row with the image of the teenagers, and it has the
    text what "if I
    > try to
    > type here...". I'm using Dreamweaver 8 and if I move
    click on the draw
    > table
    > button in Layout mode, and then try to move the cursor
    over that row, I
    > get a
    > circle with a line diagonally across the middle. I
    really wanted to be
    > able to
    > have varying layouts in that center part. Also, what do
    I do to move the
    > top
    > text in that row over-- where it says, "Partnering
    with..." Thank you! I'm
    > feeling very frustrated with this.
    Please be kind and
    > gentle.
    > I'm figuring this out on my own, and am just a
    volunteer for the
    > foundation.
    >

  • NAT Support for Finesse

    Hi,
    I have a customer who wants VPN less access to Finesse server for agents from remote locations and for home agents.. we are thinking of using NAT here.
    Summary of the Architecture: 2 DCs (UCCE Side A and Side B), centralized call termination, VGs in DCs, VXML gateways also in DCs. 9 agent locations connected via MPLS links to DCs, 1 outsourced agent location with 100 agents ( planning to go for mobile agents for outsourced agents)
    It is mentioned in the below link that Finesse supports basic NAT between Finesse server and Finesse clients
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cust_contact/contact_center/finesse/finesse_1051/release/notes/CFIN_BK_R34A18D2_00_release-notes-for-cisco-finesse-1051/CFIN_BK_R34A18D2_00_release-notes-for-cisco-finesse_chapter_00.html#CFIN_RF_N6A0AC5F_00
    I don't have much understanding of security concepts.. so looking for some help here.
    1. Does NAT (one to mapping) between Finesse server and Finesse client means, each of the Finesse clients will also need one unique public ip mapped to each of the agent PCs?
    2. What are the benefits and drawbacks of using Nating approach instead of using VPN access to Finesse servers?
    3. Since it is mentioned that one to many mapping between Finesse servers and Finesse clinets is not supported, need to understand with an example of one to many scenario in contact enter world.
    Thanks
    Nirmal

    Hi, we have a similar setup for one of my clients and NAT works for us, for both inshouse and outsource sites which connects to us via the Public.
    1. Does NAT (one to mapping) between Finesse server and Finesse client means, each of the Finesse clients will also need one unique public ip mapped to each of the agent PCs?
    Ans. Why Public IPs? How is that one outsourced company connecting into the DCs network?
    2. What are the benefits and drawbacks of using Nating approach instead of using VPN access to Finesse servers?
    Ans. We tested both, and I think VPN works better as when they VPN they are technicaly a part of the network and then can access Finesse locally,
    3. Since it is mentioned that one to many mapping between Finesse servers and Finesse clinets is not supported, need to understand with an example of one to many scenario in contact enter world.
    Ans. One to many is when for eg 10 PCs behinds NAT but they talk to Finesse server as only 1 IP and teh NAT table manages the sessions to these 10 Finesse client PCs. One to One is when every PC gets a NATed IP to talk to outside workd / Finesse.
    Kartik

  • Clearing the NAT table

    I have NAT set up for both source and destination translation on 2610 router.
    When the devices configured for NAT start communicating, several dynamic NAT entries are created. Recently, I needed to change an IP address for DR testing (192.168.21.5 --> 192.168.21.158). However, I was unable to remove the entry using the 'no' command before the NAT statement. I tried using the 'clear ip nat outside' statement , but I received output errors. I finally had to clear the entire dynamic NAT translation table (clear ip nat trans *). Once cleared, I could remove the static NAT statement for 192.168.21.5 using the 'no' command.
    Is there a way for me to just clear that specific IP addresses NAT translation entries. I don't want to affect the other static IP translations taking place (192.168.12.200).
    Check out the attached file, it contains the config, ver, and error output when I try to make NAT statement changes.
    As always, thanks for your help.
    -Mike

    Hi Mike,
    I believe the following would have done the trick in your case (watch for wrap):
    clear ip nat translation inside 192.168.80.21 192.168.251.1 outside 172.26.104.126 192.168.21.5
    clear ip nat translation inside 192.168.80.22 172.26.201.4 outside 172.26.104.126 192.168.21.5
    The above syntax lets you specify the entire translation entry so that the IOS knows exactly what to clear.
    Pls rate the post if it helps.
    Paresh.

Maybe you are looking for