Hi all, I've been searching online for some help to this, but so far I haven't found an answer (or at least I have not recognized the answer). I have a MFP (mock IP 192.168.0.20) and a SMTP relay which is setup on our DC/print server (mock IP 192.168.0.10). I've installed wireshark and winpcap on the DC/print server. I'm trying to configure the MFP for scan to email using the SMTP relay on the DC/print server which is pointing to a Office 365 SMTP server. When a scan to email job is started from the printer, I get a connection error message (it is not descriptive at all. Just "error connecting".) I am not sure if the job is being rejected by the SMTP relay on the DC/print server or if it is being rejected by Office 365 SMTP. I'd like to setup Wireshark to capture traffic from the MFP (192.168.0.20) to the DC/print server SMTP relay (IP 192.168.0.20). I'd consider myself a novice when it comes to Wireshark, though I'm understanding more and more as I use it. I've googled for help as well, but I just might not have enough understanding of wireshark/packet capturing to utilize the advise/info I've found in my google searches. Any help is greatly appreciated. Thanks asked 13 Sep '13, 06:53 tkal edited 13 Sep '13, 06:56 |
3 Answers:
Alright, installing WinPCAP and Wireshark on a Domain Controller? I wouldn't dare to do that... :-) Anyway, since you've already done it and it obviously didn't crash or otherwise have an impact on the server (you'd be asking other questions otherwise) you can proceed. I'd go with a capture on the network card where the MFP data is due to arrive at (the card with IP 192.168.0.10), and set a capture filter on the IP of the MFP to ignore everything that is not coming from the device. The filter would be set in the capture options of the NIC you capture on, and be something like " Two things might happen:
Good luck! answered 13 Sep '13, 07:22 Jasper ♦♦ edited 13 Sep '13, 07:23 |
Presumably the MFP will be attempting to connect to the standard SMTP port which is TCP port 25, so setting a capture filter of "port 25" in Wireshark should get you the traffic, make sure you select the correct interface on the Once you've captured the traffic, then you'll need to look at the actual SMTP conversation, however given your error message of "error connecting" it's likely that the MFP isn't able to make a connection at all. You should at least see the TCP "SYN" packets coming in from the MFP to open the connection. answered 13 Sep '13, 07:24 grahamb ♦ |
The connection error results from your local system, otherwise the error message would be different. Reason: Your mail relay works with the principle store and forward, that means it will receive the full mail from your local client and then forward it to the Office 365 server. So, if you get a "connection error" in your client log, the chances are pretty good, that it was not able to connect to port 25 on your DC/print server. As you did not explain how you setup a mail relay on that system I cannot give any advice, other than trying to telnet to port 25 on that machine and to check if it reacts at all.
If there is no telnet client on your Win 7, install it from an elevated DOS box with
I tend to believe that 1.) is your problem. Regards answered 14 Sep '13, 04:27 Kurt Knochner ♦ |
Thank you for the info. Seeing the traffic come through. Now I need to wait for a user to run a scan to email test.
Much appreciated :)