This archive contains OpengateM sources & documentations

module to set up MySql

Copyright (C) 2011 Opengate Project Team
      Written by Yoshiaki Watanabe

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

Email: watanaby@is.saga-u.ac.jp

-----------------------------------------------------
install documentation is in doc
-----------------------------------------------------

Content of this archive

README		This file

createtablescript	MySql script to create tables
insertvendorscript	MySql script to insert nic vendors to a table
insertmacscript		MySql script to insert mac address to a table

vendertable.c		Conversion from following to mysql insert script
			http://standards.ieee.org/develop/regauth/oui/oui.txt
			(to use for renewing data in the mysqlinsertscript)


** Before running opengatem system, create MySql tables by following scripts.

====
mysql < createtablescript
mysql < insertvendorscript
mysql < insertmacscript
====

- 1st script creates tables (MUST DO)
- 2nd script inserts nic vendors into a table (MUST DO)
- 3rd script inserts mac address into a table (OPTIONAL)


