Bug ID 2151493: Add an cmp_dest option to display the hashing table in the same format that is used by the tmos sdag.runtime.hashtable bigdb variable

Last Modified: Jan 08, 2026

Affected Product(s):
F5OS LTM(all modules)

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

Symptoms

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.

Impact

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.

Conditions

You want to set the sdag.runtime.hashtable and sdag.runtime.mirror.hashtable based on the current dag settings.

Workaround

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() ====

Fix Information

None

Behavior Change

Guides & references

K10134038: F5 Bug Tracker Filter Names and Tips