如何使用 PHP5 确定多播 MAC 地址?
我正在 PHP 中开发一个计费工具,它连接到 CISCO 交换机并在指定端口上插入 MAC 地址。我使用 Symfony 作为我的底层 php 框架。
如果我尝试插入多播 MAC 地址作为快速以太网安全地址,CISCO 交换机会拒绝该地址。所以我尝试构建一个验证器来确定给定的 MAC 地址是否是多播地址。
有人可以帮助我提供片段或提示吗?
I'm working on a Accounting Tool in PHP which connects to a CISCO Switch and insert a MAC Address on a specified port. I use Symfony as my underlying php framework.
If I try to insert a Multicast MAC address as a FastEthernet secure address the CISCO Switch reject the address. So I try to build a validator which determine if the given MAC address is a multicast address or not.
Is there someone out there who can help me with a snippet or tip?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个片段:
在这里找到。
Try this snippet:
Found here.