generated from pavel.muhortov/template-bash
"persistent-keepalive = off" handling
This commit is contained in:
parent
76f1c8d6df
commit
acfbeeee5d
|
@ -133,6 +133,10 @@ def wg_dmp() -> list:
|
||||||
if len(line_list) == 5:
|
if len(line_list) == 5:
|
||||||
pass
|
pass
|
||||||
if len(line_list) == 9:
|
if len(line_list) == 9:
|
||||||
|
try:
|
||||||
|
i_ka = int(line_list[8])
|
||||||
|
except ValueError:
|
||||||
|
i_ka = 0
|
||||||
peer_list.append(
|
peer_list.append(
|
||||||
{
|
{
|
||||||
"name": line_list[1],
|
"name": line_list[1],
|
||||||
|
@ -141,7 +145,7 @@ def wg_dmp() -> list:
|
||||||
"b_rx": int(line_list[6]),
|
"b_rx": int(line_list[6]),
|
||||||
"b_tx": int(line_list[7]),
|
"b_tx": int(line_list[7]),
|
||||||
"p_lh": int(line_list[5]),
|
"p_lh": int(line_list[5]),
|
||||||
"i_ka": int(line_list[8]),
|
"i_ka": i_ka,
|
||||||
"w_if": w_if
|
"w_if": w_if
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user