srsLTE/srsenb/rb.conf.example

184 lines
3.3 KiB
Plaintext
Raw Normal View History

2017-06-01 03:25:57 -07:00
// All times are in ms. Use -1 for infinity, where available
// 4G Section
// srb1_config = {
// rlc_config = {
// ul_am = {
// t_poll_retx = 45;
// poll_pdu = -1;
// poll_byte = -1;
// max_retx_thresh = 4;
// };
// dl_am = {
// t_reordering = 35;
// t_status_prohibit = 0;
// };
// enb_specific = {
// dl_max_retx_thresh = 32;
2021-09-16 06:17:35 -07:00
// };
// };
// }
// srb2_config = {
// rlc_config = {
// ul_am = {
// t_poll_retx = 45;
// poll_pdu = -1;
// poll_byte = -1;
// max_retx_thresh = 4;
// };
// dl_am = {
// t_reordering = 35;
// t_status_prohibit = 0;
// };
// enb_specific = {
// dl_max_retx_thresh = 32;
// };
// };
// }
2017-06-01 03:25:57 -07:00
qci_config = (
{
qci = 7;
2017-06-01 03:25:57 -07:00
pdcp_config = {
discard_timer = -1;
2017-06-01 03:25:57 -07:00
pdcp_sn_size = 12;
}
rlc_config = {
ul_um = {
sn_field_length = 10;
};
dl_um = {
sn_field_length = 10;
t_reordering = 45;
2017-06-01 03:25:57 -07:00
};
};
logical_channel_config = {
priority = 13;
2017-06-01 03:25:57 -07:00
prioritized_bit_rate = -1;
bucket_size_duration = 100;
log_chan_group = 2;
2017-06-01 03:25:57 -07:00
};
enb_specific = {
dl_max_retx_thresh = 32;
};
2017-06-01 03:25:57 -07:00
},
{
qci = 9;
2017-06-01 03:25:57 -07:00
pdcp_config = {
discard_timer = 150;
2018-06-13 07:43:48 -07:00
status_report_required = true;
2017-06-01 03:25:57 -07:00
}
rlc_config = {
2018-06-13 07:43:48 -07:00
ul_am = {
t_poll_retx = 120;
poll_pdu = 64;
poll_byte = 750;
max_retx_thresh = 16;
2017-06-01 03:25:57 -07:00
};
2018-06-13 07:43:48 -07:00
dl_am = {
t_reordering = 50;
t_status_prohibit = 50;
2017-06-01 03:25:57 -07:00
};
};
logical_channel_config = {
priority = 11;
prioritized_bit_rate = -1;
bucket_size_duration = 100;
2017-06-01 03:25:57 -07:00
log_chan_group = 3;
};
enb_specific = {
dl_max_retx_thresh = 32;
};
2017-06-01 03:25:57 -07:00
}
);
// 5G Section
2022-04-28 10:06:40 -07:00
// srb1_5g_config = {
// rlc_config = {
// ul_am = {
// sn_field_len = 12;
// t_poll_retx = 50;
// poll_pdu = 4;
// poll_byte = 3000;
// max_retx_thres = 4;
// };
// dl_am = {
// sn_field_len = 12;
// t_reassembly = 50;
// t_status_prohibit = 50;
// };
// };
// }
// srb2_5g_config = {
// rlc_config = {
// ul_am = {
// sn_field_len = 12;
// t_poll_retx = 50;
// poll_pdu = 4;
// poll_byte = 3000;
// max_retx_thres = 4;
// };
// dl_am = {
// sn_field_len = 12;
// t_reassembly = 50;
// t_status_prohibit = 50;
// };
// };
// }
five_qi_config = (
{
five_qi = 7;
pdcp_nr_config = {
drb = {
discard_timer = 50;
pdcp_sn_size_ul = 18;
pdcp_sn_size_dl = 18;
};
t_reordering = 50;
};
rlc_config = {
um_bi_dir = {
ul_um = {
sn_field_len = 12;
};
dl_um = {
sn_field_len = 12;
t_reassembly = 50;
};
};
};
},
{
five_qi = 9;
pdcp_nr_config = {
drb = {
discard_timer = 50;
pdcp_sn_size_ul = 18;
pdcp_sn_size_dl = 18;
};
t_reordering = 50;
};
rlc_config = {
am = {
ul_am = {
sn_field_len = 12;
t_poll_retx = 50;
poll_pdu = 4;
poll_byte = 3000;
max_retx_thres = 4;
};
dl_am = {
sn_field_len = 12;
t_reassembly = 50;
t_status_prohibit = 50;
};
};
};
}
);