Is it possible to NAT some nodes, but not others?

Basically, I want to give a public IP address to one of our nodes inside the firewall. I know I could give him a private address and NAT from the public to the private sector, but I want to give the node address and no NAT at all and keep all the benefits of a firewall. It is a PIX 501.

Let me know if it is still possible.

Thank you

O

Howdy,

You can certainly. Use the following command to do this:

NAT (inside) - 0 access list

Then, create an ACL with the addresses that you do not want to be NAT'ed:

10.1.2.0 ip access list allow 255.255.255.0 any

Hope that help - rate pls post if it does.

Paresh

Tags: Cisco Security

Similar Questions

  • Why Oracle ManagedDataAccess (4.121.1.0) throws a System.FormatException "first chance" exception to the debugger when you use OracleCommand.BindByName (on some machines, but not others)?

    Why Oracle ManagedDataAccess (4.121.1.0) throws a System.FormatException "first chance" exception to the debugger when you use OracleCommand.BindByName (on some machines, but not others)?

    This occurs when calling a ref cursor-returning packaged function stored with OracleCommand.BindByName set to true.

    When BindByName undefined, it works as expected.

    I've only been able to recreate this problem on a machine in my control. This issue has also reported to me by a customer.

    I tried to change the locale of the system of EN - UK EN-US, but I was not aware of any change in behavior.

    Similarly, I've tried explicitly overriding the default locale of the system with the OracleGlobalization parameters, and it also had no effect.

    Please see the example below.

    ---

    Environment (default):

    Windows 7 Professional 64-bit SP1

    Visual Studio 12.0.21005.1 REL / / CAN BE SIGNIFICANT

    .NET framework 4.5.51209

    Local system: EN - UK (but also does not, EN-US).

    Oracle.ManagedDataAccess 4.121.1.0

    "< supportedRuntime version ="v4.0"sku =". NETFramework,Version=v4.5.1"/ >

    Environment (base):

    Windows 7 Professional 64-bit SP1

    Updated Visual Studio 12.0.31101.00 //SEE above 4

    .NET framework 4.5.51209

    Local system: EN - UK

    Oracle.ManagedDataAccess 4.121.1.0

    "< supportedRuntime version ="v4.0"sku =". NETFramework,Version=v4.5.1"/ >

    Call stack:

    mscorlib.dll. Unknown System.Number.StringToNumber(string str, System.Globalization.NumberStyles options, ref System.Number.NumberBuffer number, System.Globalization.NumberFormatInfo info, bool parseDecimal)
    mscorlib.dll. Unknown System.Number.ParseInt32(string s, System.Globalization.NumberStyles style, System.Globalization.NumberFormatInfo info)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Types.OracleRefCursor.OracleRefCursor (connection Oracle.ManagedDataAccess.Client.OracleConnection, OracleInternal.ServiceObjects.OracleRefCursorImpl refCursorImpl, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long initialLongFS, long initialLobFS, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleParameterImpl.ExtractRefCursorFromAccessor (Oracle.ManagedDataAccess.Client.OracleConnection conn, accessor OracleInternal.TTC.Accessors.Accessor, long fetchSize, Oracle.ManagedDataAccess.Client.PrmEnumType enumType, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution, int currentRow) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleParameterImpl.GetRefCursorFromBytes unknown (Oracle.ManagedDataAccess.Client.OracleConnection conn, accessor OracleInternal.TTC.Accessors.Accessor, long fetchSize, Oracle.ManagedDataAccess.Client.PrmEnumType enumType, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Client.OracleParameter.PostBind_RefCursor (connection Oracle.ManagedDataAccess.Client.OracleConnection, OracleInternal.TTC.Accessors.Accessor bindAccessor, long fetchSize, Oracle.ManagedDataAccess.Types.OracleIntervalDS sessionTimeZone, string commandText, string paramPosOrName, long longFetchSize, long lobFetchSize, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! OracleInternal.ServiceObjects.OracleCommandImpl.ExtractAccessorValuesIntoParam (Oracle.ManagedDataAccess.Client.OracleParameterCollection paramColl, Oracle.ManagedDataAccess.Client.OracleConnection connection, string commandText, long longFetchSize, long lobFetchSize, long [] scnFromExecution) unknown
    Oracle.ManagedDataAccess.dll! Unknown Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader(bool requery, bool fillRequest, System.Data.CommandBehavior behavior)
    Oracle.ManagedDataAccess.dll! Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteReader (unknown)

    > ManagedSimpleRefCursor1.exe! NoddyConsole.Program.Command_ExecuteReader_BindByName_Fails (Line 63 c#)

    Example:

    ----

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    using Oracle.ManagedDataAccess.Client;

    using Oracle.ManagedDataAccess.Types;

    using System.Data;

    namespace NoddyConsole

    {

    public class Program

    {

    public static int Main (string [] args)

    {

    Error int = 0;

    Errors += Command_ExecuteReader_BindByName_Fails();

    Errors += UseReturnValue_Command_ExecuteNonQuery_BindByName_Fails();

    return errors;

    }

    public static int Command_ExecuteReader_BindByName_Fails()

    {

    Error int = 0;

    Try

    {

    var conn = new OracleConnection ("UID = USER; Password = PASS; ("Data Source = / / your-host: 1521 / yours-sid");

    var conn = new OracleConnection ("user Id = UNIT620; Password = UNIT620; ("Data Source = / / ln1apidb01:1521 / fm");

    Conn. Open();

    IRRELEVANT

    OracleGlobalization og is conn. GetSessionInfo();

    og. DateFormat = "HH24:MI:SS MON-DD-YYYY";

    Conn. SetSessionInfo (og);

    var cmd is conn. CreateCommand();

    cmd.CommandType = CommandType.Text;

    BindByName. cmd = true;

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_1 (in_code = >: in_code); END; « ;

    var prm1 is cmd. CreateParameter();

    PRM1. ParameterName = "rc";

    PRM1. Direction = ParameterDirection.ReturnValue;

    PRM1. OracleDbType = OracleDbType.RefCursor;

    cmd. Parameters.Add (prm1);

    / * SHAUN.recreate_issue_1 * /.

    var prm2 is cmd. CreateParameter();

    PRM2. ParameterName = "in_code";

    PRM2. Direction = ParameterDirection.Input;

    PRM2. OracleDbType = OracleDbType.Varchar2;

    PRM2. Value = "A";

    cmd. Parameters.Add (prm2);

    /* */

    var reader is cmd. ExecuteReader(); FAILS to System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)

    /* *-/

    OracleRefCursor orc = null;

    cmd ExecuteNonQuery()); must fail here

    ORC = cmd. Parameters ["rc"]. Value as OracleRefCursor;

    If (orc is nothing)

    throws InvalidOperationException new ("Invalid return the ref cursor type");

    var = orc player. GetDataReader();

    /* */

    While (reader. Read

    {

    var values = new object [reader. FieldCount];

    drive. GetOracleValues (values);

    for (int i = 0; i < values.) Length; (++ I)

    {

    Console.WriteLine(values[i]);

    }

    }

    drive. Dispose();

    cmd. Dispose();

    Conn. Dispose();

    }

    catch (Exception ex)

    {

    Console.Error.WriteLine (ex) Message);

    Errors ++;

    }

    Finally

    {

    Return (true);

    }

    return errors;

    }

    public static int UseReturnValue_Command_ExecuteNonQuery_BindByName_Fails()

    {

    Error int = 0;

    Try

    {

    var conn = new OracleConnection ("UID = USER; Password = PASS; ("Data Source = / / your-host: 1521 / yours-sid");

    Conn. Open();

    IRRELEVANT

    OracleGlobalization og is conn. GetSessionInfo();

    og. DateFormat = "HH24:MI:SS MON-DD-YYYY";

    Conn. SetSessionInfo (og);

    var cmd is conn. CreateCommand();

    BindByName. cmd = true; // ####

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_1 (in_code = >: in_code); END; « ;

    cmd.CommandText = "START: rc: = SHAUN.recreate_issue_2; END; « ; No params, works

    var prm1 is cmd. CreateParameter();

    PRM1. ParameterName = "rc";

    PRM1. Direction = ParameterDirection.ReturnValue;

    PRM1. OracleDbType = OracleDbType.RefCursor;

    cmd. Parameters.Add (prm1);

    / * SHAUN.recreate_issue_1 * /.

    var prm2 is cmd. CreateParameter();

    PRM2. ParameterName = "in_code";

    PRM2. Direction = ParameterDirection.Input;

    PRM2. OracleDbType = OracleDbType.Varchar2;

    PRM2. Value = "A";

    cmd. Parameters.Add (prm2);

    /* */

    var reader is cmd. ExecuteReader();

    OracleRefCursor orc = null;

    HERE does NOT cmd. BindByName = true; System.FormatException first-chance exception in at System.Number.StringToNumber (String str, NumberStyles options, NumberBuffer & number, NumberFormatInfo info, Boolean parseDecimal)

    cmd ExecuteNonQuery());

    ORC = cmd. Parameters ["rc"]. Value as OracleRefCursor;

    If (orc is nothing)

    throws InvalidOperationException new ("Invalid return the ref cursor type");

    var = orc player. GetDataReader();

    While (reader. Read

    {

    var values = new object [reader. FieldCount];

    drive. GetOracleValues (values);

    for (int i = 0; i < values.) Length; (++ I)

    {

    Console.WriteLine(values[i]);

    }

    }

    drive. Dispose();

    ORC. Dispose();

    cmd. Dispose();

    Conn. Dispose();

    }

    catch (Exception ex)

    {

    Console.Error.WriteLine (ex) Message);

    Errors ++;

    }

    Finally

    {

    Return (true);

    }

    return errors;

    }

    }

    }

    ---

    create or replace package THAT SHAUN is

    type ref_cur_type is ref cursor;

    function recreate_issue_1)

    in_code varchar2: = null

    ) return ref_cur_type;

    end SHAUN;

    /

    create or replace package body what SHAUN

    -TTS000233

    function recreate_issue_1)

    in_code varchar2: = null

    ) return ref_cur_type is ref_cur ref_cur_type;

    Start

    Open the ref_cur for

    Select UO.object_name from user_objects UO;

    Return ref_cur;

    end recreate_issue_1;

    end SHAUN;

    /

    ---

    Thanks a lot to qualify again for me Alex.  I'll try upgrading to the latest version of the provider.

    The difference in behavior between the two hosts was found to be reduced to differences in configuration VS.

    Checking 'Just my code' prevents the first chance thrown in the debugger exception. As in fact, the exception is handled in the provider, it is enough for me.

  • my cd-rom reads some discs but not others like command and conquer. the first decade. IM using windows xp serv pack 3__

    my cd rom usually read some disks but others will read

    mkuholr,
    When you say that you "tried other cd rom" do you mean you replaced the drive to CD or just tried another disc?  If you haven't tried another drive and it's something that you are able to do, I would say that.  It is possible that it could be hardware related.

    I would also say that you check that you do not have any type of infection on your system.  Get rid of malware Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Rocket support some .jpg, but not others? Pls help =.

    Okay so I'm a bit confused why doesn't my 4 GB Fuze in charge of some .jpg and then others?  Sorry if it took a LOT, but it's confusing and I'd like TO get this understood b4 I deploy here next week.

    TX and GL!

    Always use the Sansa Media Converter to put the photos in your Sansa. MSC can accept a large number of picture formats.

    Stylesheet wrote:

    Okay so I'm a bit confused why doesn't my 4 GB Fuze in charge of some .jpg and then others?  Sorry if it took a LOT, but it's confusing and I'd like TO get this understood b4 I deploy here next week.

    TX and GL!

  • Why do AS3 highlighting some fonts, but not others (which are quite common)?

    Hi all!

    I have a simple question that hopefully has a simple answer (which mocks me with his elusive). In the code below (from "University of Programming ActionScript 3.0 Game" of Gary Rosenzweig (2nd ed.)), I declare a style sheet simple using AS3 supported all the tags/attributes to emphasize a HTML link. My question is this: why AS3 don't highlight the chosen font (Arial), but still it will highlight some other fonts I have to substitute (such as "Times New Roman" and "Garamond")?

    // create a basic format
    var myFormat:TextFormat = new TextFormat();
    myFormat.font = "Arial";
    myFormat.size = 24;
    myFormat.bold = true;
    var myStyleSheet:StyleSheet = new StyleSheet();
    myStyleSheet.setStyle("A",{textDecoration: "underline", color: "#0000FF"});
    // create a text field with a Web URL link
    var myWebLink:TextField = new TextField();
    myWebLink.defaultTextFormat = myFormat;
    myWebLink.styleSheet = myStyleSheet;
    myWebLink.selectable = false;
    myWebLink.htmlText = "Visit <A HREF='http://flashgameu.com'>FlashGameU.com</A>!";
    myWebLink.x = 80;
    myWebLink.y = 90;
    myWebLink.width = 400;
    myWebLink.height = 30;
    addChild(myWebLink);
    var myLink:TextField = new TextField();
    myLink.defaultTextFormat = myFormat;
    myLink.styleSheet = myStyleSheet;
    myLink.selectable = false;
    myLink.htmlText = "Click <A HREF='event:testing'>here</A>";
    myLink.x = 80;
    myLink.y = 190;
    myLink.width = 400;
    myLink.height = 30;
    addChild(myLink);
    addEventListener(TextEvent.LINK, textLinkClick);
    function textLinkClick(event:TextEvent) {
     trace(event.text);
    }
    

    The underscore is here, that you're not just allowing sufficient height for the textfield object to show him.  TNR is a shorter police to the same font size, he manages to appear in 30 height.

  • Firefox saves some passwords, but not others

    It won't save my password for mail.yahoo.com but stores all my other passwords. I entered NOTHING in the Exceptions box under Security > passwords, and no. Yahoo entered any there in the section registered passwords.

    I tried to restart all and clear all cache and user data.

    The Web of Yahoo site uses autocomplete = off to prevent registration of data in form as the name and password of Firefox.

    You can remove autocomplete = off with a bookmarklet to make Firefox to store data of form such as names and passwords.

    Note that Firefox doesn't form data automatically populate automatically saved when autocomplete = off is used, you must double-click the empty name field for a drop-down list.

  • Firefox open some websites but not others, even with google chrome and IE

    Basically a day after the installation of sc2 my firefox started running really, really slowly and stopped at open sites that ive always open perfectly fine before. I open it;

    http://EU.battle.NET + American site

    http://forums.wow-Europe.com/?SID=1 + American website

    Varied Teamliquid.net , load luck Brooks home page

    mounts

    No problem with these

    I can't open;

    YouTube

    Google 9/10

    Yahoo for my email

    Cynicalbrit.com

    Live webcam of Xfire

    Arena junkies.com

    I ran spyware scans, virus scanners, checked to make sure my NET settings in firefox are fine, nothing works, rebooted my router, reinstalled firefox, look for the updates, all disabled plugins, will revive some, cheeck for the plugin updates... nothing works.

    If someone could help that would be great.

    The site provides services for World of Warcraft for the community of WoW players. Your character can reach level 85 quickly and safely with our WoW Powerleveling service. While you are busy at work, learn at school or sleep, the company can help: PvP Honor Points Farming, PvP conquest Points Leveling and personal rating of Arena, Power Leveling, Points of Justice and Valor Points, Instance Dungeon runs and loot, awards of honor PvP, arena PvP, Gold Farming, Profession Leveling craft awards.
    http://www.yehforgames.com/

  • VPN fails under W8 on some networks but not others

    I'm back to an Institute that I visited last year.  Last year, I was using a Windows 7 machine, and two VPN services that I use worked perfectly.  This year I'm back, but with a machine of Windows 8.  Neither the VPN service works.  Furthermore, I have excluded the problem in network of the Institute, because my wife brought his Windows 7 machine with it, and it still works perfectly.  The problem is subtle: on a side-trip to Berlin, VPN Windows 8 worked well a of the hotel network.

    Here are the two errors I receive, each with a different VPN server:

    1 standard server VPN in Windows 7 on my desktop at home: "error 806: the VPN connection between your computer and the VPN server was not successful...". "He goes on to say that the most common problem is that something is not configured to allow packets to the Protocol GRE Generic Routing Encapsulation ().

    2. the University VPN server: "Error 800: remote connection does not because attempts VPN tunnels failed...". »

    Suggestions?  Thank you.

    Hi Ken,

    The question is more suited in the TechNet forums. So I would say you mention the link and send the request in this forum for better support.

    http://social.technet.Microsoft.com/forums/en-us/w8itpronetworking/threads

    For any information related to Windows, feel free to get back to us. We will be happy to help you.

  • Why the Smart Guides work on some objects, but not others?

    Hello world. I try to use benchmarks commented to help me align a small arc in a corner, so I can merge into a larger shape. Well, I got my bow on one of the anchor points and I drag the path to full fitness, but no hanging, no label 'path' or 'intersection' appears. I have all the options for Smart Guides is checked and I've got Snap to Point activated but still no luck. It's a precise alignment, a guessing game. Any idea? -Mike

    arc.png

    Hold down the Cmd key while dragging.

  • Why the HDR toning work with some pictures, but not for others?  I have CS6.

    I have Photoshop CS6 and when I go to HDR toning, it is only highlighted for work with some photos, but not others, why?  Thank you.

    HDR toning does not work with CMYK images. Change the RGB color mode, and then you will be able to use HDR toning. It also works with the color to grayscale mode.

  • Is it possible to delete some network locations not in use? Thank you

    Is it possible to delete some network locations not in use? Thank you

    Are you talking about system preferences-> network-> location-> Edit-> [-]

    or are you talking about the system preferences-> network-> advanced-> preferred networks-> [-]

  • Reinstal Cloud but not uninstal not possible as long as the app running, but not other applications in the Task Manager

    Hello

    I need to reinstall the Cloud but uninstal is not possible as long as the app running, but not other applications in the Task Manager.

    Windows 7

    Uninstaller: "another version of office of creative cloud or an installer Adobe is running...". »

    TaskManager: browser runs only.

    Windows Installer / change: "unable to désinstaller creative cloud to desktop. You still have creative Cloud computer applications that need it.

    So, how I re install this, thank you

    Safe mode using the application of Creative Cloud Uninstaller has worked.

  • Application of air using URLLoader w/HTTPS fails on some Win7 computers, but not others

    We have an Air (SDK 4.5) application, we are ready to deploy, but fails to connect via the HTTPS URL with error #2032 on some Win7 computers, but not others.

    For troubleshooting, I can reproduce the problem by using the example of app simple test given in the AS3 URLLoader documentaton.

    The problem is that when you run the application on some Win7 boxes, trying to connect to various servers via https and download a simple document, the request fails with "Error #2032".

    The version of the Air runtime is 3.0, and we have updated to 3.1 with the same result. The problem is related to the HTTPS only: the same URLS work fine with HTTP.

    Now for the fun: an application exact air works fine on another Win7 box, of the area of XP, OSX 10.6 and 10.7, pointing to the same URL HTTPS OSX.

    More fun: on Win7 boxes that in case of failure, it only fails with some https URL and not others, and URLS that fail with this Air app on these some win7 boxes work perfectly with the same air application on several others mentioned computers (XP, OSX and other win7).

    I know that #2032 Error is a very generic error "io" and could be the result of many things, but in this case, I did some research to isolate what could happen;

    on win7 boxes where the air application fails:

    If we point the air application on a virtual host on our setup of server apache with a self signed SSL certificate, the air application appears a sign saying the cert isn't trused, and if we click on 'continue', we get the error 2032 and a 0 http status code. Apache never logs on demand. This tells me that the application of air attempts to negotiate an SSL session with the apache server, but never succeeds.

    If we indicate the air even application a virtual host on the same configuration of Apache Web server with a REAL SSL cert, the air application never appears unreliable Panel, but still does not work, 2032 and the http status code returned 0.

    If we indicate the air even application a virtual host on the same server apache but HTTP instead of HTTPS, there is no failure and demand ends with an http 200 status code.

    Interestingly, if we note the same air application various other HTTPS URLS on different hosts, our servers and others on the internet that we know work, some fail the same way and some work very well.

    Now: If we run the same tests with the same air app, using the same URL HTTPS on other computers mentioned (XP, OSx and other win7), there is no failure and demand always ends well.

    Another finding: you could theorize that there is something wrong with those boxes of win7, but the HTTPS URLS that fail with the air app, nice job on these boxes in IE and Chrome, also the same test app compiled as a Flex application and executed in the browser on computers that fail to work fine with the same HTTPS URLS that fails and the application of air , for the air runtime of problems on some win7 boxes.

    It is a BIG problem for us, our Air application is a consumer application and will be widely deployed, and we cannot have it not be performed only on some computers and have no idea why.

    Any help would be apprechiated.

    Thank you

    Bob Reynolds

    Software engineer

    EDT

    PROBLEM SOLVED (mostly), however I end up with big problems in this...

    The problem was on the failure both Win7 boxes were sigficantly off the coast. Their synchronization solved the problem. I assume that others who have similar problems check the time on the computers/servers.

    This raises the question of why the AIR runtime cannot negotiate an SSL connection under this condition, but each browser we tested on those same computers could?

    I can buy that maybe the SSL protocol must by definition fail under these conditions, however for use by consumers, where it can not be controlled, the implementation must be loose to allow upward, and indeed all commercial browsers can negotiate SSL under these conditions connections (time synchronization offset) - ecommerce would be in trouble if consumers can probably not to connect to a service secured via Internet simply because the time is out of their computer.

    Can anyone in the Group Air address Adobe this concern on the use of AIR for applications of consumer under this condition where you can't rely on your application to install or run on who knows how many computers to consumers?  And to make things worse, AIR doesent provide revised, detailed error information so it is VERY tedious or impossible to even troubleshoot a comply with instructions like that--on the ground, it would be rather impossible.

    Thank you

    Bob Reynolds

  • Microsoft error reporting occurs again with several service packs that need to be sent in an error report. This happens on some machines and not others on a school campus.

    I noticed this error that occur more frequently on multiple machines only when connected to an administrator account. The error on some machines, but not the others if they were all created from the same image of a HD master.

    I haven't noticed any malfunction of applications, but this error occurs, breed a little bit is set.
    Images of the error:

    http://imgur.com/delete/6acg8Ddt2V
    http://imgur.com/delete/3auBhSinkL
    http://imgur.com/delete/m1Po7IPlZE

    ddefreit,
    Because it is related to a deployment scenario and is involving multiple machines, you will need to check with the TechNet site for the appropriate support.
    http://TechNet.Microsoft.com/en-us/Windows/bb264763.aspx
    Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Why my Acer R7 touch keyboard appears in Chrome and IE, but not other applications?

    I am running Windows 8.1, with the latest drivers and updates. My touchpad works when using Chrome and IE, but not other applications. He has never had this problem until today.

    I guess I posted the solution somewhere else, because it was originally a lot of questions, but here is my post of this thread as well:

    "ok, strangest thing ever." Understand the question. The touchpad has become corrupted. I used the touchscreen keyboard Troubleshooter to solve another problem and voila! Rotation of restored Ezel. I think that Chrome is was as tactile keyboard operations from time to time, not sure. But I know that I fixed my problem. No expenditure necessary.

    A link to download the touch keyboard Troubleshooter is to prevent it from this page:
    http://Windows.Microsoft.com/en-us/Windows-8/using-touch-keyboard Hope this helps someone else.

Maybe you are looking for