cat /temp/checkmac.php<?php// PHP page to check if MAC is not aleady there for the user, then INSERT it for MAC VALIDATION,// it will add mac for 1st time login user only// 31-OCT-2017$link = mysql_connect('localhost', 'root', 'roott123');if (!$link) {die('Could not connect: ' . mysql_error());}// Default DB is radiusmysql_select_db('radius');// Look for MAC entry for this user$result=mysql_query("select...
checkmac.php
Continue reading checkmac.php