Eq 8080 commands not being entered on FWSM module

Hi There,
   I'm having an issue with some Firewalls in my network. I have several firewall modules (WS-SVC-FWM-1) in 6509s,
FWSM Firewall Version 2.3(3) <system>
FWSM Device Manager Version 4.1(3)
I'm trying to enter the following rules
access-list ACL-IN extended permit ip host X.X.X.0 X.X.X.0 255.255.255.0 eq 8080
access-list ACL-IN extended permit ip host X.X.X.1 X.X.X.0 255.255.255.0 eq 8080
access-list ACL-IN extended permit ip host X.X.X.2 X.X.X.0 255.255.255.0 eq 8080
access-list ACL-OUT extended permit ip X.X.X.0 255.255.255.0 host X.X.X.0 eq 8080
access-list ACL-OUT extended permit ip X.X.X.0 255.255.255.0 host X.X.X.1 eq 8080
access-list ACL-OUT extended permit ip X.X.X.0 255.255.255.0 host X.X.X.2 eq 8080
What happens is, these commands don't go into the configuration, and I don't get an error, but any rule after it also does not get copied into the config when I copy and paste a list of commands. All the commands before it go in no problem.
Does it not like eq 8080? Can I not do 'permit ip' with an eq command? Do I have to use 'permit tcp' to enter the command?
Thanks.

If you are going to specify a port you need to use the TCP or UDP protocol.  You are specifying IP so you will get an error because of this.

