Link to home
Start Free TrialLog in
Avatar of jumpmanjay
jumpmanjay

asked on

multiple IPs NAT'ed to a single IP

this is for a cisco 6500.

given:
1.1.1.1
2.2.2.2
3.3.3.3

i am trying to map:
1.1.1.1 (inside) to 2.2.2.2 (outside)
and
1.1.1.1 (inside) to 3.3.3.3 (outside)

is this possible? i figure i would need to use a route-map, but i found some cisco documentation stating that you can do static route-maps...just not with the 6500 series.

http://www.cisco.com/univercd/cc/td/doc/product/software/ios122/122newft/122t/122t4/ftnatrt.htm

im just wondering if there is any other way to do it. thanks in advance!
Avatar of Kurt Richter
Kurt Richter
Flag of United States of America image

yes, you can do this, but only if your IOS supports the "route-map" parameter to the "ip nat source static" command.  For example, 12.4 on a 2600XM does not, but 12.4 on a 2800 does.  Whatever . . .

To verify this: in config mode, type "ip nat inside source static 1.1.1.1 2.2.2.2" followed by a "?" and see if "route-map" appears as a parameter.  If so, you are good to go; if not, no dice.  

Attached is the code.  Note that the restrictions on this will be whatever you can/cant do with a route-map.

HTH

kr
ip nat inside source static 1.1.1.1 2.2.2.2 route-map MAP1 reversible
ip nat inside source static 1.1.1.1 2.2.2.2 route-map MAP2 reversible
 
route-map MAP1 permit 10
 match <CONDITION_1>
 
route-map MAP2 permit 10
 match <CONDITION_2>
 
interface <INSIDE_INTERFACE>
 ip nat inside
 
interface <OUTSIDE_INTERFACE>
 ip nat outside

Open in new window

Avatar of jumpmanjay
jumpmanjay

ASKER

yeah, it doesnt accept "route-map" after that, ive already tried (and just double checked to make sure). so no go, huh? seems there should be some way a 6500 could do this...
ASKER CERTIFIED SOLUTION
Avatar of Kurt Richter
Kurt Richter
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ouch, a brand spanking new IOS. :)

can you do me a big favor...and do a "sh proc cpu" on that? the last IOS we tried was a 12.2(18) variant...which ran our CPU excessively high. just wondering how that version is running.

thanks for the help!

