ArubaOS 6.x use a new GRE ID (0x9000) for communication between controller and AP

Add this new ID in GRE dissector

The frame with the new GRE ID is not 802.11 frame such as 80XX GRE ID but a 802.3 frame with curious ethertype (8211 the same id with PAPI Protocol...)

svn path=/trunk/; revision=40039
This commit is contained in:
Alexis La Goutte 2011-11-29 19:46:12 +00:00
parent 022a45e0d9
commit 6f7c632a2f
2 changed files with 2 additions and 0 deletions

View File

@ -157,6 +157,7 @@ const value_string gre_typevals[] = {
{ GRE_ARUBA_8350, "ARUBA WLAN" },
{ GRE_ARUBA_8360, "ARUBA WLAN" },
{ GRE_ARUBA_8370, "ARUBA WLAN" },
{ GRE_ARUBA_9000, "ARUBA WLAN" },
{ 0, NULL }
};

View File

@ -63,3 +63,4 @@
#define GRE_ARUBA_8350 0x8350
#define GRE_ARUBA_8360 0x8360
#define GRE_ARUBA_8370 0x8370
#define GRE_ARUBA_9000 0x9000