diff options
author | hannes <hannes> | 2003-11-26 08:49:14 +0000 |
---|---|---|
committer | hannes <hannes> | 2003-11-26 08:49:14 +0000 |
commit | 54e2050ad8d7c70a14a3d5e14d797073b66e4dc1 (patch) | |
tree | 1ff2d471db976c598ce6ea9ecda2cf1946099cee /oui.h | |
parent | 4bf6f976ab87405ccf6847b8bf3d4bf1057267b1 (diff) | |
download | tcpdump-54e2050ad8d7c70a14a3d5e14d797073b66e4dc1.tar.gz |
-rework the radius decoder for a decent multiline output
-add print_vendor_attr() for dissecting vendor proprietary attributes
-add global oui.h oui.c files containing vendor IDs/Name tok2str() table
developers should use this file for resolving OUIs
Diffstat (limited to 'oui.h')
-rw-r--r-- | oui.h | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -0,0 +1,40 @@ +/* @(#) $Header: /tcpdump/master/tcpdump/oui.h,v 1.1 2003-11-26 08:49:14 hannes Exp $ (LBL) */ +/* + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that: (1) source code + * distributions retain the above copyright notice and this paragraph + * in its entirety, and (2) distributions including binary code include + * the above copyright notice and this paragraph in its entirety in + * the documentation or other materials provided with the distribution. + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND + * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT + * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS + * FOR A PARTICULAR PURPOSE. + * + * Original code by Hannes Gredler (hannes@juniper.net) + */ + +extern struct tok oui_values[]; + +#define OUI_ACC 5 +#define OUI_CISCO 9 +#define OUI_SHIVA 166 +#define OUI_LIVINGSTON 307 +#define OUI_MICROSOFT 311 +#define OUI_3COM 429 +#define OUI_ASCEND 529 +#define OUI_BAY 1584 +#define OUI_FOUNDRY 1991 +#define OUI_VERSANET 2180 +#define OUI_REDBACK 2352 +#define OUI_JUNIPER 2636 +#define OUI_APTIS 2637 +#define OUI_COSINE 3085 +#define OUI_SHASTA 3199 +#define OUI_NOMADIX 3309 +#define OUI_UNISPHERE 4874 +#define OUI_ISSANNI 5948 +#define OUI_QUINTUM 6618 +#define OUI_COLUBRIS 8744 +#define OUI_COLUMBIA_UNIVERSITY 11862 +#define OUI_THE3GPP 10415 |