Микротик api для php IP Bindings

так что у меня есть этот код

<?php
require('routeros_api.class.php');
include 'include/global.php';
include 'include/function.php';

$username = $_GET['user'];

$sql    = "SELECT user_macaddress FROM demo_user WHERE user_name='".$username."'";
$result1    = mysql_query($sql);
$mac        = mysql_fetch_array($result1);

$API = new RouterosAPI();

$API->debug = true;

if ($API->connect('192.168.88.1', 'admin', '1')) {

$API->write('/ip/hotspot/ip-binding/add',false);
$API->write('=type=bypassed',false);
$API->write("=mac-address='".$mac."'",true);
$READ = $API->read();
$API->disconnect();
ob_clean();
header("location:http://google.com");

}?>

я использую php api для mikrotik для автоматического добавления mac-адреса, но mac-адрес никогда не показывался в моих привязках ip в winbox. ребята, вы можете помочь мне с этим?

0

Решение

Не переносите MAC-адрес в одинарные кавычки. Используйте этот код:

$API->write('/ip/hotspot/ip-binding/add',false);
$API->write('=type=bypassed',false);
$API->write('=mac-address='.$mac,true);

MAC может быть в следующих форматах: xx:xx:xx:xx:xx:xx или же xxxxxxxxxxxx,

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]