sngrep/config/sngreprc

93 lines
2.9 KiB
Plaintext
Raw Normal View History

2013-06-25 13:14:25 -04:00
##-----------------------------------------------------------------------------
## sngreprc - sngrep configuration file
##-----------------------------------------------------------------------------
## This file stores sngrep configuration and it's totally optional
##
##-----------------------------------------------------------------------------
## Enable color on or off
2013-06-26 05:48:11 -04:00
# set color on
2013-06-25 13:14:25 -04:00
##-----------------------------------------------------------------------------
## Enable temporal file usage
## By default, sngrep uses a random tempfile in /tmp for storing packages
## in case user want to save them to another file. This files are removed
## when sngep exits
## Uncomment this to disable temporal pcap file while sngrep is running or
## change the used file
# set sngrep.tmpfile off
# set sngrep.tmpfile /tmp/last-sngrep-capture.pcap
## Uncomment this to keep temporal files
# set sngrep.keeptmpfile on
## Default path in save dialog
# set sngrep.savepath /tmp/sngrep-captures
2013-06-25 13:14:25 -04:00
##-----------------------------------------------------------------------------
## Change default scrolling in call list
# set cl.scrollstep 20
2014-03-14 07:32:12 -04:00
## Disable exit prompt
# set cl.noexitprompt off
2014-03-14 07:32:12 -04:00
## Or set its default button
# set cl.defexitbutton 0/1
2013-06-25 13:14:25 -04:00
##-----------------------------------------------------------------------------
2013-06-26 05:48:11 -04:00
## You can change the default number of columns in call list
2014-03-14 07:32:12 -04:00
## set cl.columns {count}
2013-06-26 05:48:11 -04:00
##
2013-06-25 13:14:25 -04:00
## Set displayed columns in call list screen
2014-03-14 07:32:12 -04:00
## set cl.column{num} {field}
2013-06-26 05:48:11 -04:00
##
2013-06-25 13:14:25 -04:00
## You can also configure the column width using
2014-03-14 07:32:12 -04:00
## set cl.column{num}.width {cols}
2013-06-25 13:14:25 -04:00
##
## Available columns fields are:
2014-03-14 07:32:12 -04:00
## - sipfrom
## - sipto
## - src
## - dst
## - callid
## - xcallid
## - msgcnt
## - starting
2013-06-25 13:14:25 -04:00
2013-06-26 05:48:11 -04:00
# set cl.columns 6
# set cl.column0 sipfrom
# set cl.column0.width 40
# set cl.column1 sipto
# set cl.column1.width 40
2013-06-25 13:14:25 -04:00
# set cl.column2 msgcnt
2013-06-26 05:48:11 -04:00
# set cl.column2.width 5
# set cl.column3 src
# set cl.column3.width 22
# set cl.column4 dst
# set cl.column4.width 22
# set cl.column5 starting
# set cl.column5.width 15
2013-06-25 13:14:25 -04:00
##-----------------------------------------------------------------------------
## Default minimun size from Message info 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
2013-06-25 13:14:25 -04:00
##-----------------------------------------------------------------------------
2013-06-26 05:48:11 -04:00
## You can ignore some calls with any of the previous attributes with a given
2013-06-25 13:14:25 -04:00
## value with ignore directive.
##
2013-06-25 13:14:25 -04:00
## ignore {field} {value}
##
2013-06-26 05:48:11 -04:00
2013-06-25 13:14:25 -04:00
# ignore starting OPTIONS
# ignore starting REGISTER
# ignore starting BYE
##-----------------------------------------------------------------------------
## Uncomment to configure calls capture limit (0: disabled)
# set capture.limit 200