1 | initial version |
There is a wiki page for IEC 61850 GOOSE/GSE (GOOSE/GSE)
with a sample capture.
At a protocol level, there are dissectors for GOOSE and SV so a display filter of goose or sv
to get both.
There are three Ethernet Type defined in etypes.h:
#define ETHERTYPE_IEC61850_GOOSE 0x88B8 /* IEC 61850 is a global standard for the use in utility communication,*/ #define ETHERTYPE_IEC61850_GSE 0x88B9 /* IEC 61850 is a global standard for the use in utility communication,*/ #define ETHERTYPE_IEC61850_SV 0x88BA /* IEC 61850 is a global standard for the use in utility communication,*/
A display filter of eth.type in { 0x88b8 0x88b9 0x88ba }
for all three or pick appropriate eth.type
bases on your captures.
2 | No.2 Revision |
There is a wiki page for IEC 61850 GOOSE/GSE (GOOSE/GSE)
with a sample capture.
At a protocol level, there are dissectors for GOOSE and SV so a display filter of goose or sv
to get both.
There are three Ethernet Type defined in etypes.h:
#define ETHERTYPE_IEC61850_GOOSE 0x88B8 /* IEC 61850 is a global standard for the use in utility communication,*/ #define ETHERTYPE_IEC61850_GSE 0x88B9 /* IEC 61850 is a global standard for the use in utility communication,*/ #define ETHERTYPE_IEC61850_SV 0x88BA /* IEC 61850 is a global standard for the use in utility communication,*/
A display filter of eth.type in { 0x88b8 0x88b9 0x88ba }
for all three or pick appropriate eth.type
bases based on your captures.