Displaying 1 result from an estimated 1 matches for "55s152ms".
2020 Aug 24
5
[Bug 1454] New: nft list set omits timeout values for intervals formatted as hyphenated ranges
....*'
elements = { 224.0.0.0-255.255.255.255 }
Here, the list command has not shown the timeout for the element, even though
one is attached.
# nft flush set t s
# nft add element t s { 224.0.0.0/4, 240.0.0.0/4 }
# nft list set t s | grep -o 'elements.*'
elements = { 224.0.0.0/4 expires 55s152ms, 240.0.0.0-255.255.255.255 }
Here, the list command shows two elements, with the timeout missing for one of
them.
# nft delete set t s
# nft 'add set t s { type ipv4_addr; flags interval; auto-merge; timeout 60s;
}'
# nft add element t s { 224.0.0.0/4, 240.0.0.0/4 }
# nft list set t s | g...