Author |
Message
|
mq_crazy |
Posted: Wed Oct 13, 2004 7:16 am Post subject: using tcpdump |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
I have setup ssl between two queue managers running on winxp. I wanted to test whether the messages are getting encrypted, tried to setup the java sniffer, but its not working. Someone told me that i can do tcpdump and test it. Can you give me more details like step by step instructions on how to set that??? as i am new to mq ssl. Thank You |
|
Back to top |
|
 |
JT |
Posted: Wed Oct 13, 2004 7:26 am Post subject: |
|
|
Padawan
Joined: 27 Mar 2003 Posts: 1564 Location: Hartford, CT.
|
mqkid,
Though I have never used tcpdump myself, a quick search of the internet (Google search engine) turned up this infromation:
http://www.tcpdump.org/tcpdump_man.html
Surely you can do the same next time. |
|
Back to top |
|
 |
siliconfish |
Posted: Wed Oct 13, 2004 7:27 am Post subject: |
|
|
 Master
Joined: 12 Aug 2002 Posts: 203 Location: USA
|
have you gone through man pages of tcpdump? You may be new to ssl but tcpdump is an unix utility. check the man pages they have given examples on usage try it out. _________________ siliconfish |
|
Back to top |
|
 |
mq_crazy |
Posted: Wed Oct 13, 2004 8:08 am Post subject: |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
Thanks for the replies guys. Can i use tcpdump with winxp environment??? i tried to type that command into command prompt, but it doesn't work. |
|
Back to top |
|
 |
vennela |
Posted: Wed Oct 13, 2004 8:33 am Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
AFAIK it is a UNIX command and will not work on Windows.
However what is the problem with the java port sniffer supplied with SSL tutorial. |
|
Back to top |
|
 |
siliconfish |
Posted: Wed Oct 13, 2004 8:35 am Post subject: |
|
|
 Master
Joined: 12 Aug 2002 Posts: 203 Location: USA
|
|
Back to top |
|
 |
EddieA |
Posted: Wed Oct 13, 2004 9:04 am Post subject: |
|
|
 Jedi
Joined: 28 Jun 2001 Posts: 2453 Location: Los Angeles
|
My favourite sniffer that works on Windows is Ethereal: http://www.ethereal.com/.
Cheers, _________________ Eddie Atherton
IBM Certified Solution Developer - WebSphere Message Broker V6.1
IBM Certified Solution Developer - WebSphere Message Broker V7.0 |
|
Back to top |
|
 |
tjfunny1 |
Posted: Tue Oct 19, 2004 3:19 pm Post subject: Java sniffer in Unix |
|
|
 Apprentice
Joined: 17 Jun 2002 Posts: 35 Location: Atlanta
|
I found a way to run the sps.bat under unix:
add /opt/mqm/ssl/bin to $PATH
export PATH=$PATH:/opt/mqm/ssl/bin
$JAVA_HOME=/opt/mqm/ssl
export JAVA_HOME=/opt/mqm/ssl
sps.sh
java -cp sps.jar:$JAVA_HOME SimpleProxyServer
./sps.sh localhost <realport> <bogusport>
<realport> is the actual port used by the queue manager
<bogusport> is the bogus port you use for the conname
Many system admins remove tcpdump or have security standards which don't allow others to sniff ports. _________________ TJ
IBM Certified System Administrator Websphere MQ v5.3 |
|
Back to top |
|
 |
|