ETSI's Bug Tracker - 3GPP SA5 Bug Tracking
View Issue Details
00081633GPP SA5 Bug Tracking[NFV Specifications] Bugpublic11-11-2022 05:5315-12-2022 09:18
Sujeet Banerjee 
lishi 
normalminorhave not tried
confirmedopen 
 
 
0008163: [4.3.1] [Section 6.8.1.2] Incorrect ABNF Grammar Specified for "Vnfm_info"
This is incorrect in the specified Grammar:
-----------
value = any_etsi_nfv_compliant_product| product_specific

any_etsi_nfv_compliant_product = "etsivnfm" SEP "version"

version = "v" version_identifier

version_identifier = 1*2DIGIT DOT 1*2DIGIT DOT 1*2DIGIT
; the version identifier is encoded as a sequence of items of 1 or 2 digits separated by dots
representing the 3 fields (major, technical and editorial) of the version of an ETSI deliverable.

product_specific = enterprise_number SEP product_specific_string

enterprise_number = 1*DIGIT

product_specific_string = *(ALPHA / DIGIT / "-" / ".")

SEP = ":"

DOT = "."
-----------

THE INCORRECT RULE SPECIFIED, THAT DOES NOT MATCH THE EXAMPLE:

>>> any_etsi_nfv_compliant_product = "etsivnfm" SEP "version"

THE LITERAL "version" SPECIFIED IS INCORRECT. IN FACT, IT'S NOT A LITERAL, RATHER IT'S NON-TERMINAL <version>
THE CORRECT RULE WOULD BE:

>>> any_etsi_nfv_compliant_product = "etsivnfm" SEP version

(i.e. version WITHOUT THE QUOTES)

No tags attached.
Issue History
15-12-2022 09:18Sujeet BanerjeeNew Issue
15-12-2022 09:18Sujeet BanerjeeIssue generated from: 0008137

Notes
(0016395)
lishi   
06-12-2022 09:56   
Thanks. It will be fixed in the next version.