Interface's Netmask query

       Changing netmask of an interface to 255.255.255.255, will make the interface inactive? Can we still use that interface to for routing emails?
I using ESA C670 with AsyncOS 8.0.1

Mail still routes --->
Snippet from 'showconfig' of the interface I chose to set w/ 255.255.255.255 mask:
  airbus_1
  10.2.3.4
  Data 1
  255.255.255.255
  airbus_1.test.com
Mail logs, showing accept and process --- domain "boom.com" is being routed to /dev/null --- but, still routes...
Thu Feb 13 02:03:18 2014 Info: New SMTP ICID 25 interface airbus_1 (10.2.3.4) address X.Y.Z.75 reverse dns host unknown verified no
Thu Feb 13 02:03:18 2014 Info: ICID 25 ACCEPT SG UNKNOWNLIST match sbrs[none] SBRS not enabled
Thu Feb 13 02:04:01 2014 Info: Start MID 20 ICID 25
Thu Feb 13 02:04:01 2014 Info: MID 20 ICID 25 From: <[email protected]>
Thu Feb 13 02:04:13 2014 Info: MID 20 ICID 25 RID 0 To: <[email protected]>
Thu Feb 13 02:04:22 2014 Info: MID 20 Subject 'yo yo yo '
Thu Feb 13 02:04:22 2014 Info: MID 20 ready 135 bytes from <[email protected]>
Thu Feb 13 02:04:22 2014 Info: MID 20 matched all recipients for per-recipient policy DEFAULT in the inbound table
Thu Feb 13 02:04:22 2014 Info: MID 20 queued for delivery
Thu Feb 13 02:04:22 2014 Info: Delivery start DCID 0 MID 20 to RID [0]
Thu Feb 13 02:04:22 2014 Info: Message done DCID 0 MID 20 to RID [0]
Thu Feb 13 02:04:22 2014 Info: MID 20 RID [0] Response '/dev/null'
Thu Feb 13 02:04:22 2014 Info: Message finished MID 20 done
Hope this helps!
-Robert
(*If you have received the answer to your original question, and found this helpful/correct - please mark the question as answered, and be sure to leave a rating to reflect!)

