Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

kamailio: make some htable tables reboot-persistent #2592

Open
wants to merge 1 commit into
base: bleeding
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kamailio/trunks/config/kamailio.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ modparam("pike", "remove_latency", 120)
modparam("htable", "htable", "ipban=>size=8;autoexpire=300")
#!endif
modparam("htable", "htable", "cgrconn=>size=1;")
modparam("htable", "htable", "dmq=>size=8;autoexpire=10800;dmqreplicate=1;")
modparam("htable", "htable", "dmq=>size=8;autoexpire=10800;dmqreplicate=1;dbmode=1")
modparam("htable", "enable_dmq", 1)

# UAC
Expand Down
4 changes: 2 additions & 2 deletions kamailio/users/config/kamailio.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,8 @@ modparam("htable", "htable", "ipban=>size=8;autoexpire=300")
#!endif

# dialogs htable contains aleg, bleg and applicationserver per dialog
modparam("htable", "htable", "dialogs=>size=10;autoexpire=10800")
modparam("htable", "htable", "dmq=>size=8;autoexpire=10800;dmqreplicate=1;")
modparam("htable", "htable", "dialogs=>size=10;autoexpire=10800;dbmode=1")
modparam("htable", "htable", "dmq=>size=8;autoexpire=10800;dmqreplicate=1;dbmode=1")
modparam("htable", "htable", "srcban=>size=8;autoexpire=43200")
modparam("htable", "htable", "badauthcnt=>size=8;autoexpire=43200")
modparam("htable", "htable", "aors=>size=10")
Expand Down