srsepc.conf.tmpl: double value of T3413 (paging timer)

we've already incrased the t3413 value in 9c7fd618d2
but realized it may still be too low in some cases.

we set it to 12s now.

Change-Id: I9c3c59c0ff8f539a44b420f8ba31eea016c211ce
This commit is contained in:
Andre Puschmann 2021-01-22 16:14:15 +01:00
parent b79a0c5e75
commit d1732d7820
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ apn = srsapn
dns_addr = 8.8.8.8
encryption_algo = EEA0
integrity_algo = EIA1
paging_timer = 6
paging_timer = 12
#####################################################################
# HSS configuration

View File

@ -26,8 +26,8 @@ print('UE is RRC idle')
# Wait a bit
sleep(5)
# Generate MT traffic, send single ping
proc = epc.prepare_process('ping', ('ping', '-c', '1', ue.get_assigned_addr()))
# Generate MT traffic, send single ping (10s timeout)
proc = epc.prepare_process('ping', ('ping', '-w', '10', '-c', '1', ue.get_assigned_addr()))
proc.launch_sync()
output = proc.get_stdout()