ssldump: PCAP: syntax error

I'm use:

Code:
# uname -ro
FreeBSD 9.0-RELEASE-p3

And latest ssldump:

Code:
# pkg_info | grep ssldump
ssldump-0.9b3_4     SSLv3/TLS network protocol analyzer

When I try start it with decryption - got error:
Code:
# ssldump -Xnd -i em0 port 8443 -k name.pem -p password
PCAP: syntax error

I have installed libpcap:

Code:
# pkg_info | grep libpcap
dnstop-20121017     Captures and analyzes DNS traffic (or analyzes libpcap dump
libpcap-1.4.0       Ubiquitous network traffic capture library

I found one reference about possible problems with some network interfaces in ssldump man-page:

Support is provided for only for Ethernet and loopback interfaces

So I tried to run ssldump with lo0:

Code:
# ssldump -Xnd -i lo0 port 8443 -k name.pem -p password
PCAP: syntax error

So - how I can run ssldump with packet decryption? Where is my mistake?
Thanks.
 
Any "additional" option must be used before "specified" (or vice versa in this definitions :-)).

Wrong way:

# ssldump -i em0 port 8443 -a
PCAP: syntax error


Right way:

# ssldump -a -i em0 port 8443

Code:
PCAP: syntax error
Here means error in ssldump start options - not anywhere in system configuration.
 
Back
Top