Talk:RouterOs MySql Freeradius

From MikroTik Wiki
Revision as of 14:26, 12 March 2007 by Bryan savage (talk | contribs) (mysql 5/Ubuntu 6.1)
Jump to: navigation, search

So what do you think guys?

mysql 5/Ubuntu 6.1

Great guide, Tristram.

With newer versions of mySQL, the SQL file needs modified.

    CREATE TABLE nas (  
      id int(10) DEFAULT '0' NOT NULL auto_increment,

should be

    CREATE TABLE nas (
      id int(10) NOT NULL auto_increment,