Router#sh proc cp
CPU utilization for five seconds: 6%/3%; one minute: 2%; five minutes: 2%
 PID Runtime(ms)   Invoked      uSecs   5Sec   1Min   5Min TTY Process
   1          32       349         91  0.00%  0.00%  0.00%   0 Chunk Manager    
   2         348    795523          0  0.00%  0.00%  0.00%   0 Load Meter      
   3         172      2210         77  0.00%  0.00%  0.00%   0 SSH Event handle
   4           0         1          0  0.00%  0.00%  0.00%   0 PF Redun ICC Req
   5    10215336    736308      13873  0.00%  0.19%  0.22%   0 Check heaps      
   6           8       828          9  0.00%  0.00%  0.00%   0 Pool Manager    
   7           0         2          0  0.00%  0.00%  0.00%   0 Timers          
   8      522524   2746915        190  0.00%  0.00%  0.00%   0 ARP Input        
   9           0         1          0  0.00%  0.00%  0.00%   0 AAA_SERVER_DEADT
  10           0         2          0  0.00%  0.00%  0.00%   0 AAA high-capacit
  11           0         1          0  0.00%  0.00%  0.00%   0 Policy Manager  
  12          44        49        897  0.00%  0.00%  0.00%   0 Entity MIB API  
  13           8       191         41  0.00%  0.00%  0.00%   0 EEM ED Syslog    
  14           0         1          0  0.00%  0.00%  0.00%   0 IFS Agent Manage
  15           4     66296          0  0.00%  0.00%  0.00%   0 IPC Dynamic Cach
  16           8        61        131  0.00%  0.00%  0.00%   0 PF_Split Sync Pr
  17         268   3976591          0  0.00%  0.00%  0.00%   0 IPC Periodic Tim
  18       19436   2881940          6  0.00%  0.00%  0.00%   0 IPC Managed Time
  19         216   3976603          0  0.00%  0.00%  0.00%   0 IPC Deferred Por
  20    13471500 179627202         74  0.39%  0.15%  0.12%   0 IPC Seat Manager
  21           0         1          0  0.00%  0.00%  0.00%   0 IPC Session Serv
  22           0         2          0  0.00%  0.00%  0.00%   0 DDR Timers      
  23           0         2          0  0.00%  0.00%  0.00%   0 Dialer event    
  24           0         2          0  0.00%  0.00%  0.00%   0 Serial Backgroun
  25           0         1          0  0.00%  0.00%  0.00%   0 Crash writer    
  26      293828   2648368        110  0.00%  0.00%  0.00%   0 EnvMon          
  27          28    397767          0  0.00%  0.00%  0.00%   0 Compute SRP rate
  28         268   3976560          0  0.00%  0.00%  0.00%   0 GraphIt          
  29          28       537         52  0.00%  0.00%  0.00%   0 rf proxy rp agen
  30           0         1          0  0.00%  0.00%  0.00%   0 SERIAL A'detect  
  31           0         1          0  0.00%  0.00%  0.00%   0 draco-oir-proces
  32           0         2          0  0.00%  0.00%  0.00%   0 Snmp ICC Process
  33          44       133        330  0.00%  0.00%  0.00%   0 Cat6k SNMP      
  34           0        63          0  0.00%  0.00%  0.00%   0 Cat6k SNMP Trap  
  35           0         1          0  0.00%  0.00%  0.00%   0 ARP Snoop        
  36         264   3976593          0  0.00%  0.00%  0.00%   0 Dynamic ARP Insp
  37           0         1          0  0.00%  0.00%  0.00%   0 Critical Bkgnd  
  38         292    557668          0  0.00%  0.00%  0.00%   0 Net Background  
  39           0         3          0  0.00%  0.00%  0.00%   0 IDB Work        
  40           4       324         12  0.00%  0.00%  0.00%   0 Logger          
  41         528   3976558          0  0.00%  0.00%  0.00%   0 TTY Background  
  42       12248   3983233          3  0.00%  0.00%  0.00%   0 Per-Second Jobs  
  43     1591500     69198      22999  0.00%  0.02%  0.00%   0 Per-minute Jobs  
  44          36       202        178  0.00%  0.00%  0.00%   0 IF-MGR control p
  45           0      5298          0  0.00%  0.00%  0.00%   0 IF-MGR event pro
  46           0         5          0  0.00%  0.00%  0.00%   0 RPC rf_rfmib_not
  47          32       711         45  0.00%  0.00%  0.00%   0 Env action      
  48           0         2          0  0.00%  0.00%  0.00%   0 Flash ICC Server
  49           4      6630          0  0.00%  0.00%  0.00%   0 foundation      
  50           4      6635          0  0.00%  0.00%  0.00%   0 itasca          
  51           0         3          0  0.00%  0.00%  0.00%   0 EOBC Monitor Pro
  52       52636   2317961         22  0.00%  0.00%  0.00%   0 Net Input        
  53           4        13        307  0.00%  0.00%  0.00%   0 draco-oir-proces
  54        2204      2146       1027  0.00%  0.00%  0.00%   1 SSH Process      
  55           0         6          0  0.00%  0.00%  0.00%   0 MWAM CONFIG ON S
  56           0       438          0  0.00%  0.00%  0.00%   0 svclc            
  57           0         1          0  0.00%  0.00%  0.00%   0 pf_ipc_bs_mgr_se
  58           0         2          0  0.00%  0.00%  0.00%   0 Notify peer imag
  59           0         1          0  0.00%  0.00%  0.00%   0 PF Sync process  
  60           4        11        363  0.00%  0.00%  0.00%   0 RPC Sync        
  61           0         2          0  0.00%  0.00%  0.00%   0 SCP Multicast    
  62           0         2          0  0.00%  0.00%  0.00%   0 SCP Generic Unso
  63           0         3          0  0.00%  0.00%  0.00%   0 RPC vs_prov_lc-R
  64           0         3          0  0.00%  0.00%  0.00%   0 RPC rpc-slave-15
  65           0         1          0  0.00%  0.00%  0.00%   0 VSIBC process    
  66         764     66276         11  0.00%  0.00%  0.00%   0 RF CWAN HA Proce
  67           0         1          0  0.00%  0.00%  0.00%   0 CWAN HA VLAN SYN
 PID Runtime(ms)   Invoked      uSecs   5Sec   1Min   5Min TTY Process
  68           0         1          0  0.00%  0.00%  0.00%   0 CWAN IF EVENT HA
  69           0         1          0  0.00%  0.00%  0.00%   0 CWAN APS HA Proc
  70           0         1          0  0.00%  0.00%  0.00%   0 CWAN SRP HA Proc
  71           0         1          0  0.00%  0.00%  0.00%   0 CWAN LTL Mgr HA  
  72           0         1          0  0.00%  0.00%  0.00%   0 Inode Table Dest
  73        3908   3975456          0  0.00%  0.00%  0.00%   0 Heartbeat Proces
  74           0         2          0  0.00%  0.00%  0.00%   0 Const ICC reques
  75           0         1          0  0.00%  0.00%  0.00%   0 Const ICC event  
  76           0         1          0  0.00%  0.00%  0.00%   0 Const ICC except
  77           0         1          0  0.00%  0.00%  0.00%   0 ICC Local Reques
  78         120      3884         30  0.00%  0.00%  0.00%   0 ICC Async mcast  
  79           0         1          0  0.00%  0.00%  0.00%   0 ICC_REQ Debug Pr
  80           0         1          0  0.00%  0.00%  0.00%   0 ICC FC Process  
  81           0         1          0  0.00%  0.00%  0.00%   0 ICC FC Test Send
  82           0         1          0  0.00%  0.00%  0.00%   0 ICC FC Test Low  
  83           0         1          0  0.00%  0.00%  0.00%   0 IfIndex Bulk Syn
  84           0         1          0  0.00%  0.00%  0.00%   0 CWRP SPA TSM HA  
  85           0         2          0  0.00%  0.00%  0.00%   0 Switch IP Host T
  86           0         3          0  0.00%  0.00%  0.00%   0 RPC virtual_mode
  87           0         3          0  0.00%  0.00%  0.00%   0 RPC vs_sp_print_
  88           0         3          0  0.00%  0.00%  0.00%   0 RPC vs_rp2sp_rpc
  89           0         2          0  0.00%  0.00%  0.00%   0 IP Admission HA  
  90           0         1          0  0.00%  0.00%  0.00%   0 Mistral Reset Pr
  91           0         1          0  0.00%  0.00%  0.00%   0 ECC correctable  
  92          40        22       1818  0.00%  0.00%  0.00%   0 PF_Init Process  
  93          12       101        118  0.00%  0.00%  0.00%   0 RPC pf-split-rp  
  94          16        52        307  0.00%  0.00%  0.00%   0 RPC idprom-MP    
  95        1376    799013          1  0.00%  0.00%  0.00%   0 Compute load avg
  96           0         1          0  0.00%  0.00%  0.00%   0 BACK CHECK      
  97           0         1          0  0.00%  0.00%  0.00%   0  CHKPT rcv MSG p
  98           0         2          0  0.00%  0.00%  0.00%   0 cpf_process_msg_
  99           0         1          0  0.00%  0.00%  0.00%   0 cpf_process_ipcQ
 100           0         1          0  0.00%  0.00%  0.00%   0 IPC Apps Task    
 101         132       139        949  2.23%  0.17%  0.03%   2 SSH Process      
 102           0         1          0  0.00%  0.00%  0.00%   0 RTTYS Process    
 103           0        16          0  0.00%  0.00%  0.00%   0 OBFL Cfg Dispatc
 104           0       107          0  0.00%  0.00%  0.00%   0 Transport Port A
 105           0         1          0  0.00%  0.00%  0.00%   0 PF Clock Process
 106           0        47          0  0.00%  0.00%  0.00%   0 AggMgr Process  
 107           0         1          0  0.00%  0.00%  0.00%   0 SFF8472          
 108        5340   1143460          4  0.00%  0.00%  0.00%   0 HC Counter Timer
 109           8        37        216  0.00%  0.00%  0.00%   0 Collection proce
 110           0         1          0  0.00%  0.00%  0.00%   0 Remote Console P
 111           0         1          0  0.00%  0.00%  0.00%   0 DiagErrorLogProc
 112           0         1          0  0.00%  0.00%  0.00%   0 const_dump_info_
 113           0         1          0  0.00%  0.00%  0.00%   0 POS APS Event Pr
 114           4         2       2000  0.00%  0.00%  0.00%   0 CWAN OIR Handler
 115           0         1          0  0.00%  0.00%  0.00%   0 DSX3MIB ll handl
 116           0         1          0  0.00%  0.00%  0.00%   0 FPD Management P
 117           0         1          0  0.00%  0.00%  0.00%   0 FPD Action Proce
 118           0         1          0  0.00%  0.00%  0.00%   0 SCP async: LCP#5
 119         416   3976575          0  0.00%  0.00%  0.00%   0 CWAN CHOCX PROCE
 120           0         1          0  0.00%  0.00%  0.00%   0 HAL Mailbox      
 121         708   3976575          0  0.00%  0.00%  0.00%   0 CWAN CHDSX PROCE
 122           0         1          0  0.00%  0.00%  0.00%   0 CT3 Mailbox      
 123           0         1          0  0.00%  0.00%  0.00%   0 CE3 Mailbox      
 124           0         2          0  0.00%  0.00%  0.00%   0 MIP Mailbox      
 125           0         1          0  0.00%  0.00%  0.00%   0 Earl NDE Task    
 126           0         3          0  0.00%  0.00%  0.00%   0 MLS Stats Histor
 127      192776    792036        243  0.00%  0.00%  0.00%   0 esw_vlan_stat_pr
 128           0        17          0  0.00%  0.00%  0.00%   0 Gemini L3 forwar
 129           0         1          0  0.00%  0.00%  0.00%   0 CWRP SPA ATM OIR
 130           0         2          0  0.00%  0.00%  0.00%   0 AAA Server      
 131           0         1          0  0.00%  0.00%  0.00%   0 AAA ACCT Proc    
 132           0         1          0  0.00%  0.00%  0.00%   0 ACCT Periodic Pr
 133           0         1          0  0.00%  0.00%  0.00%   0 Auth-proxy AAA B
 134           0     13259          0  0.00%  0.00%  0.00%   0 IP Admin SM Proc
 135      205832   4380437         46  0.00%  0.00%  0.00%   0 CDP Protocol    
 137           8     66298          0  0.00%  0.00%  0.00%   0 Call Home Timer  
 PID Runtime(ms)   Invoked      uSecs   5Sec   1Min   5Min TTY Process
 138           0         2          0  0.00%  0.00%  0.00%   0 AAA Dictionary R
 139          20     33154          0  0.00%  0.00%  0.00%   0 DHCP Snooping    
 140           0         2          0  0.00%  0.00%  0.00%   0 CEF switching ba
 141      479228   4144102        115  0.15%  0.02%  0.00%   0 IP Input        
 142           0         1          0  0.00%  0.00%  0.00%   0 ICMP event handl
 143           0         1          0  0.00%  0.00%  0.00%   0 PPPATM Session d
 144           0         2          0  0.00%  0.00%  0.00%   0 PASVC create VA  
 146           0         1          0  0.00%  0.00%  0.00%   0 HDLC HA          
 147           0         2          0  0.00%  0.00%  0.00%   0 ARP HA          
 148           0         2          0  0.00%  0.00%  0.00%   0 Spanning Tree    
 149           0        14          0  0.00%  0.00%  0.00%   0 EAPoUDP Process  
 150           0         1          0  0.00%  0.00%  0.00%   0 DMLP Counter    
 151       28204 124069094          0  0.00%  0.00%  0.00%   0 Ethernet CFM    
 152          16        60        266  0.00%  0.00%  0.00%   0 SW VLAN RP      
 153           0         2          0  0.00%  0.00%  0.00%   0 const ipfib per-
 154           0         2          0  0.00%  0.00%  0.00%   0 CFMPAL-RP Proces
 155           4         6        666  0.00%  0.00%  0.00%   0 Const Rate Limit
 156           4        18        222  0.00%  0.00%  0.00%   0 Dot1x Mgr Proces
 157           0         2          0  0.00%  0.00%  0.00%   0 802.1x Accountin
 158           0         1          0  0.00%  0.00%  0.00%   0 EAP Framework    
 159         516   3976563          0  0.00%  0.00%  0.00%   0 DVMRP Timers    
 161         452      1855        243  0.00%  0.00%  0.00%   0 HWIF QoS Process
 162           0         3          0  0.00%  0.00%  0.00%   0 CEF RP IPC Backg
 163           0         1          0  0.00%  0.00%  0.00%   0 MLS FIB RP      
 164           4        24        166  0.00%  0.00%  0.00%   0 mcast_rp_icc Pro
 165           0         2          0  0.00%  0.00%  0.00%   0 QOS Stats Export
 166          76    397647          0  0.00%  0.00%  0.00%   0 QOS Stats Gather
 167           0         2          0  0.00%  0.00%  0.00%   0 Switch IP Host T
 168           0         1          0  0.00%  0.00%  0.00%   0 ATM HA          
 169          36     81953          0  0.00%  0.00%  0.00%   0 CEF background p
 170           0         1          0  0.00%  0.00%  0.00%   0 IP IRDP          
 171           0         1          0  0.00%  0.00%  0.00%   0 SNMP Timers      
 172           0         1          0  0.00%  0.00%  0.00%   0 PPP IP Add Route
 173         164     80611          2  0.00%  0.00%  0.00%   0 IP Background    
 174         196     66528          2  0.00%  0.00%  0.00%   0 IP RIB Update    
 175           0         1          0  0.00%  0.00%  0.00%   0 CHKPT DevTest    
 176           0         1          0  0.00%  0.00%  0.00%   0 IP Traceroute    
 177           0         1          0  0.00%  0.00%  0.00%   0 Socket Timers    
 178       22180    113886        194  0.00%  0.00%  0.00%   0 DHCPD Receive    
 179           0         1          0  0.00%  0.00%  0.00%   0 FR HA            
 180          72     12738          5  0.00%  0.00%  0.00%   0 TCP Timer        
 181          24        97        247  0.00%  0.00%  0.00%   0 TCP Protocols    
 182           0     13261          0  0.00%  0.00%  0.00%   0 HTTP CORE        
 183           0         1          0  0.00%  0.00%  0.00%   0 HSRP HA          
 184         140     10138         13  0.00%  0.00%  0.00%   0 XDR mcast        
 185       48324   1421617         33  0.00%  0.00%  0.00%   0 IPC LC Message H
 186           0         2          0  0.00%  0.00%  0.00%   0 XDR RP Ping Back
 187          28     33231          0  0.00%  0.00%  0.00%   0 XDR RP backgroun
 188           0         1          0  0.00%  0.00%  0.00%   0 XDR RP Test Back
 189           0         1          0  0.00%  0.00%  0.00%   0 PPP HA          
 190           0         1          0  0.00%  0.00%  0.00%   0 SLB CF process  
 191     1288996   5949920        216  0.00%  0.03%  0.02%   0 CEF: IPv4 proces
 192           0        67          0  0.00%  0.00%  0.00%   0 ADJ background  
 193           0         1          0  0.00%  0.00%  0.00%   0 COPS            
 194         892   3987475          0  0.00%  0.00%  0.00%   0 L3 Manager      
 195        3548   5027681          0  0.00%  0.00%  0.00%   0 FM core          
 196           0         1          0  0.00%  0.00%  0.00%   0 Probe Input      
 197         996      4890        203  0.00%  0.00%  0.00%   0 RARP Input      
 198           0         1          0  0.00%  0.00%  0.00%   0 PAD InCall      
 199           0         2          0  0.00%  0.00%  0.00%   0 X.25 Background  
 200           0         1          0  0.00%  0.00%  0.00%   0 X.25 Encaps Mana
 201      375348   1988819        188  0.07%  0.02%  0.00%   0 HIDDEN VLAN Proc
 202           0         1          0  0.00%  0.00%  0.00%   0 CWAN LTL manager
 203           0         1          0  0.00%  0.00%  0.00%   0 CWAN-RP SCP Proc
 204           0         9          0  0.00%  0.00%  0.00%   0 CWAN-RP SCP Inpu
 205           0         1          0  0.00%  0.00%  0.00%   0 DHCP Snooping HA
 206           0         1          0  0.00%  0.00%  0.00%   0 MAB Framework    
 207           0         1          0  0.00%  0.00%  0.00%   0 802.1x Critical  
 208           0         7          0  0.00%  0.00%  0.00%   0 IPHC RP Process  
 PID Runtime(ms)   Invoked      uSecs   5Sec   1Min   5Min TTY Process
 209           0         3          0  0.00%  0.00%  0.00%   0 L2TRACE SERVER  
 210           0         2          0  0.00%  0.00%  0.00%   0 MLSM-CC Process  
 211           0         2          0  0.00%  0.00%  0.00%   0 MWAM_CONSOLE Tim
 212           0         2          0  0.00%  0.00%  0.00%   0 CWPA QoS        
 213           0         2          0  0.00%  0.00%  0.00%   0 Const TCAM Mgr R
 214           0         1          0  0.00%  0.00%  0.00%   0 GLBP HA          
 215           0         1          0  0.00%  0.00%  0.00%   0 Inspect Timer    
 216           0         2          0  0.00%  0.00%  0.00%   0 AAA Cached Serve
 217           0         2          0  0.00%  0.00%  0.00%   0 LOCAL AAA        
 218           0         2          0  0.00%  0.00%  0.00%   0 ENABLE AAA      
 219           0         2          0  0.00%  0.00%  0.00%   0 LINE AAA        
 220      108464   2371726         45  0.00%  0.00%  0.00%   0 OSPF-1 Hello    
 221           0         2          0  0.00%  0.00%  0.00%   0 TPLUS            
 222           0        12          0  0.00%  0.00%  0.00%   0 crypto engine pr
 223           0         1          0  0.00%  0.00%  0.00%   0 encrypt proc    
 224           0         5          0  0.00%  0.00%  0.00%   0 Crypto CA        
 225           0         1          0  0.00%  0.00%  0.00%   0 Crypto PKI-CRL  
 226           0         1          0  0.00%  0.00%  0.00%   0 Crypto SSL      
 227           0         1          0  0.00%  0.00%  0.00%   0 CCSWVOICE        
 228           0         1          0  0.00%  0.00%  0.00%   0  Laminar Icc Eve
 229           0         2          0  0.00%  0.00%  0.00%   0 Laminar Config C
 230           0         2          0  0.00%  0.00%  0.00%   0 SLB Main CPU pro
 231           0         2          0  0.00%  0.00%  0.00%   0 Lawful Intercept
 232           0         2          0  0.00%  0.00%  0.00%   0 LI messaging    
 233           0         1          0  0.00%  0.00%  0.00%   0 LI C6K          
 234           0         1          0  0.00%  0.00%  0.00%   0 LI C6K PROV      
 235           0         1          0  0.00%  0.00%  0.00%   0 DATA Transfer Pr
 236           0         1          0  0.00%  0.00%  0.00%   0 DATA Collector  
 237           0         3          0  0.00%  0.00%  0.00%   0 RADIUS TEST CMD  
 238           0         2          0  0.00%  0.00%  0.00%   0 AAA SEND STOP EV
 239           0         1          0  0.00%  0.00%  0.00%   0 L3MM Process    
 240           0         1          0  0.00%  0.00%  0.00%   0 Syslog Traps    
 241          16        82        195  0.00%  0.00%  0.00%   0 RPC sw_vlan_rp  
 242           0         2          0  0.00%  0.00%  0.00%   0 RPC sw_backup_in
 243          60       254        236  0.00%  0.00%  0.00%   0 RPC capi_rp      
 244          28       151        185  0.00%  0.00%  0.00%   0 RPC stp_sp2mp_ap
 245           0         2          0  0.00%  0.00%  0.00%   0 RPC span_switch_
 246         608      4925        123  0.00%  0.00%  0.00%   0 RPC pm_switch_sp
 247      302784   3092687         97  0.00%  0.00%  0.00%   0 RPC online_diag_
 248           0         2          0  0.00%  0.00%  0.00%   0 RPC online_wan_d
 249           0         2          0  0.00%  0.00%  0.00%   0 RPC pt_switch_sp
 250           0         2          0  0.00%  0.00%  0.00%   0 RPC psecure_rp  
 251          84      4924         17  0.00%  0.00%  0.00%   0 RPC qnq_switch_s
 252           0         2          0  0.00%  0.00%  0.00%   0 RPC rf_cli_sp2rp
 253         116      4967         23  0.00%  0.00%  0.00%   0 RPC dot1x_aaa_rp
 254           0         2          0  0.00%  0.00%  0.00%   0 RPC epld_sp2rp  
 255          40       120        333  0.00%  0.00%  0.00%   0 RPC pagp_switch_
 256          12       123         97  0.00%  0.00%  0.00%   0 RPC vtp_const_ap
 257           0         4          0  0.00%  0.00%  0.00%   0 RPC udld_rp      
 258          12        40        300  0.00%  0.00%  0.00%   0 RPC snmp_stackli
 259           0         2          0  0.00%  0.00%  0.00%   0 RPC snmp_notify  
 260           0         2          0  0.00%  0.00%  0.00%   0 RPC ether_oam_sp
 261          16       236         67  0.00%  0.00%  0.00%   0 RPC idbman_sp2mp
 262           0        12          0  0.00%  0.00%  0.00%   0 RPC aapi_rp      
 263          24        83        289  0.00%  0.00%  0.00%   0 Entity MIB C6k P
 264           0         2          0  0.00%  0.00%  0.00%   0 RPC chapi_rp    
 265           0         1          0  0.00%  0.00%  0.00%   0 LC Registry Expo
 266           8        38        210  0.00%  0.00%  0.00%   0 Logger ICC Proce
 267         108       114        947  0.00%  0.00%  0.00%   0 Online Diag EEM  
 268           0         1          0  0.00%  0.00%  0.00%   0 SONET Traps      
 269           0         2          0  0.00%  0.00%  0.00%   0 VTPMIB EDIT BUFF
 270      490748     40146      12224  0.00%  0.00%  0.00%   0 crypto sw pk pro
 271           0         1          0  0.00%  0.00%  0.00%   0 EM Action CNS    
 272           0         2          0  0.00%  0.00%  0.00%   0 Module enable-di
 273          16        45        355  0.00%  0.00%  0.00%   0 RPC c6k_power_rp
 274           0         1          0  0.00%  0.00%  0.00%   0 vs_power_rp ICC  
 275           8        24        333  0.00%  0.00%  0.00%   0 RPC c6k_rp_envir
 276           0         1          0  0.00%  0.00%  0.00%   0 vs_rp_environmen
 277           0         1          0  0.00%  0.00%  0.00%   0 CONST AFL        
 PID Runtime(ms)   Invoked      uSecs   5Sec   1Min   5Min TTY Process
 278           0         2          0  0.00%  0.00%  0.00%   0 RPC c6k_oversubs
 279           0         2          0  0.00%  0.00%  0.00%   0 Rommon upgrade p
 280          76    662824          0  0.00%  0.00%  0.00%   0 RP Error Detecti
 281           0         2          0  0.00%  0.00%  0.00%   0 RPC error_detect
 282           0         1          0  0.00%  0.00%  0.00%   0 HW Capacity ICC  
 283           0         2          0  0.00%  0.00%  0.00%   0 RPC itasca_rp    
 284           0         1          0  0.00%  0.00%  0.00%   0 RP L2 Applicatio
 285           0         2          0  0.00%  0.00%  0.00%   0 RPC l2_macmove_s
 286           0         6          0  0.00%  0.00%  0.00%   0 LACP-MP Process  
 287           0         6          0  0.00%  0.00%  0.00%   0 PAgP-MP Process  
 288           0         2          0  0.00%  0.00%  0.00%   0 RPC pclc_g2_agsm
 289          88        45       1955  0.00%  0.00%  0.00%   0 RPC pclc_g2_fw_r
 290           0         2          0  0.00%  0.00%  0.00%   0 RPC pikachu_rp  
 291       63112   4238355         14  0.00%  0.00%  0.00%   0 IGMP Input      
 292        5784     23382        247  0.00%  0.00%  0.00%   0 RPC pm-mp        
 293        6608  41241781          0  0.00%  0.00%  0.00%   0 PM Callback      
 294    22402392 165490500        135  0.00%  0.30%  0.34%   0 Port manager per
 295          32    795482          0  0.00%  0.00%  0.00%   0 Max CPU utilizat
 296           0        12          0  0.00%  0.00%  0.00%   0 QM Process on RP
 297           0         7          0  0.00%  0.00%  0.00%   0 QM Looper Proces
 298           0         2          0  0.00%  0.00%  0.00%   0 QM Reply Process
 299           0         2          0  0.00%  0.00%  0.00%   0 QM Timer ACL Pro
 300           0        17          0  0.00%  0.00%  0.00%   0 RPC lcc_sp      
 301           0         8          0  0.00%  0.00%  0.00%   0 RPC fabman_sp    
 302           0         1          0  0.00%  0.00%  0.00%   0 vs_fabman_sp ICC
 303           4      1106          3  0.00%  0.00%  0.00%   0 rp to lc clock u
 304           0         1          0  0.00%  0.00%  0.00%   0 SeaErrorLogProc  
 305           8     66296          0  0.00%  0.00%  0.00%   0 SPA ENTITY Proce
 306           0     33147          0  0.00%  0.00%  0.00%   0 DHCPD Timer      
 307           8        24        333  0.00%  0.00%  0.00%   0 EC-Card-Cfg      
 308           0         2          0  0.00%  0.00%  0.00%   0 RPC vs_prov_lc_r
 309           0         2          0  0.00%  0.00%  0.00%   0 WiSM Process    
 310           0        49          0  0.00%  0.00%  0.00%   0 EEM Server      
 311           0         3          0  0.00%  0.00%  0.00%   0 EEM Policy Direc
 312           0         2          0  0.00%  0.00%  0.00%   0 EEM ED CLI      
 313           0         2          0  0.00%  0.00%  0.00%   0 EEM ED Counter  
 314           0         2          0  0.00%  0.00%  0.00%   0 EM ED GOLD      
 315           0         2          0  0.00%  0.00%  0.00%   0 EEM ED Interface
 316           0         2          0  0.00%  0.00%  0.00%   0 EEM ED IOSWD    
 317           0         2          0  0.00%  0.00%  0.00%   0 EEM ED None      
 318           0         2          0  0.00%  0.00%  0.00%   0 EEM ED OIR      
 319           0         5          0  0.00%  0.00%  0.00%   0 EEM ED RF        
 320           0         2          0  0.00%  0.00%  0.00%   0 EEM ED SNMP      
 321          16     66307          0  0.00%  0.00%  0.00%   0 EEM ED Timer    
 322           0         2          0  0.00%  0.00%  0.00%   0 EEM ED Test      
 323           0         2          0  0.00%  0.00%  0.00%   0 EEM ED Config    
 324           0         2          0  0.00%  0.00%  0.00%   0 EEM ED Env      
 325           0         2          0  0.00%  0.00%  0.00%   0 Call Home proces
 326           0         1          0  0.00%  0.00%  0.00%   0 IP SLA Monitor M
 327           0         1          0  0.00%  0.00%  0.00%   0 Online Diag CNS  
 328           0         1          0  0.00%  0.00%  0.00%   0 Online Diag CNS  
 329           0         4          0  0.00%  0.00%  0.00%   0 CWAN Bridge task
 330           0         1          0  0.00%  0.00%  0.00%   0 DHCP Snooping Sw
 331        8832   4240456          2  0.00%  0.00%  0.00%   0 PIM Process      
 332           0     66295          0  0.00%  0.00%  0.00%   0 VACL Logger      
 333        4864  39776611          0  0.07%  0.00%  0.00%   0 Mwheel Process  
 334           0         1          0  0.00%  0.00%  0.00%   0 CWAN OIR IPC Rea
 335           0         1          0  0.00%  0.00%  0.00%   0 RTTYS Process    
 336       16368   8170833          2  0.00%  0.00%  0.00%   0 MLSM Process    
 337        1984    161150         12  0.00%  0.00%  0.00%   0 MLSM Stat Proces
 339        4168   4020680          1  0.00%  0.00%  0.00%   0 NTP              
 340        3944   1126541          3  0.00%  0.00%  0.00%   0 DHCPD Database  
 341           0         1          0  0.00%  0.00%  0.00%   0 Connection Mgr  
 342       16448   4001594          4  0.00%  0.00%  0.00%   0 OSPF-1 Router  
Router#
does this device have a lot of traffic? just curious, because on the current version of the IOS we are running 12.2(17d), our CPU sits at 1% just about all the time. with the newer IOS's it would sit around 5-10% and spike to 100% under heavy load.
it has a fair amount -- lot of servers talking to each other -- this particular snapshot was after hours, but i dont see it spike up that high even under high load
thanks!