Last Modified: Jan 08, 2026
Affected Product(s):
F5OS LTM
Known Affected Versions:
F5OS-A 1.8.1, F5OS-A 1.8.2, F5OS-A 1.8.3
Opened: Nov 12, 2025 Severity: 3-Major
As a result of a fix for ID 2037409, tmctl -d blade "tmm/sdaglib_hash_table" no longer displays the hash table in a format required for the sdag.runtime.hashtable bigdb variable.
Tmctl -d blade "tmm/sdaglib_hash_table" now outputs separately a dids table and the hash table as a table of indices to the dids table.
You want to set the sdag.runtime.hashtable and sdag.runtime.mirror.hashtable based on the current dag settings.
Use a python script: ==== import sys def parse_hex_list(s): # Split by ':' and convert each token from hex to int return [int(token, 16) for token in s.split(':') if token] def main(): if len(sys.argv) != 3: print(f"usage: {sys.argv[0]} did_table table") sys.exit(0) dids = parse_hex_list(sys.argv[1]) table = parse_hex_list(sys.argv[2]) # Map table indices to values from dids output = [f"{dids[i]:x}" for i in table] print(':'.join(output)) if __name__ == "__main__": main() ====
None