Cannot receive message from ASA 5505 b syslog server?

Dear All,
I have some problem on Syslog server. i was enable command as below for syslog server:
logging enable
logging timestamp
logging buffer-size 409600
logging console critical
logging monitor debugging
logging buffered warnings
logging trap informational
logging history informational
logging asdm informational
logging host inside 192.168.7.10 6/0
logging debug-trace
But my syslog server did not receive message from ASA 5505....
I don't what is going on?
Do you have any command on this?
Best Regards,
Rechard

Why did you put the /0 after the logging host command?
Just put logging host inside
Have a look at this lnk:
http://ciscosystems.com/en/US/products/hw/vpndevc/ps2030/products_configuration_example09186a00805a2e04.shtml
Please rate if helpful.
Regards
Farrukh

Similar Messages

  • Switched from 9900 to q10 and a particular i cannot receive messages from a particular bbm pin

    switched from 9900 to q10  and a particular i cannot receive messages from a particular bbm pin
    the messages are not being delivered to me from a particular pin

    Can you send messages to that particular pin?
    Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

  • I cannot receive messages from iphones since I got a new android device. did the change apple I'd password and whatnot...it still isn't working. what do I do?

    I cannot receive messages from iphones since I got a new android device. did the change apple I'd password and whatnot...it still isn't working. what do I do?

    Lets take first issue first: Apple does not charge a customer to 'keep' iPad access. That does not happen at apple. If you were billed and charged that amount of money from someone you were speaking to over the phone, you were not talking with Apple support. If you need to speak with apple support you are free to call them at 800MYAPPLE and they will talk to you for no more money than 19.00/ support event.
    Please read this article to asssit with imessage and factime troubleshooting.
    http://support.apple.com/kb/TS4268
    I'm sorry you have this happen to you - that being charged fraudulently for a non rendered service.
    Good luck to you Friend.

  • Cannot receive messages from one person only...

    My friend and I both have iphone 4s (with iOS 6.1.3). One day i stopped receiving messages from her. I can still receive an iMessage from her (but since neither one of us has data that is dependent on internet availability) but regular text messages won't come through. She can receive regular messages from me. I can receive regular messages from everyone else (including other iphone users). I don't know what happened. I have tried multiple suggestions i found online (including deleting and readding her contact, she did same, restarted phones, typed number manually, typing number twice etc.) but none of them work. If anyone could help it would be much appreciated!!

    I'm having a similar problem. I can receive texts from this one person but he cannot receive mine. I can also not call him but he can call me. He uses A T&T but does not have this problem when texting other verizon users. I have an Iphone 4S and he has an Iphone 5. This has been happening for 3 days. I have tried resetting the networks, restarting my phone,  and checking blocked contacts. Nothing is helping with the issue.

  • Servlet cannot receive message from applet after sent message to applet

    In my Applet-Servlet communication, my servlet can not receive message from the applet after the servlet sent message to the applet. It will throw java.io.EOFException: Expecting code
    Can someone tell me what is wrong?
    ==============
    This is relevant code on applet side:
    String inMsg = "";
    try {
    _owner.textArea.append("run start...please wait......\n");
    String location = "http://111.111.11.111:8080/mdo/servlet/BLServlet";
    URL servletURL = new URL(location);
    URLConnection servletConnection = servletURL.openConnection();
         _owner.textArea.append("URL = "+location+"\n");
    servletConnection.setDoOutput(true);
    servletConnection.setDoInput(true);
    servletConnection.setUseCaches(false);
    servletConnection.setDefaultUseCaches(false);
    servletConnection.setRequestProperty("Content-Type", "application/octet-stream");
    _owner.textArea.append("servlet connection: \n  "+servletConnection.toString()+"\n");
    outputToServlet = new ObjectOutputStream(servletConnection.getOutputStream());
    _owner.textArea.append("output to servelt:  "+outputToServlet.toString()+"\n");
    _owner.textArea.append("Send msg: Register\n");
    outputToServlet.writeObject("Register");
    _owner.textArea.append("Sent. \n");
    outputToServlet.flush();
    _owner.textArea.append("Flush. \n");
    try {
    Thread.sleep(3000);
    } catch (InterruptedException exc) {
    _owner.textArea.append("Cannot Sleep.\n");
    return;
    inputFromServlet = new ObjectInputStream(servletConnection.getInputStream());
    _owner.textArea.append("input from servlet:   "+inputFromServlet.toString()+"\n");
    Object inMessage = new Object();
    inMessage = (Object) inputFromServlet.readObject();
    inMsg = inMessage.toString();
    _owner.textArea.append("Receive: "+inMsg+"\n");
    _owner.textArea.append("output-to-servelt:  "+outputToServlet.toString()+"\n");
    _owner.textArea.append("input-from-servlet: "+inputFromServlet.toString()+"\n");
    _owner.textArea.append("Send msg: Hello\n");
    outputToServlet.writeObject("Hello");
    _owner.textArea.append("Sent. \n");
    outputToServlet.flush();
    _owner.textArea.append("Flush. \n");
    try {
    Thread.sleep(3000);
    } catch (InterruptedException exc) {
    _owner.textArea.append("Cannot Sleep.\n");
    return;
    _owner.textArea.append("output-to-servelt:  "+outputToServlet.toString()+"\n");
    _owner.textArea.append("input-from-servlet: "+inputFromServlet.toString()+"\n");
    inMessage = new Object();
    inMessage = (Object) inputFromServlet.readObject();
    inMsg = inMessage.toString();
    _owner.textArea.append("Receive: "+inMsg+"\n");
    _owner.textArea.append("End of run\n");
    } catch (Exception e) {
    _owner.textArea.append("Exception:  "+e.toString()+"\n");
    Code on Servlet side:
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    String inMsg;
    try {
    textArea.append("start of main\n");
    inputFromApplet = new ObjectInputStream(request.getInputStream());
    inMsg = (String) inputFromApplet.readObject();
    textArea.append(" - BLServlet - from Applet: "+inMsg+"\n");
    if (inMsg.equals("Register")) {
    outMsg = "Register Accept";
    } else {
    outMsg = "MISTAKE2";
    textArea.append("output message: "+outMsg+"\n");
    outputToApplet = new ObjectOutputStream(response.getOutputStream());
    textArea.append("object output stream: "+outputToApplet.toString()+"\n");
    outputToApplet.writeObject(outMsg);
    outputToApplet.flush();
    try {
    Thread.sleep(3000);
    } catch (InterruptedException exc) {
    return;
    inMsg = (String) inputFromApplet.readObject();//Throw java.io.EOFException: Expecting code
    textArea.append(" - BLServlet - from Applet: "+inMsg+"\n");
    inputFromApplet.close();
    if (inMsg.equals("Hello")) {
    outMsg = "Hello! How are you!";
    else {
    outMsg = "MISTAKE3";
    textArea.append("output message: "+outMsg+"\n");
    outputToApplet.writeObject(outMsg);
    outputToApplet.flush();
    } catch (Exception exc) {
    textArea.append("Exception: "+exc.toString()+"\n");
    return;
    } // end of try/catch
    } // end of doPost method

    I have the same problem. I'm trying to send an ImageIcon through an ObjectOutputStream from an Applet to a Servlet. Here is my code:
    URL url = new URL(getCodeBase(),"/License/SnapshotServlet");
    URLConnection con = url.openConnection();
    con.setDoOutput(true);
    con.setUseCaches(false);
    con.setRequestProperty("Content-Type", "application/x-java-serialized-object");
    OutputStream os = con.getOutputStream();
    BufferedOutputStream bos = new BufferedOutputStream(os);
    ObjectOutputStream oos = new ObjectOutputStream(bos);
    oos.writeObject(icon);
    oos.flush();
    oos.close();
    Here is my error:
    [5/6/02 17:41:31:312 CDT] 7f8b8205 SystemOut     U service() called
    java.io.EOFException
    at java.io.DataInputStream.readFully(DataInputStream.java:168)
    at java.io.ObjectInputStream.readFully(ObjectInputStream.java:2076)
    at java.io.ObjectInputStream.inputArray(ObjectInputStream.java:1085)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:380)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:242)
    at javax.swing.ImageIcon.readObject(ImageIcon.java:373)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:2219)
    at java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1416)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:392)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:242)
    at dps.license.webcam.SnapshotServlet.doPost(SnapshotServlet.java:39)
    at dps.license.webcam.SnapshotServlet.service(SnapshotServlet.java:75)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.ibm.servlet.engine.webapp.StrictServletInstance.doService(ServletManager.java:827)
    at com.ibm.servlet.engine.webapp.StrictLifecycleServlet._service(StrictLifecycleServlet.java:167)
    at com.ibm.servlet.engine.webapp.IdleServletState.service(StrictLifecycleServlet.java:297)
    at com.ibm.servlet.engine.webapp.StrictLifecycleServlet.service(StrictLifecycleServlet.java:110)
    at com.ibm.servlet.engine.webapp.ServletInstance.service(ServletManager.java:472)
    at com.ibm.servlet.engine.webapp.ValidServletReferenceState.dispatch(ServletManager.java:1012)
    at com.ibm.servlet.engine.webapp.ServletInstanceReference.dispatch(ServletManager.java:913)
    at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:523)
    at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:282)
    at com.ibm.servlet.engine.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:112)
    at com.ibm.servlet.engine.srt.WebAppInvoker.doForward(WebAppInvoker.java:91)
    at com.ibm.servlet.engine.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:184)
    at com.ibm.servlet.engine.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:67)
    at com.ibm.servlet.engine.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:106)
    at com.ibm.servlet.engine.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:125)
    at com.ibm.servlet.engine.oselistener.OSEListenerDispatcher.service(OSEListener.java:315)
    at com.ibm.servlet.engine.http11.HttpConnection.handleRequest(HttpConnection.java:60)[5/6/02 17:41:31:859 CDT] 7f8b8205 SystemOut     U saving image...
    [5/6/02 17:41:31:859 CDT] 7f8b8205 SystemOut     U ERROR: Image is null!
    at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:323)
    at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:252)
    at com.ibm.ws.util.CachedThread.run(ThreadPool.java:122)
    Does anyone have any idea what is going on here?

  • HT4623 Since my update on my 5s I cannot receive messages from other iPhones. They all have to be sent by text. Why?

    Since my 7.1 update I do not receive messages unless they are sent as text.

    iOS: Troubleshooting Messages
    Symptoms
    Learn how to resolve issues with the Messages app on your iPhone, iPad, or iPod touch. You'll learn what you need to send messages using SMS, MMS, and iMessage as well as how to resolve issues with each method.
    Resolution
    Before you start troubleshooting, learn the difference between SMS, MMS, and iMessage. The first step to resolving an issue with iMessage is to update your iOS software and your carrier settings to the latest versions. If iMessage still has an issue, follow the steps below for your issue.
    If you can't activate iMessage with your phone number or Apple ID
    See how to troubleshoot iMessage activation. If you're using a China Telecom or au (KDDI) iPhone, you can activate iMessage only on your home network. While traveling internationally, you can't activate iMessage.
    If you can't send and receive iMessages
    You will need these to send and receive iMessages:
    An iPhone, iPad, or iPod touch
    iOS 5.0 or later
    A cellular data connection or a Wi-Fi connection
    A phone number or Apple ID registered with iMessage in Settings > Messages
    To resolve issues with sending and receiving iMessages, follow these steps
    Check iMessage system status for current service issues.
    Go to Settings > Messages > Send & Receive and make sure that you registered iMessage with your phone number or Apple ID and that you selected iMessage for use. If the phone number or Apple ID isn't available for use, troubleshoot iMessage registration.
    Open Safari and navigate to www.apple.com to verify data connectivity. If a data connection isn't available, troubleshoot cellular data or a Wi-Fi connection.
    iMessage over cellular data might not be available while you're on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn which network your phone supports. If your network doesn't support simultaneous data and voice calls, go to Settings > Wi-Fi and turn Wi-Fi on to use iMessage while you're on a call.
    Restart your device.
    Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    If you still can't send or receive an iMessage, follow these steps
    Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    Make sure that the contact you're trying to send a message to is registered with iMessage.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact in the Contacts app. Create a new message to the newly created contact and try again.
    Back up and restore your device as new.
    If you aren't receiving iMessages across all iOS devices
    Go to Settings > Messages > Send & Receive on each iOS device and make sure that you signed in with your Apple ID. You must use the same Apple ID on each device.
    Go to Settings > Messages > Send & Receive > You Can Be Reached By iMessage At and make sure that you selected each phone number and email address you want to use with iMessage.
    If you linked a phone number to your Apple ID with iMessage and the phone number hasn't appeared, followthese steps.
    Sign out of your Apple ID in Settings > Messages > Send & Receive and Settings > FaceTime on all devices.
    If you're linking a phone number to an Apple ID, sign in to iMessage on your iPhone first. Then sign in to the rest of your device one by one with iMessage and FaceTime.
    If your iMessages didn't transmit as SMS when iMessage was unavailable for use
    Go to Settings > Messages > Send as SMS and turn on Send as SMS.
    Select your phone number when Sending iMessages in Settings > Messages > Send & Receive > Start New Conversations From.
    Make sure that you can send SMS with Settings > iMessage turned off.
    Source: http://support.apple.com/kb/ts2755

  • Blackberry Messenger: Cannot receive message from one contact only

    I have been using Blackberry messenger since a few months ago. It has been working fine until 3 weeks ago that it stopped working with only one of my contacts:
    I message with my friend every day and out of the blue one day I can't receive any messages from him anymore, and all the messages I send to him would only turn to "d" status even he's read them already (and he'd appear as away on my contact list with a little clock next to the smiley... messages never turn to "R").
    My handheld is on a BES and his isn't. I am in the US and he is in Europe. Not sure if that's the reason... but I have other contacts that are either on or not on the same BES and there's no problem with them. He also has contacts that are in the US as well and doesn't have any problem with them either...
    We have tried battery pull, shortening name, deleting and re-adding and no luck.
    Can any one please help? Thanks!

    Welcome Tiramisucat; I have the same problem and a few others share your frustration.  There is one BB user who reported today that he finally fixed his problem with the assistance of RIM.  You can read about his experience in the following thread BlackBerry Support Community Forums : Smartphones : BlackBerry 8300 Series Smartphone - BlackBerry Curve : Re: PENDING blackberry messenger contact.

  • HT3529 I can send messages to any phone, but I cannot receive messages from other iPhone users the messages go to my wife's phone instead of mine! Why?

    why is this happening? Please help!

    check your phone and her phone, settings, messages and the send and receive at addresses there.

  • Cannot send message (from mac mail) using the server iCloud

    My Mac Mail send stopped working during a large number of mail sends yesterday.Could that be an issue? If so, what to do?
    Message further reads - The sender address [email protected] was rejected by the server smtp.mail.me.com.
    I deleted the account and set it up again, but still can't get the mail out. Same messages
    If I go on to iCloud, mail send is working fine.
    Can anyone see anything wrong or suggest what to do?
    I've deleted the user name below for the screenshot.
    Thanks in anticipation.

    TryinMyBestest wrote:
    My Mac Mail send stopped working during a large number of mail sends yesterday.Could that be an issue? If so, what to do?
    Message further reads - The sender address [email protected] was rejected by the server smtp.mail.me.com.
    I deleted the account and set it up again, but still can't get the mail out. Same messages
    If I go on to iCloud, mail send is working fine.
    Can anyone see anything wrong or suggest what to do?
    I've deleted the user name below for the screenshot.
    Thanks in anticipation.
    There is no user name entered in your SMTP (advanced) preferences.

  • Switched to Samsung GS5 2 months ago, still not receiving messages from iphone users

    I switched to a non iphone over two months ago and ever since then I cannot receive messages from iphone users sending in imessage format. They have to turn imessage on and off to be able to text me. This has been extremely inconvenient since I need to receive these messages for work in addition to my personal life. I have tried multiple suggestions I've read about, still nothing works. It's like this is apple's way of keeping customers using their iphone instead of switching for fear of not receiving messages. They won't really fix it either when we all know technology is advanced enough to fix this. HELP.

    Can’t get text messages from an iPhone - Apple Support

  • Cannot receive messages on new phone

    I recently went from an iPhone to a samsung galaxy and I'm having trouble with receiving messages off iPhone users, I've disabled Imessage, deleted my phone number from the apple system to no avail, I've also done the same on on my ipad along with removing my number on FaceTime, I've changed my Apple ID password and still I cannot receive messages from iPhone users, I've also had all my iPhone using friends delete my number and add it again as mobile not iPhone, PLEASE help!!!!!!

    call apple support http://support.apple.com/kb/ts5185

  • I cannot receive texts from 1 contact, why?

    i have one contact that I cannot receive messages from. I can receive messages from my other contacts. The contact reveives my messages to her. I have restared my phone, deleted and re-entered the contact information. What is up with this?

    http://support.apple.com/kb/TS5185

  • Cannot send or receive messages from specific buddy

    I cannot send or receive messages from one specific buddy. When I go to double click on the name on my Buddy List, nothing happens. When she sends me messages I am alerted of the message but cannot see it. In the "Window" tab her name appears as if we are chatting but I cannot view the window.
    Help!

    Sounds like they have not got the ports open to allowing Incoming stuff to their computer.
    Any router firewall or basic settings they have may allow the outgoing call but not accept any incoming stuff.
    10:22 PM Saturday; December 6, 2008

  • I recently bought a Samsung Galaxy s5 and cannot receive iMessages from iphones, I have deleted my apple id, turned off imessage, turned off spam messages on my android device, wasted 35 minutes on the phone to Apple's 'Support' has anyone got any tips?

    I recently bought a Samsung Galaxy s5 and cannot receive iMessages from iphones, I have deleted my apple id, turned off imessage, turned off spam messages on my android device, wasted 35 minutes on the phone to Apple's 'Support' has anyone got any tips?

    Hi,
    Do you mean you are not getting SMS text messages now ?
    If so start here
    Follow the Account management options until you are offered and email contact.
    Explain the issue via email as only someone in Support can now remove your iPhone Number from iMessages if it has not "de-registered" itself correctly.
    8:28 pm      Wednesday; May 7, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I am having some trouble with receiving messages from iMessage users when I don't have my iMessage turned on. When I called for support, I spent 30 min waiting and the woman's response to me was "Turn on your iMessage." I prefer not to use it

    I have an iPhone 5s and a MacBook Pro. Ever since I updated my computer software to Yosemite, it linked my Apple ID with my phone number and I am not receiving messages from iMessage users on my phone, but rather to my computer. I don't like to use iMessage so I keep it off and would like to receive all messages as SMS texts. I have already tried changing my Apple ID password, logging off of my Apple ID in iMessage on my phone and turning it off, and changing settings on messages on my computer. Nothing is working. Either the messages continue to go to my computer or the messages trying to be sent say they cannot be sent.
    After spending 30 + minutes waiting for technical support, the woman helping me (who did not give me her name) told me I should just turn on iMessage. After explaining that I don't like having iMessage on and asking why it worked for at least a year up until this point she said "things change and sometimes we don't know why things do what they do". She asked me about various other things on my phone such as bluetooth and told me to turn on and off airplane mode and the call disconnected. I have not been contacted since, even though she has my phone number.
    I am hoping for some help and also hoping people don't get the type of service I received tonight.

    I think you can solve your problems by removing your AppleID email address from BOTH the Messages setting on your iPhone and the iMessages settings on your Mac.
    On iPhone:
    Settings > Messages > iMessage > Dissabled
    Settings > Messages > Send & Receive > touch the "(i)" < touch "Remove This Email"
    On Mac:
    Open "Messages" application
    Click "Messages menu > Preferences
    Click "Accounts"
    Select your AppleID account
    Under the "You can be reached for messages at" settings, uncheck your AppleID email address and your phone number
    Then uncheck the "Enable this account" setting
    And lastly, ask all of your friends with iPhones to delete all iMessage conversations (blue bubbles) in their entirety.
    To test, send a friend a new text using their phone number (not their email address) and watch the color of the bubble.  If it's green then you are using SMS.

Maybe you are looking for

  • Camera RAW and Elements Hang during Thumbnail Generation...

    Ever since I upgraded to the newest version of Camera Raw, I have been having issues with Photoshop Elements hanging while automatically generating thumbnails, anyone else notice this issue? Hang is not quite the right description... So I import a ba

  • Validation required for a GL account

    Hi Guru, I want to have a validation for a GL account 571006 to use WBS element for manual postings and should give error if WBS element is not entered against this GL. Can you please let me know how to create a validation in GGBO. Thanks

  • LMS 3.2 real time graphs

    Hi Guys, Can somebody tell me how to set up the following in LMS 3.2 running the latest version of various modules like RME, CS etc. 1. Real time graphs. If I am monitoring 100 switches in LMS, to be able to display reachability status of 100 switche

  • Problems with Chapters in iDVD 5!

    Hey, I'm trying to fix a problem I'm having... I'm burning a DVD with a few different videos on them added in a certain order. When playing back on a DVD player, if I press the 'Next Chapter' button, it just skips through them randomly... not in the

  • What's the error ?please could someone give a hand ?

    I have done a simple code to send an email from the command line and i'm having trouble, i've done the same using servlet and it was successful, so now when i run a class to send an email i get this message, what's wrong ? i have set the debug.The li