sngrep/config/sngreprc
2015-01-16 15:04:51 +01:00

110 lines
3.1 KiB
Plaintext

##-----------------------------------------------------------------------------
## sngreprc - sngrep configuration file
##-----------------------------------------------------------------------------
## This file stores sngrep configuration and it's totally optional
##
##-----------------------------------------------------------------------------
## Enable color on or off
# set color on
## Use white/black as foreground/background instead of terminal defaults
# set background dark
## Disable syntax highlighting
# set syntax off
## Or enable branch/tag highlighting
# set syntax.tag on
# set syntax.branch on
##-----------------------------------------------------------------------------
## Uncomment to configure packet count capture limit (0: disabled)
# set capture.limit 2000
## Default capture keyfile for TLS transport
# set capture.keyfile /etc/ssl/key.pem
## Uncommnet to lookup hostnames from packets ips
# set capture.lookup on
## Set default capture device
# set capture.device any
## Set default dump file
# set capture.outfile /tmp/last_capture.pcap
##-----------------------------------------------------------------------------
## Default path in save dialog
# set sngrep.savepath /tmp/sngrep-captures
##-----------------------------------------------------------------------------
## Change default scrolling in call list
# set cl.scrollstep 20
## Disable exit prompt
# set cl.noexitprompt off
## Or set its default button
# set cl.defexitbutton 0/1
# Set default filter on startup
# set cl.filter INVITE
##-----------------------------------------------------------------------------
## You can change the default number of columns in call list
##
## Set displayed columns in call list screen
## set cl.column{num} {field}
##
## You can optionally configure the column width using
## set cl.column{num}.width {num}
##
## Available columns fields are:
## - sipfrom
## - sipto
## - src
## - srchost
## - dst
## - dsthost
## - callid
## - xcallid
## - date
## - time
## - sdp
## - msgcnt
## - starting
## - transport
## - state
##
## Examples:
# set cl.column0 sipfrom
# set cl.column0.width 30
# set cl.column1 sipto
# set cl.column2 msgcnt
# set cl.column3 src
# set cl.column4 dst
# set cl.column4.width 22
# set cl.column5 starting
# set cl.column5.width 15
# set cl.column6 state
##-----------------------------------------------------------------------------
## Default minimun size from Message payload in Call Flow panel
# set cf.rawminwidth 40
## Fixed raw preview size
# set cf.rawfixedwidth 40
##-----------------------------------------------------------------------------
## Uncomment to display dialogs that does not start with a request method
# set sip.ignoreincomplete off
##-----------------------------------------------------------------------------
## You can ignore some calls with any of the previous attributes with a given
## value with ignore directive.
##
## ignore {field} {value}
##
## Examples:
# ignore starting OPTIONS
# ignore starting REGISTER
# ignore starting BYE
# ignore srchost 192.168.1.1
# ignore transport TCP