mgheorghe / dpugen

MIT License
3 stars 7 forks source link

In DashConfig DASH_ACL_OUT_TABLE acl_group_id does not match group in DASH_ACL_RULE_TABLE #20

Closed idanhac closed 1 year ago

idanhac commented 1 year ago

In DASH_ACL_OUT_TABLE the acl_group_id counter will start with 1 In contrast in DASH_ACL_RULE_TABLE the counter will start in 1001

I fixed it manually by setting eni_index to + 1 in dash_eni_table.py

nsg_id = (eni_index + 1) * 1000 + nsg_index

mgheorghe commented 1 year ago

i believe this is fixed now, can you please confirm table_id = eni * 1000 + stage_in_index

idanhac commented 1 year ago

fixed! thank you!