Similar Messages

  • Interface Program - extraction query

    Hi,
    I have a requirement to extract (e.x 5 fields from table).
    Query 1 :
    Out of 5, for one field, i need to fetch from zcustom program (ALV output) and return back to my interface prgm . I am not sure how to proceed on this.
    Pls provide your guidance on this.
    Query 2 :
    For the other field i need to fetch from CS15. 
    Please guide me on the above two queries.

    Mail still routes --->
    Snippet from 'showconfig' of the interface I chose to set w/ 255.255.255.255 mask:
      airbus_1
      10.2.3.4
      Data 1
      255.255.255.255
      airbus_1.test.com
    Mail logs, showing accept and process --- domain "boom.com" is being routed to /dev/null --- but, still routes...
    Thu Feb 13 02:03:18 2014 Info: New SMTP ICID 25 interface airbus_1 (10.2.3.4) address X.Y.Z.75 reverse dns host unknown verified no
    Thu Feb 13 02:03:18 2014 Info: ICID 25 ACCEPT SG UNKNOWNLIST match sbrs[none] SBRS not enabled
    Thu Feb 13 02:04:01 2014 Info: Start MID 20 ICID 25
    Thu Feb 13 02:04:01 2014 Info: MID 20 ICID 25 From: <[email protected]>
    Thu Feb 13 02:04:13 2014 Info: MID 20 ICID 25 RID 0 To: <[email protected]>
    Thu Feb 13 02:04:22 2014 Info: MID 20 Subject 'yo yo yo '
    Thu Feb 13 02:04:22 2014 Info: MID 20 ready 135 bytes from <[email protected]>
    Thu Feb 13 02:04:22 2014 Info: MID 20 matched all recipients for per-recipient policy DEFAULT in the inbound table
    Thu Feb 13 02:04:22 2014 Info: MID 20 queued for delivery
    Thu Feb 13 02:04:22 2014 Info: Delivery start DCID 0 MID 20 to RID [0]
    Thu Feb 13 02:04:22 2014 Info: Message done DCID 0 MID 20 to RID [0]
    Thu Feb 13 02:04:22 2014 Info: MID 20 RID [0] Response '/dev/null'
    Thu Feb 13 02:04:22 2014 Info: Message finished MID 20 done
    Hope this helps!
    -Robert
    (*If you have received the answer to your original question, and found this helpful/correct - please mark the question as answered, and be sure to leave a rating to reflect!)

  • Desiging an interface using SQL query

    Hi All,
    REQ: I have some SQL queries , i need to desing an interface for it .. in ODI 10G
    That SQL query contain subquery like
    // SELECT
    ooh.header_id
    ,ooh.sold_to_org_id as customer_account_id
    ,ooh.order_number
    NVL((
    SELECT
    SUM(opa.adjusted_amount)
    FROM
    apps.oe_price_adjustments opa
    WHERE
    opa.Header_id = ooh.header_id))
    SELECT ())//
    so on ...;
    I'am not sure how to impliment interfaces for the above query.
    I mean query contains so many sub-querys, Do I need to create separate interface for each SELECT statement.
    If so how to bind that tables in the interface.
    Thanks
    vam

    Hi
    How are linked your subqueries ?
    Are the subqueries in the main select statement, or in the from statement, or separated by union clause ?
    One issue is to create view in your database that represents some subqueries, and generate a datastore for these view.
    Then create one interface that use these different view.
    Another solution is to create many interfaces, you can creat "yellow interfaces" and use the option "subqueries".

  • Querying on interface

    I noticed that Kodo 3.3 supports query on interface - is it part of JDO 2.0
    persistent interface support? What else is implemented? Can we associate
    Interface with Implementation to do the rest of the staff?

    >I noticed that Kodo 3.3 supports query on interface - is it part of JDO 2.0
    persistent interface support? What else is implemented? Can we associate
    Interface with Implementation to do the rest of the staff?We've had querying on interfaces for a long time!
    The Kodo implementation is currently different than JDO 2, in that JDO 2
    requires you to explicitly list your persistent interfaces in metadata, along
    with which classes implement them. Kodo currently just dynamically tracks which
    persistent classes implement which interfaces, and turns any query on an
    interface into a query on the set of the implementing classes.

  • Query that navigate though signle-valued fields which contain interface type

    Does kodo support query like this?
    Class FoodConsumer{
    Eatable e;
    Interface Eatable{
    Class Apple implements Eatable{
    String brand;
    i want to get all instance of Class FoodConsumer with filter like this
    "((Apple)e).brand == \"HK\""
    With Kodo 3
    The result is a sql statement like this:
    SELECT t1.JDOID, t1.JDOCLASS, t1.JDOVERSION, t1.A_JDOID, t1.E FROM WHERE
    t0.BRAND = ? [params=(String) HK]
    In the sql statement, the table specifier are missed
    here is the metatdata
    <class name="FoodConsumer">
    <field name="e" persistence-modifier="persistent"/>
    </class>
    <class name="Apple">
    </class>

    Thank you very much
    "Abe White" <[email protected]> wrote in message
    news:[email protected]..
    Unfortunately, you cannot navigate through an interface in a query, even
    with casting. This is because it is impossible to join in SQL based on
    the stringified oid that is stored for interface instances.

  • Interface program with JDBC

    I created three database tables in PostgreSQL database and interfaced it with JDBC.
    In the interface program, I queried the program to retrieve data from two tables. I got results from the first table, but did not get any result from the second table. Rather, the system sent the following error message: Exception in thread "main" java.sql.SQLException: ERROR: parser: parse error at or
    near "mdas_ar_coments"
    at org.postgresql.core.QueryExecutor.executeV2(QueryExecutor.java:289)
    Mdas_ar_coments is the name of the second table. I have checked the names, there is no spelling mistake in both the database tables and interface program.
    Please, let me know how to query two or more tables in a JDBC interface program.
    Thanks.

    Please show me how you are attempting to query two tables using JDBC.

  • Runtime flow sequence of receiver or interface determinations is based on

    There is interface whose message flows as mentioned below.
    System A <=> System B <=> System c
    BPM: Receive -> sync send 1 -> sync send 2 -> async send
    System A sends the sync message to System B, System b response as request to System c and System C
    response as response to System A
    Receiver/interface determinations:
           i: RD/ID: System A to IP
          ii: RD/ID: IP to System B  (Operation mapping from IP to System B)
         iii: RD/ID: IP to system C  (Operation mapping from IP to System C)
    No conditions in Receiver/interface determination
    My query is how IE determines after i:RD/ID execution it should go to ii/iii: RD/ID ?
    Is it based on Message interface(Message type) i.e Receiver IP message interface should be similar to sender
    IP message interface ?
    Otherwise based on the sequence of creation of RD/ID in Configuration scenario ?

    Source Mesage interface in 2nd RD/ID is not dependent on previous target Message interface of RD/ID. Both interfaces can be any message interfaces ?
    So you are asking me if it's possible - then I would say yes.
    Let consider this - You have received a message in the BPM and this message has to be called on two different systems synchronously. In this case Both the synch step will have the Source interface as the message received in BPM correct? Does the 2nd Synch step Source Interface is dependant on 1st Synch step Target Interface? - NO.
    I hope it clears a bit.
    I'm not understanding your other question...

  • Query on Encrpytion and Decryption in FTP server

    Hi Experts,
    We are currently using SFTP receiver adapter in one of our interface.
    Our query is, is it possible to do encryption and decryption of file in the sender and receiver FTP channel.
    Your inputs are welcome.
    Thanks in Advance.
    Regards
    Suganya.

    check below link,
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307deff5-a5ed-2e10-e3b2-96770ee3ad17?QuickLink=index&overridelayout=true]

  • Report to Report Interface - Pass Key Figures

    Hello,
    I have setup a RIR interface on a Query to jump to another query for detailed inforamtion - works perfect.The issue I am facing is,there's a particular Keyfigure value in the sender query (derived from a Cube) which does not exist in the receiver query(ODS). Is there a way to get this information across to the Receiver Query ?
    Thanks,
    hdev

    Hi, Hdev.
      Do you have any documentation on how the Report to Report Interface works?  If not, could you explain briefly what it is?  Much appreciated!
    Thanks,
    Sarah-Jane

  • Regarding total number of rows in query analyzer

    Dear all,
    I have one query. when i execute the query using analyzer i get upto 65000 rows only in excel file. We have 2007 excel format and it has row-capacity more than that. 
    From report i should get around 80000 rows. Is there any setting to extend the no. of rows, so that i can get complete report?
    i can give some restriction on query, but that is another option.
    Plz guide me for the same.
    Regards,
    Omkar
    Edited by: omkar patil on Jul 23, 2008 12:09 PM

    Query JumpTargets are nothing but going one query to 1.another Query,
    2. Any Transaction Code( screen) at cube level OR ODS level.
    Clearly I am specifing that If u wnt to diplay Detailed data( ODS data) for respect Record at the cube level we will use this QueryJump Tagets .
    It is also called as Report to Report Interface.
    Example scenario:
    On Cube level query Diplaying Different vendor balances but it is not diplaying the document details for the balances for that perticuler vendor .
    so at this situation u have to create Interface between Cube query with Vendor details & ODS query with document Details of that perticuler vendor.
    How to do This : steps to do this:
    1.Goto Transaction code RSBBS.
    2.There ur having two tabsrips 1.Query 2.Infocube
    3.click on query tabstrip it will ask query name ---> enter the query name ( Base query Which u created on Cube vendor details)
    4.click on create button it will give some some screen in that select REPORT TYPE as BW Bex Query radio button-->select Traget system Local-->at Report u have to enter ur Detailed report which u created on ODS.
    5. Click on Transfer (f8)
    6.Save it.
    How to check query jump:
    1. Execuite ur base Query ( Query which is created on ur cube )
    2.click on any( vendor) column of that report -
    >right click->select goto-> there u will see the query name which u created on ODS ->click on it
    It will dispaly the detail report for that (vendor) column.

  • Plz Help : Can use drop table in dataset query...?

    Can I use this script in my dataset Query in SSRS 2008 R2?

    Hi NafisehPanahi,
    Reporting Services provides both a graphical query designer and a text-based query designer for creating queries to retrieve data from a relational database for a report dataset in Report Designer.
    The text-based query designer does not preprocess the query and can accommodate any kind of query syntax, therefore, you can select “Edit as Text” to type the same command to SQL Server Management Studio (SSMS).
    The graphical query designer supports three types of query commands: Text which supports standard Transact-SQL query text for relational database data sources, StoredProcedure, or TableDirect.
    For the details, please see the links below:
    Graphical Query Designer User Interface
    Text-based Query Designer User Interface
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • Sub query with order by

    Hi ,
    I have created a sub query with order by on a column.( i have cutomized the IKM control append to put order by).I can see the order by condition.If i use this subquery(yellow interface) in main query(is also yellow interface) i can't see the order by condition
    Subquery(Q-yellow interface):
    select
    PID,
         START_TIME,
         ACTION_TYPE_CODE
    FROM
    select      DISTINCT
         SERVICE_TRACKING_S.PID PID,
         TO_TIMESTAMP(TO_CHAR(SERVICE_TRACKING_S.ACTION_TIME,'DD-MON-YY HH24:MI:SS'),'DD-MON-YY HH24:MI:SS') START_TIME,
         SERVICE_TRACKING_S.ACTION_TYPE_CODE ACTION_TYPE_CODE
    from     KSTGDB.SERVICE_TRACKING_S SERVICE_TRACKING_S
    where          (1=1)     
    ORDER BY-----------------------------------------------
    PID
    ,START_TIME ASC
    ODI_GET_FROM
    Main query(Q1--yellow interface):
    select
    PID,
         START_TIME,
         ACTION_TYPE_CODE,
         RN,
         RN_MAX
    FROM (     
    select      
         Q.PID PID,
         Q.START_TIME START_TIME,
         CASE WHEN Q.START_TIME-LAG(Q.START_TIME,1,Q.START_TIME) OVER (PARTITION BY Q. PID ORDER BY Q.START_TIME)> numtodsinterval(75,'minute')
    or Q.PID!=LAG(Q.PID,1,0) OVER (PARTITION BY Q.PID ORDER BY Q.START_TIME) THEN 1 ELSE Q.ACTION_TYPE_CODE END ACTION_TYPE_CODE,
         ROW_NUMBER() OVER(PARTITION BY Q.PID ORDER BY Q.START_TIME) RN,
         count(*) over (PARTITION BY Q.PID ORDER BY Q.START_TIME ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING )
    RN_MAX
    from     (
    select      DISTINCT
         SERVICE_TRACKING_S.PID PID,     TO_TIMESTAMP(TO_CHAR(SERVICE_TRACKING_S.ACTION_TIME,'DD-MON-YY HH24:MI:SS'),'DD-MON-YY HH24:MI:SS') START_TIME,     SERVICE_TRACKING_S.ACTION_TYPE_CODE ACTION_TYPE_CODE
    from     KSTGDB.SERVICE_TRACKING_S SERVICE_TRACKING_S
    where     (1=1)
    ----------------- i don't see order by here--------------------------------
    ) Q
    where          (1=1)     
    ) ODI_GET_FROM
    thanks in advance
    K

    Hi,
    Add a new KM step with the SQL you want to use for the sub query and select the +"Use Current Command for Derived-Table sub-select statement"+ checkbox. This new step can be the last one of your IKM.
    Basically, you can copy the select statement of the "Insert new rows" step.
    Regards,
    JeromeFr

  • Report-to-Report Interface problem with default values

    Hi all.
    I have RTR interface where target query has default values, so when I jump to target query it doesn't return whole data because of this default filter.
    Is it possible to remove this default filter in query in case it is executed through Report-To-Report?
    I still need this default filter then I execute target query separately.

    Dear Gediminas,
    Make sure that you have same infoobjects which are having default values present in the 2 queries.
    After createing settings in RRI...select that setting.....click on ASSIGNMENT DETAILS tab...
    Assign Type as how they are in 1st query...
    Assign selection type as how they are in 1st query...
    Assign GENERIC to the rest of the fields..
    Cintinue
    Save.
    Assign points if it is helpful.
    Regards,
    R.

  • Query vlan in cisco ACE

    I've configured query vlan FT internface as follow:
    class-map type management match-any query_VLAN
      2 match protocol icmp any
    policy-map type management first-match query_VLAN_MGT
      class query_VLAN
        permit
    interface vlan 11
      description ##query vlan##
      ip address 192.30.3.196 255.255.255.252
      peer ip address 192.30.3.195 255.255.255.252
      access-group input ANY-ANY
      service-policy input query_VLAN_MGT
      no shutdown
    ft interface vlan 10
      ip address 192.30.3.192 255.255.255.252
      peer ip address 192.30.3.191 255.255.255.252
      no shutdown
    ft peer 1
      heartbeat interval 300
      heartbeat count 10
      ft-interface vlan 10
      query-interface vlan 11
    and when I do "sh ft peer sum" I see following:
    sh ft peer sum
    Peer Id                      : 1
    State                        : FSM_PEER_STATE_COMPATIBLE
    Maintenance mode             : MAINT_MODE_OFF
    FT Vlan                      : 10
    FT Vlan IF State             : UP
    My IP Addr                   : 192.30.3.191
    Peer IP Addr                 : 192.30.3.192
    Query Vlan                   : 11
    Query Vlan IF State          : UP, Manual validation - please ping peer
    Peer Query IP Addr           : 192.30.3.196
    Heartbeat Interval           : 300
    Heartbeat Count              : 10
    SRG Compatibility            : COMPATIBLE
    License Compatibility        : COMPATIBLE
    FT Groups                    : 5
    would you please advise why "Query Vlan IF State " is showing "Manual validation - please ping peer" do I need to configure anything else?
    Thanks....

    You don't need to configure anything further. Your config looks good.
    The query interface thing can be a bit misleading.  The ACE does not use the query interface until the FT vlan goes down. This is the reason why we added a etxt to request users to manually verify query interface is functioning properly as below :
    "Manual validation - please ping peer"
    So if you need to check if the query vlan is up, then manually ping the peer ip address. That's what the message means.
    - Andrew

  • Query Builder re-entrant ?

    Hi,
    the new Query Builder looks good. But is there a way to reopen a query in Query Builder? I couldn't find.
    Best Regards
    Rainer

    I am just now starting to test SQL Developer 1.1.3 and was confounded by the way Query Builder disappears once I clicked on Apply.
    Thank you for the information concerning Query Builder. Do you know if Oracle has made any advances on this issue since the beginning of the year? You indicated in your email that there might be a way to let Oracle know that this is a major weakness in the application. Two questions:
    1. I presently use the old version of Query Builder 6.07.1.0 but it has limitations. Are there any patches to bring it completely up to speed for Oracle 10i?
    2. Are there other stand alone applications that provide a good graphical RAD interface similar to Query Builder? The primary function of the application as we will use it is to assist non-technical staff build queries. Therefore, the graphical interface is a base requirement.
    Thanks for your help.
    I thought that there was something to do so that I could get back to Query Builder after I clicked on Apply.

Maybe you are looking for