Similar Messages

  • CISCO IOS : command not explicitly entered

    Hi Cisco Expert,
    If a command is not explicitly entered, will this mean it is not applied.
    For example, if the command "no service finger" not entered, this means finger service is not enabled?
    Regards,
    Jhun 

    Hi Jhun,
    Yes - no service finger = finger service is disabled.
    In general IOS will not accept an ambigious command, and so as long as the command is accepted, the IOS believes it is unambiguous and accepts the command. It may still be a good idea to 'tab' out the commands to ensure the intended command is entered.
    HTH
    Mike

  • DMP-4400, rs232 commands not being sent to device

    Recently we had deployed 16 DMP-4400 attached to televisions in our environment. All of them are configured identically, and have the same model of TVs attached to them. Four of them refuse to pass rs232 commands to the attached TVs, and are much slower to load the content to be displayed, a significant difference in loading time.  Disabling the rs232 allows the content to load at a normal speed.
    I have replaced the rs232 cables, wiped out the configuration and reconfigured.
    The rs232 is being enabled with the following command:
    init.startService_rs232=yes&rs232.device=/dev/ttyS1&mib.save=1&mng.reboot=1
    Firmware version 5.2.3
    The rs232 parameters from the DMP:
    rs232.device          T_STRING          /dev/ttyS0
    rs232.speed          T_STRING          9600
    rs232.parity          T_STRING          none
    rs232.data_size          T_STRING          8
    rs232.stop_bits          T_STRING          1
    rs232.flow_ctrl          T_STRING          none
    rs232.tx_hex          T_STRING
    rs232.tx_str          T_STRING
    rs232.rx_buf          T_STRING
    rs232.rx_overflow_flag          T_STRING          false
    rs232.tx_cnt          T_STRING          0
    rs232.rx_cnt          T_STRING          0
    When sending a command the rs232.tx_hex string should populate, and the rs232.tx_cnt should increase in value, these values never change. The commands are being sent from DMM version 5.3 and work on the 12 other DMPs that are in place.  Connecting a rs232 sniffer also shows that nothing was sent from the DMP.
    Anyone have any ideas?

    It seems impossible to purchase RS232 cables with the correct pinout, everyone sales the cable with "RS232 null modem with full handshaking".  For this you need the "Simple RS232 null modem without handshaking", which only uses the 3 pins, 2, 3, and 5.
    I ended up making my own cables, using RJ-45 to DB9 Adapters, and pinning them myself. Flipping TX and RX on one end, after this everything worked as expected.

  • SQL commands not being parsed

    We have found that SQL strings with bound parameters are not being parsed and therefore we end up with a large SQL string buffer.
    We can execute a stored procedure using SQL Net and we can see if this runs say 1000 times there is a parse to Execute ratio of 1 to 1000 executions.
    However when we use odp.net calling a stored procedure or using OracleCommand with OracleParameters the SQL is never parsed. i.e A new SQL string is created in the buffer every time

    Here are some details
    Oracle database is version 8.1.7
    Client using ODP.NET version 9.2.0.2.0
    Monitoring Parse/Execute ratio using TOAD Data monitor
    Sample code using OracleParameters for bound variables in a select statement. I've removed exception code etc
    conn.Open();
    string cmdstr = "Select * From COUNTRY Where CODE=:1";
    OracleParameter[] prm = new OracleParameter[1];
    OracleCommand cmd = new OracleCommand(cmdstr, conn);
    prm[0] = cmd.Parameters.Add("PCODE",OracleDbType.Varchar2, "UK", ParameterDirection.Input);
    cmd.CommandType = CommandType.Text;
    for(int i = 0; i < 10000; i++)
         OracleDataReader dr = cmd.ExecuteReader();
         dr.Read();
         String code = dr.GetString(1);
         Console.WriteLine(code);                    dr.Close();
    I have similar code calling a stored procedure and another using the adapter update mechanism with a dataset.
    When executed the parse/Execute ratio is 1/1 not 1/n as it should be.
    If I execute the procedure using SQL NET the ratio is 1/n as expected.
    We have used TOAD Kill/Trace Session option to examine the SQL statement which shows bound variables being used.

  • IMAP MOVE command not being used? (server supports it)

    I created an IMAP log, to see whether TB was using the IMAP "MOVE" extension. Despite the fact that my IMAP server does appear to support it, I can't see any MOVE commands in my protocol log. The only times the string "MOVE" appears in log is the CAPABILITY response from the server. FWIW, here is the capability string:
    [CAPABILITY IMAP4rev1 LITERAL+ SASL-IR LOGIN-REFERRALS ID ENABLE IDLE SORT SORT=DISPLAY THREAD=REFERENCES THREAD=REFS THREAD=ORDEREDSUBJECT MULTIAPPEND URL-PARTIAL CATENATE UNSELECT CHILDREN NAMESPACE UIDPLUS LIST-EXTENDED I18NLEVEL=1 CONDSTORE QRESYNC ESEARCH ESORT SEARCHRES WITHIN CONTEXT=SEARCH LIST-STATUS SPECIAL-USE BINARY MOVE NAMESPACE QUOTA]
    Note that I moved a message BETWEEN mailboxes, if that makes a difference. (if it only works intra-mailbox, then I can't make use of it)
    What exactly should I see in my protocol log, if TB is using the MOVE command?
    Environmemt: TB 31.0, Windows 8.1-64, Dovecot IMAP server

    Thanks, but before I do that, I don't mind asking for help elsewhere, perhaps on the Dovecot list or something. I notice that an INTRA-mailbox move does go significantly faster, and I see a "moved messages" status message down the bottom, too. (haven't checked the log yet, but I strongly suspect it is using the IMAP MOVE extension for this operation)
    Postbox behaves the same as Thunderbird - inter-mailbox moves are very slow - it is obvious that it is manually moving the messages. (and likewise, intra-mb moves are rapid)
    I kind of suspect that it's just not going to work between mailboxes, despite what the RFC says. If I find out anything, or file a bug report, I will indeed report back.

  • Sum not being entered

    When I select a set of numbers and go to click sum in the menu bar it is grey and can't be used. How to fix?

    you have to select the cells, then DRAG the sum to the destination cell.

  • Image not being shown in develop module.  Lightroom CC 2015

    I just installed the latest version 6 CC and when moving from library to the develop module the image turns to a blue rectangle with an x across the middle.  I've checked updates and everything is current.  I've checked may of my settings and all seems normal, and I've updated Camera RAW settings as well.  Any clues would be very helpful.  Running Lightroom CC 2015 on Windows 7..

    In the preferences dialog, Performance tab, try turning off the GPU usage.

  • Data is not being populated in screen field PSPNR after F4 search help.

    Hi expert,
    I have added one field GW_SELECT-PSPNR in existing screen 100, and there are many fields already existing.
    and there are POV for 4 fielda and i added POV for field GW_SELECT-PSPNR.
    PROCESS ON VALUE-REQUEST.
      FIELD gw_select-kostl MODULE determine_kostl.
      FIELD gw_select-aufnr MODULE determine_aufnr.
      FIELD gw_select-matnr MODULE determine_matnr.
      FIELD gw_select-bwart MODULE determine_bwart.
    ***Added by me
      FIELD gw_select-pspnr MODULE determine_pspnr.
    ****end add
    now problem is that the value is not being populated in screen.
    values are coming in field GW_SELECT-PSPNR but in screen its not being populated.
    i tried function module 'DYNP_VALUES_UPDATE' then also its not being populated
    now this module MODULE determine_pspnr has code inside
    MODULE DETERMINE_PSPNR INPUT.
       DATA:w_dynpfields TYPE dynpread,
         i_dynpfields LIKE STANDARD TABLE OF dynpread.
      PERFORM fill_pspnr.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'PSPNR'
          value_org       = 'S'
        TABLES
          value_tab       = gt_pspnr
         field_tab       = lt_field_tab
          return_tab      = lt_return_tab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      LOOP AT lt_return_tab INTO ls_return_tab.
        gw_select-pspnr = ls_return_tab-fieldval(12).
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            input  = gw_select-pspnr
          IMPORTING
            output = gw_select-pspnr.
        EXIT.
      ENDLOOP.
      refresh i_dynpfields.
       w_dynpfields-FIELDNAME = 'gw_select-pspnr'.
       w_dynpfields-FIELDVALUE = gw_select-pspnr.
       APPEND w_dynpfields to i_dynpfields.
       APPEND gw_select to gt_select.
      CALL FUNCTION 'DYNP_VALUES_UPDATE'
        EXPORTING
          DYNAME                     = sy-repid
          DYNUMB                     = sy-dynnr
        TABLES
          DYNPFIELDS                 = i_dynpfields
       EXCEPTIONS
         INVALID_ABAPWORKAREA       = 1
         INVALID_DYNPROFIELD        = 2
         INVALID_DYNPRONAME         = 3
         INVALID_DYNPRONUMMER       = 4
         INVALID_REQUEST            = 5
         NO_FIELDDESCRIPTION        = 6
         UNDEFIND_ERROR             = 7
         OTHERS                     = 8
    ENDMODULE.                 " DETERMINE_PSPNR  INPUT

    Hi
    Use this code instead of your function call:
        CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
            retfield        = 'FEE_NUMBER'
            dynpprog        = sy-cprog
            dynpnr          = sy-dynnr
            dynprofield     = 'FEE'  ================>your field
            value_org       = 'S'
          TABLES
            value_tab       = it_fee
          EXCEPTIONS
            parameter_error = 1
            no_values_found = 2
            OTHERS          = 3.
    Best Regards
    Yossi

  • [SOLVED] node package manager: command not found

    I installed nodejs, and it was working fine. I updated a couple of days ago, and now npm install and npm lead to
    zsh: command not found
    Node has some naming conflicts, from what I have read. I am confused as to how the namespace for packages works, but hopefully someone can point me in the right direction with this because, while confusing, I don't think it is causing the problem. I usually execute the application as node, but it is in the repositories as nodejs. I found node in /usr/bin. I can execute npm there, but it advises that npm should be run in a normal shell with a different directory, not in /usr/bin. There was no nodejs or npm.
    I removed nodejs using
    pacman -Rdd nodejs
    since adom has dependencies, but when I tried to reinstall using
    pacman -S nodejs
    , it said it was up to date and reinstalled. I updated my system and rebooted. I still can execute node but not the npm-it still returns
    zsh: command not found: npm
    I have no idea why the node package manager disappearred. I also have no idea why it would not have reinstalled with nodejs from the repo.
    ➜ ~ sudo pacman -Rdd node
    [sudo] password for user:
    error: target not found: node
    ➜ ~ nodejs npm
    zsh: command not found: nodejs
    ➜ ~ node npm
    module.js:338
    throw err;
    ^
    Error: Cannot find module '/home/user/npm'
    at Function.Module._resolveFilename (module.js:336:15)
    at Function.Module._load (module.js:278:25)
    at Function.Module.runMain (module.js:501:10)
    at startup (node.js:129:16)
    at node.js:814:3
    Last edited by 01010101 (2015-06-17 17:40:33)

    ➜ ~ pkgfile npm
    zsh: command not found: pkgfile
    ➜ ~ sudo pacman -S pkgfile
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): pkgfile-15-1
    Total Download Size: 0.02 MiB
    Total Installed Size: 0.05 MiB
    :: Proceed with installation? [Y/n] y
    :: Retrieving packages ...
    pkgfile-15-1-x86_64 21.6 KiB 323K/s 00:00 [######################] 100%
    (1/1) checking keys in keyring [######################] 100%
    (1/1) checking package integrity [######################] 100%
    (1/1) loading package files [######################] 100%
    (1/1) checking for file conflicts [######################] 100%
    (1/1) checking available disk space [######################] 100%
    (1/1) installing pkgfile [######################] 100%
    ==> Run 'pkgfile --update' to initialize the database
    ➜ ~ pkgfile npm
    error: No repo files found. Please run `pkgfile --update'.
    ➜ ~ pkgfile --update
    error: unable to write to /var/cache/pkgfile: Permission denied
    ➜ ~ sudo pkgfile --update
    :: Updating 4 repos...
    download complete: multilib [ 224.2 KiB 372K/s 3 remaining]
    download complete: core [ 608.8 KiB 536K/s 2 remaining]
    download complete: extra [ 6.9 MiB 2038K/s 1 remaining]
    download complete: community [ 10.9 MiB 2.55M/s 0 remaining]
    :: download complete in 4.26s < 18.6 MiB 4.37M/s 4 files >
    :: waiting for 1 process to finish repacking repos...
    ➜ ~ pkgfile npm
    community/npm
    ➜ ~ cd development/anj
    ➜ anj ls
    app.js bin bower.json package.json public routes views
    ➜ anj npm install
    zsh: command not found: npm

  • TS4040 I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs re

    I assumed this would help my problem with not being able to open apps like Preview or TextEdit since I installed Mountain Lion. Instead, first I'm prompted to enter a password, then once I do that, I get an error box telling me the Library needs repairing. So I click on Repair, and once again I'm prompted for a password, which I enter, then the same error box opens, and so it goes. Can anyone help me with this problem? I'd greatly appreciate it.
    Thor

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Triple-click the following line to select it. Copy the selected text to the Clipboard (command-C):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -Rh $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    Paste into the Terminal window (command-V). You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Step 1 should give you usable permissions in your home folder. This step will restore special attributes set by OS X on some user folders to protect them from unintended deletion or renaming. You can skip this step if you don't consider that protection to be necessary, and if everything is working as expected after step 1.
    Boot into Recovery by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • I'm being asked to enter my ID password on my ipad for icloud, but the email is no longer active and reset remails are not being received.

    I'm being asked to enter my ID pswd on my ipad 2 for icloud. but the email address and ID are no longer being used, and reset emails are not being received. How can I deactivate this? I have another ID which works fine, but this issue with the old ID is not allowing me to use my ipad.  thanks.

    If your iPad is signed into an old ID and you are trying to change it, if the old ID is yours, and if it is an earlier version of your current ID, go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Unusual 550 5.7.1 Command Not Allowed being sent from Exchange 2010

    Greetings,
    I have an Exchange 2010 server that seems to be rejecting some emails from external domains with 550 5.7.1 Command Not Allowed. I've taken a look at the SMTP Receive logs (below) and can't seem to find any reason why the emails are getting rejected. The sequence
    immediately prior to the 550 being sent is highlighted in bold.
    #Fields: date-time sequence-number local-endpoint remote-endpoint event data context
    2014-11-05T08:42:27.545Z 0 192.168.3.5:25 212.82.97.117:53913 +  
    2014-11-05T08:42:27.545Z 1 192.168.3.5:25 212.82.97.117:53913 * SMTPSubmit SMTPAcceptAnySender SMTPAcceptAuthoritativeDomainSender AcceptRoutingHeaders Set Session Permissions
    2014-11-05T08:42:27.545Z 2 192.168.3.5:25 212.82.97.117:53913 > 220 SERVER.domain.com Microsoft ESMTP MAIL Service ready at Wed, 5 Nov 2014 03:42:27 -0500 
    2014-11-05T08:42:27.657Z 3 192.168.3.5:25 212.82.97.117:53913 < EHLO nm34-vm3.bullet.mail.ir2.yahoo.com 
    2014-11-05T08:42:27.658Z 4 192.168.3.5:25 212.82.97.117:53913 > 250-SERVER.domain.com Hello [212.82.97.117] 
    2014-11-05T08:42:27.658Z 5 192.168.3.5:25 212.82.97.117:53913 > 250-SIZE 
    2014-11-05T08:42:27.658Z 6 192.168.3.5:25 212.82.97.117:53913 > 250-PIPELINING 
    2014-11-05T08:42:27.658Z 7 192.168.3.5:25 212.82.97.117:53913 > 250-DSN 
    2014-11-05T08:42:27.658Z 8 192.168.3.5:25 212.82.97.117:53913 > 250-ENHANCEDSTATUSCODES 
    2014-11-05T08:42:27.658Z 9 192.168.3.5:25 212.82.97.117:53913 > 250-STARTTLS 
    2014-11-05T08:42:27.658Z 10 192.168.3.5:25 212.82.97.117:53913 > 250-X-ANONYMOUSTLS 
    2014-11-05T08:42:27.658Z 11 192.168.3.5:25 212.82.97.117:53913 > 250-AUTH NTLM 
    2014-11-05T08:42:27.658Z 12 192.168.3.5:25 212.82.97.117:53913 > 250-X-EXPS GSSAPI NTLM 
    2014-11-05T08:42:27.658Z 13 192.168.3.5:25 212.82.97.117:53913 > 250-8BITMIME 
    2014-11-05T08:42:27.658Z 14 192.168.3.5:25 212.82.97.117:53913 > 250-BINARYMIME 
    2014-11-05T08:42:27.658Z 15 192.168.3.5:25 212.82.97.117:53913 > 250-CHUNKING 
    2014-11-05T08:42:27.658Z 16 192.168.3.5:25 212.82.97.117:53913 > 250-XEXCH50 
    2014-11-05T08:42:27.658Z 17 192.168.3.5:25 212.82.97.117:53913 > 250-XRDST 
    2014-11-05T08:42:27.658Z 18 192.168.3.5:25 212.82.97.117:53913 > 250 XSHADOW 
    2014-11-05T08:42:27.756Z 19 192.168.3.5:25 212.82.97.117:53913 < STARTTLS 
    2014-11-05T08:42:27.756Z 20 192.168.3.5:25 212.82.97.117:53913 > 220 2.0.0 SMTP server ready 
    2014-11-05T08:42:27.756Z 21 192.168.3.5:25 212.82.97.117:53913 *  Sending certificate
    2014-11-05T08:42:27.756Z 22 192.168.3.5:25 212.82.97.117:53913 * CN=SERVER Certificate subject
    2014-11-05T08:42:27.756Z 23 192.168.3.5:25 212.82.97.117:53913 * CN=SERVER Certificate issuer name
    2014-11-05T08:42:27.756Z 24 192.168.3.5:25 212.82.97.117:53913 * 3BF7DF215EB42FB14FAE1BF7E4369E06 Certificate serial number
    2014-11-05T08:42:27.756Z 25 192.168.3.5:25 212.82.97.117:53913 * 01494AD746353CCE0F198CE83AD4D6A8592C29F5 Certificate thumbprint
    2014-11-05T08:42:27.756Z 26 192.168.3.5:25 212.82.97.117:53913 * SERVER;SERVER.domain.com Certificate alternate names
    2014-11-05T08:42:28.059Z 27 192.168.3.5:25 212.82.97.117:53913 < EHLO nm34-vm3.bullet.mail.ir2.yahoo.com 
    2014-11-05T08:42:28.059Z 28 192.168.3.5:25 212.82.97.117:53913 *  TlsDomainCapabilities='None'; Status='NoRemoteCertificate'
    2014-11-05T08:42:28.060Z 29 192.168.3.5:25 212.82.97.117:53913 > 250-SERVER.domain.com Hello [212.82.97.117] 
    2014-11-05T08:42:28.060Z 30 192.168.3.5:25 212.82.97.117:53913 > 250-SIZE 
    2014-11-05T08:42:28.060Z 31 192.168.3.5:25 212.82.97.117:53913 > 250-PIPELINING 
    2014-11-05T08:42:28.060Z 32 192.168.3.5:25 212.82.97.117:53913 > 250-DSN 
    2014-11-05T08:42:28.060Z 33 192.168.3.5:25 212.82.97.117:53913 > 250-ENHANCEDSTATUSCODES 
    2014-11-05T08:42:28.060Z 34 192.168.3.5:25 212.82.97.117:53913 > 250-AUTH NTLM LOGIN 
    2014-11-05T08:42:28.060Z 35 192.168.3.5:25 212.82.97.117:53913 > 250-X-EXPS GSSAPI NTLM 
    2014-11-05T08:42:28.060Z 36 192.168.3.5:25 212.82.97.117:53913 > 250-8BITMIME 
    2014-11-05T08:42:28.060Z 37 192.168.3.5:25 212.82.97.117:53913 > 250-BINARYMIME 
    2014-11-05T08:42:28.060Z 38 192.168.3.5:25 212.82.97.117:53913 > 250-CHUNKING 
    2014-11-05T08:42:28.060Z 39 192.168.3.5:25 212.82.97.117:53913 > 250-XEXCH50 
    2014-11-05T08:42:28.060Z 40 192.168.3.5:25 212.82.97.117:53913 > 250-XRDST 
    2014-11-05T08:42:28.060Z 41 192.168.3.5:25 212.82.97.117:53913 > 250 XSHADOW 
    2014-11-05T08:42:28.158Z 42 192.168.3.5:25 212.82.97.117:53913 < MAIL FROM:<[email protected]
    2014-11-05T08:42:28.158Z 43 192.168.3.5:25 212.82.97.117:53913 * 08D11121D08C9A95;2014-11-05T08:42:27.545Z;1 receiving message
    2014-11-05T08:42:28.159Z 44 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.0 Sender OK 
    2014-11-05T08:42:28.364Z 45 192.168.3.5:25 212.82.97.117:53913 < RCPT TO:<[email protected]
    2014-11-05T08:42:28.364Z 46 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.5 Recipient OK 
    2014-11-05T08:42:28.462Z 47 192.168.3.5:25 212.82.97.117:53913 < DATA 
    2014-11-05T08:42:29.275Z 48 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:34.278Z 49 192.168.3.5:25 212.82.97.117:53913 > 550 5.7.1 Command not allowed 
    2014-11-05T08:42:34.521Z 50 192.168.3.5:25 212.82.97.117:53913 < RSET 
    2014-11-05T08:42:34.521Z 51 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:39.523Z 52 192.168.3.5:25 212.82.97.117:53913 > 250 2.0.0 Resetting 
    2014-11-05T08:42:39.621Z 53 192.168.3.5:25 212.82.97.117:53913 < MAIL FROM:<[email protected]
    2014-11-05T08:42:39.621Z 54 192.168.3.5:25 212.82.97.117:53913 * 08D11121D08C9A95;2014-11-05T08:42:27.545Z;2 receiving message
    2014-11-05T08:42:39.621Z 55 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.0 Sender OK 
    2014-11-05T08:42:39.719Z 56 192.168.3.5:25 212.82.97.117:53913 < RCPT TO:<[email protected]
    2014-11-05T08:42:39.719Z 57 192.168.3.5:25 212.82.97.117:53913 > 250 2.1.5 Recipient OK 
    2014-11-05T08:42:39.817Z 58 192.168.3.5:25 212.82.97.117:53913 < DATA 
    2014-11-05T08:42:39.838Z 59 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:44.837Z 60 192.168.3.5:25 212.82.97.117:53913 > 550 5.7.1 Command not allowed 
    2014-11-05T08:42:45.078Z 61 192.168.3.5:25 212.82.97.117:53913 < RSET 
    2014-11-05T08:42:45.078Z 62 192.168.3.5:25 212.82.97.117:53913 * Tarpit for '0.00:00:05' 
    2014-11-05T08:42:50.079Z 63 192.168.3.5:25 212.82.97.117:53913 > 250 2.0.0 Resetting 
    2014-11-05T08:42:50.177Z 64 192.168.3.5:25 212.82.97.117:53913 < QUIT 
    2014-11-05T08:42:50.177Z 65 192.168.3.5:25 212.82.97.117:53913 > 221 2.0.0 Service closing transmission channel 
    2014-11-05T08:42:50.177Z 66 192.168.3.5:25 212.82.97.117:53913 -  Local
    I have another entry in my logs fro the same sender coming from the same IP which yields the same results. Strangely enough, there are other entries from the same sender coming from different IPs which are delivered just fine. 
    The sender has stated that they only get the rejects when replying to emails from my domain, not when he sends fresh emails.
    Why would Exchange send the 550 5.7.1 in response to a DATA command when it responds with 354 Start mail input; end with <CRLF>.<CRLF> to other DATA commands from a different server?
    Bit of an odd problem, any help would be greatly appreciated.
    Thanks,
    B. Colt

    Thanks for the input Mr. Crowley. I've dumped the Receive Connector configurations, everything seems to be at default values except for logging (I set it to verbose). 
    RunspaceId                              : 17f0dc01-c2a9-45ce-812d-5d47688b6650
    AuthMechanism                           : Tls, BasicAuth, BasicAuthRequireTLS
    Banner                                  : 
    BinaryMimeEnabled                       : True
    Bindings                                : {12.34.56.78:25}
    ChunkingEnabled                         : True
    DefaultDomain                           : 
    DeliveryStatusNotificationEnabled       : True
    EightBitMimeEnabled                     : True
    BareLinefeedRejectionEnabled            : False
    DomainSecureEnabled                     : False
    EnhancedStatusCodesEnabled              : True
    LongAddressesEnabled                    : False
    OrarEnabled                             : False
    SuppressXAnonymousTls                   : False
    AdvertiseClientSettings                 : False
    Fqdn                                    : mail.MYDOMAIN.com
    Comment                                 : 
    Enabled                                 : True
    ConnectionTimeout                       : 00:10:00
    ConnectionInactivityTimeout             : 00:05:00
    MessageRateLimit                        : unlimited
    MessageRateSource                       : IPAddress
    MaxInboundConnection                    : 5000
    MaxInboundConnectionPerSource           : 20
    MaxInboundConnectionPercentagePerSource : 2
    MaxHeaderSize                           : 64 KB (65,536 bytes)
    MaxHopCount                             : 60
    MaxLocalHopCount                        : 12
    MaxLogonFailures                        : 3
    MaxMessageSize                          : 100 MB (104,857,600 bytes)
    MaxProtocolErrors                       : 5
    MaxRecipientsPerMessage                 : 200
    PermissionGroups                        : ExchangeUsers, ExchangeServers
    PipeliningEnabled                       : True
    ProtocolLoggingLevel                    : Verbose
    RemoteIPRanges                          : {0.0.0.0-255.255.255.255}
    RequireEHLODomain                       : False
    RequireTLS                              : False
    EnableAuthGSSAPI                        : False
    ExtendedProtectionPolicy                : None
    LiveCredentialEnabled                   : False
    TlsDomainCapabilities                   : {}
    Server                                  : MYSERVER
    SizeEnabled                             : Enabled
    TarpitInterval                          : 00:00:05
    MaxAcknowledgementDelay                 : 00:00:30
    AdminDisplayName                        : 
    ExchangeVersion                         : 0.1 (8.0.535.0)
    Name                                    : default MYDOMAIN.com
    DistinguishedName                       : CN=default MYDOMAIN.COM,CN=SMTP Receive Connectors,CN=Protocols,CN=MYSERVER,CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=My
    Company,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=DOMAIN
                                              ,DC=local
    Identity                                : SERVER\default MYDOMAIN.COM
    Guid                                    : 04d418d8-06f6-4e13-8f3b-439f9c6509b0
    ObjectCategory                          : MYDOMAIN.COM/Configuration/Schema/ms-Exch-Smtp-Receive-Connector
    ObjectClass                             : {top, msExchSmtpReceiveConnector}
    WhenChanged                             : 10/1/2014 3:53:53 PM
    WhenCreated                             : 3/1/2012 2:33:10 PM
    WhenChangedUTC                          : 10/1/2014 7:53:53 PM
    WhenCreatedUTC                          : 3/1/2012 7:33:10 PM
    OrganizationId                          : 
    OriginatingServer                       : SERVER.MYDOMAIN.COM
    IsValid                                 : True
    RunspaceId                              : 17f0dc01-c2a9-45ce-812d-5d47688b6650
    AuthMechanism                           : Tls, Integrated, BasicAuth, BasicAuthRequireTLS, ExchangeServer
    Banner                                  : 
    BinaryMimeEnabled                       : True
    Bindings                                : {:::25, 0.0.0.0:25}
    ChunkingEnabled                         : True
    DefaultDomain                           : 
    DeliveryStatusNotificationEnabled       : True
    EightBitMimeEnabled                     : True
    BareLinefeedRejectionEnabled            : False
    DomainSecureEnabled                     : False
    EnhancedStatusCodesEnabled              : True
    LongAddressesEnabled                    : False
    OrarEnabled                             : False
    SuppressXAnonymousTls                   : False
    AdvertiseClientSettings                 : False
    Fqdn                                    : SERVER.MYDOMAIN.COM
    Comment                                 : 
    Enabled                                 : True
    ConnectionTimeout                       : 00:10:00
    ConnectionInactivityTimeout             : 00:05:00
    MessageRateLimit                        : unlimited
    MessageRateSource                       : IPAddress
    MaxInboundConnection                    : 5000
    MaxInboundConnectionPerSource           : unlimited
    MaxInboundConnectionPercentagePerSource : 100
    MaxHeaderSize                           : 64 KB (65,536 bytes)
    MaxHopCount                             : 60
    MaxLocalHopCount                        : 12
    MaxLogonFailures                        : 3
    MaxMessageSize                          : 100 MB (104,857,600 bytes)
    MaxProtocolErrors                       : 5
    MaxRecipientsPerMessage                 : 5000
    PermissionGroups                        : AnonymousUsers, ExchangeUsers, ExchangeServers, ExchangeLegacyServers
    PipeliningEnabled                       : True
    ProtocolLoggingLevel                    : Verbose
    RemoteIPRanges                          : {192.168.1.0(255.255.255.0), ::-ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff, 0.0.0.0-255.255.255.255}
    RequireEHLODomain                       : False
    RequireTLS                              : False
    EnableAuthGSSAPI                        : False
    ExtendedProtectionPolicy                : None
    LiveCredentialEnabled                   : False
    TlsDomainCapabilities                   : {}
    Server                                  : MYSERVER
    SizeEnabled                             : EnabledWithoutValue
    TarpitInterval                          : 00:00:05
    MaxAcknowledgementDelay                 : 00:00:30
    AdminDisplayName                        : 
    ExchangeVersion                         : 0.1 (8.0.535.0)
    Name                                    : Default SERVER
    DistinguishedName                       : CN=Default SERVER,CN=SMTP Receive Connectors,CN=Protocols,CN=SERVER,CN=Servers,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=MY
    COMPANY,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=MYDOMAIN,DC=l
                                              ocal
    Identity                                : SERVER\Default SERVER
    Guid                                    : fc6ab381-1cf9-4edb-bec4-3a2c092cd4e3
    ObjectCategory                          : mydomain/Configuration/Schema/ms-Exch-Smtp-Receive-Connector
    ObjectClass                             : {top, msExchSmtpReceiveConnector}
    WhenChanged                             : 10/1/2014 3:56:23 PM
    WhenCreated                             : 2/6/2012 11:51:58 AM
    WhenChangedUTC                          : 10/1/2014 7:56:23 PM
    WhenCreatedUTC                          : 2/6/2012 4:51:58 PM
    OrganizationId                          : 
    OriginatingServer                       : SERVER.mydomain.com
    IsValid                                 : True
    I really don't want to turn off the tarpitting and expose myself to tons of spam, although I do have anti-spam filters running. 
    Any thoughts?
    Thanks again,
    B. Colt
    Brian Colt

  • [svn] 1978: Bug: vendors. properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly .

    Revision: 1978
    Author: [email protected]
    Date: 2008-06-06 08:05:34 -0700 (Fri, 06 Jun 2008)
    Log Message:
    Bug: vendors.properties file which is used in vendor specific login commands was not being read properly and as a result some login related error messages were not being displayed correctly.
    QA: Yes - we need automated tests to make sure that errors.properties and vendors.properties in BlazeDS/LCDS are loaded properly.
    Doc: No
    Modified Paths:
    blazeds/branches/3.0.x/modules/common/src/java/flex/messaging/util/PropertyStringResource Loader.java
    blazeds/branches/3.0.x/modules/opt/src/jrun/flex/messaging/security/JRunLoginCommand.java
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    I have a lot of grief with this version of Windows Media Player.
    It is very buggy and frustrating to use.
    I have my Music library on a QNAP NAS, which is as reliable as they come.
    System notifications make it not save changes.  It also does not do a good job of interpreting albums and artists from folders.  Changes to track names are not saved, nor are tracks moved to other albums, renamed albums, changes to genre, artist
    or date.  It separates and merges albums/tracks without sense or reason.  Some changes I've made up to 4 times, then closed WMP and re-started my machine to check if it has/hasn't saved the changes.  Often it has not.
    This is the first time I've used WMP in this capacity, and I do not recommend it.
    New service pack please.

  • Task Scheduling Script - Need help with passing the scheduled command (variables are not being evaluated)

    Hi Everyone,
    I'm trying to get a simple task scheduler script to work for me and can't get the command I need passed to the scheduler to evaluate properly.
    Here's the script:
    ###Create a new task running $Command and execute it Daily at 6am.
    $TaskName = Read-Host 'What would you like this job to be named?'
    $Proto = Read-Host 'What is the protocol? (FTP/FTPS/SFTP)'
    $User = Read-Host 'What is the user name?'
    $Pwd = Read-Host 'What is the password?'
    $Server = Read-Host 'What is the server address?'
    $NetworkDir = Read-Host 'Please input the network location of the file(s) you wish to send. Refer to documentation for more details.'
    $RemoteDir = Read-Host 'Please input the REMOTE directory to which you will upload your files. If there is none please input a slash'
    $Command = 'winscp.com /command "option batch abort" "option confirm off" "open $Proto://$User:$Pwd@$Server" "put $NetworkDir $RemoteDir" "exit"'
    $TaskAction = New-ScheduledTaskAction -Execute "$Command"
    $TaskTrigger = New-ScheduledTaskTrigger -Daily -At 6am
    Register-ScheduledTask -Action $TaskAction -Trigger $Tasktrigger -TaskName "$TaskName" -User "Administrator" -RunLevel Highest
    Write-Host "$TaskName created to run Daily at $TaskStartTime"
    What's messing up is the $Command creation, the command needs to have the quotes around "option blah blah", but if I wrap the whole line in single quotes the variables that are evaluated for the "open blah blah" strings (which also need
    to be inside quotes) and the "put blah blah" string are not being evaluated properly.
    I've dorked about with different bracketing and quoting but can't nail the syntax down, could someone point me in the right direction? My Google-fu seems to be lacking when it comes to nailing down this issue.
    Thanks

    Hmmn, closer. I'm getting this error now:
    + $Command = $tmpl -f  $User, $Pwd, $Server, $NetworkDir, $RemoteDir
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (winscp.com /com...t {4} {5}" exit:String) [], RuntimeException
        + FullyQualifiedErrorId : FormatError
    And the command being added to the new task looks like this:
    winscp.com /command "option batch abort" "option confirm off" "open ($Proto)://($User):($Pwd)@($Server)" "put $NetworkDir $RemoteDir" "exit"
    Here's the current state of the script. I get what you're doing to try to bypass the quotes issue, using an array. I'm just not awesome at this yet sooooooo...
    $TaskName = Read-Host 'What would you like this job to be named?'
    $Proto = Read-Host 'What is the protocol? (FTP/FTPS/SFTP)'
    $User = Read-Host 'What is the user name?'
    $Pwd = Read-Host 'What is the password?'
    $Server = Read-Host 'What is the server address?'
    $NetworkDir = Read-Host 'Please input the network location of the file(s) you wish to send. Refer to documentation for more details.'
    $RemoteDir = Read-Host 'Please input the REMOTE directory to which you will upload your files. If there is none please input a slash'
    $tmpl = 'winscp.com /command "option batch abort" "option confirm off" "open {0}://{1}:{2}@{3}" "put {4} {5}" exit'
    $Command = $tmpl -f $User, $Pwd, $Server, $NetworkDir, $RemoteDir
    $TaskAction = New-ScheduledTaskAction -Execute $Command
    $TaskTrigger = New-ScheduledTaskTrigger -Daily -At 6am
    Register-ScheduledTask -Action $TaskAction -Trigger $Tasktrigger -TaskName "$TaskName" -User "Administrator" -RunLevel Highest
    Write-Host "$TaskName created to run Daily at $TaskStartTime"

  • HT5622 I'm trying to find out why am I not being able to update my apps and there telling me my payment method is declined !  Due to the fact that it's continuously stating this I'm am trying to enter a new card !

    I'm trying to find out why am I not being able to update my apps and there telling me my payment method is declined !  Due to the fact that it's continuously stating this I'm am trying to enter a new card !

    Do you recognize the ID?

Maybe you are looking for

  • EPI use of hierarchies in SAP R/3 FICO

    Hi This is related to a BW report which gets its data from SAP R/3 FICO. We are facing a problem wherein development R/3 and quality R/3 are not in sync. Since they are not in sync with respect to  Customer Group Hierarchy (PH6) our BW report does no

  • ODS-D55u - DO NOT BUY ITS A COMPLETE SCAM!

    So my company bought one of these machines last year as we needed to back up in a region of 400 XDCAM discs and around 4TB of media. Knowing how good XDCAMS are we thought this would be a great idea and bought into it. It has been working like a drea

  • How can I fix my bootcamp partition?

    Hi there, I'm a relative noob when it comes to OSX so please be gentle with me. I'm running an early 2011 Macbook Pro which initially had OSX Maverick with a Windows 7 Bootcamp partition. All was working perfectly and seamlessly until I enthusiastica

  • Reporting python package bugs

    I just took the plunge and added [testing], [community-testing] and [multilib-testing] to pacman and updated 102 packages, including, of course, the Big Python Move of 2010. Nothing is broken (yet) except for calibre, or actually, python-cssutils-bet

  • I can't make FaceTime (Version 1.1.1 (309)) calls out from my Macbook Pro (Version 10.7.5). Anybody experiencing the same problems or any solutions??

    I've been trying to make calls to other FaceTime users (on iPhones and Macs) via my Macbook Pro. On my side FaceTime continues ringing. However, on the other side, when the person has picked up the call, FaceTime would show 'connecting' for around a