diff --git a/openstackclient/network/v2/network_qos_rule.py b/openstackclient/network/v2/network_qos_rule.py
index 9c4275a82b..28c5600aa6 100644
--- a/openstackclient/network/v2/network_qos_rule.py
+++ b/openstackclient/network/v2/network_qos_rule.py
@@ -141,7 +141,10 @@ def _add_rule_arguments(parser):
         dest='max_burst_kbits',
         metavar='<max-burst-kbits>',
         type=int,
-        help=_('Maximum burst in kilobits, 0 means automatic')
+        help=_('Maximum burst in kilobits, 0 or not specified means '
+               'automatic, which is 80%% of the bandwidth limit, which works '
+               'for typical TCP traffic. For details check the QoS user '
+               'workflow.')
     )
     parser.add_argument(
         '--dscp-mark',