This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] CC3200:供应商 Mac 地址

Guru**** 1135610 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/wireless-connectivity/wi-fi-group/wifi/f/wi-fi-forum/1232942/cc3200-vendor-mac-address

器件型号:CC3200

您好!

如果我查找供应商 MAC 地址以设置防火墙规则、

我可以看到一个庞大的 TI MAC 地址列表。 我无法使用 MAC 地址筛选 ISE 服务器上的 TI 器件。

如何将设备分组并设置防火墙规则?

每次购买是否可以获得相同的供应商 MAC?

https://www.adminsub.net/mac-address-finder/texas

此致、

圣达尔

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    为什么要根据这些 Mac 地址设置防火墙规则?

    这听起来不正确(它只在特定的环境、具有相同 MAC 前缀的其他设备中工作、并可能使用此漏洞等)。

    我真的不知道 Mac 地址是如何分配的(我会尝试检查),但我建议你尝试其他东西。

    如果您仍要使用此类规则、则可以设置自己的 MAC 地址(如下所示):

    /* Setting MAC address to the Device.
     * The new MAC address will override the default MAC address and it be saved in the FileSystem.
     * Requires restarting the device for updating this setting.
    
    */
    
    _u8 MAC_Address[6];
    MAC_Address[0] = 0x8;
    MAC_Address[1] = 0x0;
    MAC_Address[2] = 0x28;
    MAC_Address[3] = 0x22;
    MAC_Address[4] = 0x69;
    MAC_Address[5] = 0x31;
    sl_NetCfgSet(SL_MAC_ADDRESS_SET,1,SL_MAC_ADDR_LEN,(_u8 *)newMacAddress);
    sl_Stop(0);
    sl_Start(NULL,NULL,NULL);