This commit is contained in:
gferg 2002-01-15 13:28:29 +00:00
parent e5a3977ab0
commit 7b1ebc156a
3 changed files with 1375 additions and 1345 deletions

View File

@ -247,7 +247,7 @@ different versions (2.6.x, 5.x and GnuPG). </Para>
NetMeeting-HOWTO</ULink>, NetMeeting-HOWTO</ULink>,
<CiteTitle>Linux NETMEETING HOWTO</CiteTitle> <CiteTitle>Linux NETMEETING HOWTO</CiteTitle>
</Para><Para> </Para><Para>
<CiteTitle>Updated: March 2001</CiteTitle>. <CiteTitle>Updated: January 2002</CiteTitle>.
Describes how to make Microsoft NetMeeting interoperate with Linux.</Para> Describes how to make Microsoft NetMeeting interoperate with Linux.</Para>
</ListItem> </ListItem>

View File

@ -1684,7 +1684,7 @@ the Linux Networking Kernel or more specifically kernel releases
NetMeeting-HOWTO</ULink>, NetMeeting-HOWTO</ULink>,
<CiteTitle>Linux NETMEETING HOWTO</CiteTitle> <CiteTitle>Linux NETMEETING HOWTO</CiteTitle>
</Para><Para> </Para><Para>
<CiteTitle>Updated: March 2001</CiteTitle>. <CiteTitle>Updated: January 2002</CiteTitle>.
Describes how to make Microsoft NetMeeting interoperate with Linux.</Para> Describes how to make Microsoft NetMeeting interoperate with Linux.</Para>
</ListItem> </ListItem>

View File

@ -33,6 +33,15 @@
</othercredit> </othercredit>
<revhistory> <revhistory>
<revision>
<revnumber>v1.2</revnumber>
<date>15 January 2002</date>
<authorinitials>bwb</authorinitials>
<revremark>
Updated ndk-1.2; handles newer versions of openldap.
Added pointers to mailing list
</revremark>
</revision>
<revision> <revision>
<revnumber>v1.1</revnumber> <revnumber>v1.1</revnumber>
<date>31 March 2001</date> <date>31 March 2001</date>
@ -75,7 +84,10 @@
The latest copy of this document is available at The latest copy of this document is available at
<ulink url="http://www.freesoft.org/software/NetMeeting/">http://www.freesoft.org/software/NetMeeting</ulink> <ulink url="http://www.freesoft.org/software/NetMeeting/">http://www.freesoft.org/software/NetMeeting</ulink>
or from the or from the
<ulink url="http://www.linuxdoc.org/">Linux Documentation Project</ulink> <ulink url="http://www.linuxdoc.org/">Linux Documentation Project</ulink>.
<email>software/NetMeeting@freesoft.org</email>
is a mailing list to discuss Linux NetMeeting interoperation;
consult its <ulink url="http://www.freesoft.org/software/NetMeeting/mailinglist/">archive</ulink> if you have questions unanswered in this HOWTO.
</para> </para>
<para> <para>
NetMeeting is Microsoft's client implementation of the H.323 NetMeeting is Microsoft's client implementation of the H.323
@ -115,12 +127,7 @@
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<ulink url="ftp://ftp.intel.com/pub/H.323/DOCS">ftp://ftp.intel.com/pub/H.323/DOCS</ulink> <ulink url="http://developer.intel.com/technology/itj/q21998/articles/art_4.htm">http://developer.intel.com/technology/itj/q21998/articles/art_4.htm</ulink>
</para>
</listitem>
<listitem>
<para>
<ulink url="http://support.intel.com/support/videophone/trial21/H323_WPR.HTM">http://support.intel.com/support/videophone/trial21/H323_WPR.HTM</ulink>
</para> </para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>
@ -147,7 +154,8 @@
<para> <para>
If you have other links to recommend, or other suggestions for If you have other links to recommend, or other suggestions for
improving this document, please email me at improving this document, please email me at
<email>baccala@freesoft.org</email> <email>baccala@freesoft.org</email>, or even better email
<email>software/NetMeeting@freesoft.org</email>
</para> </para>
</section> </section>
<section id="OpenH323"> <section id="OpenH323">
@ -519,6 +527,12 @@ bash# <userinput>make install</userinput>
Custom NetMeeting schema used by the LDAP server Custom NetMeeting schema used by the LDAP server
</entry> </entry>
</row> </row>
<row>
<entry><filename>core.schema.patch</filename></entry>
<entry>
Patch to LDAP server's core schema
</entry>
</row>
<row> <row>
<entry><filename>slapd.conf</filename></entry> <entry><filename>slapd.conf</filename></entry>
<entry> <entry>
@ -567,12 +581,29 @@ bash# <userinput>make install</userinput>
and copy both <filename>slapd.conf</filename> and copy both <filename>slapd.conf</filename>
and <filename>slapd2.conf</filename> to the and <filename>slapd2.conf</filename> to the
<filename class=directory>/usr/local/etc/openldap</filename> directory. <filename class=directory>/usr/local/etc/openldap</filename> directory.
</para>
<para>
Be sure to use <filename>core.schema.patch</filename> to patch
openldap's core schema in the
<filename class=directory>/usr/local/etc/openldap/schema</filename>
directory:
</para>
<screen>
bash$ <userinput>cd /usr/local/etc/openldap/schema</userinput>
bash$ <userinput>ls</userinput>
corba.schema inetorgperson.schema misc.schema nis.schema
core.schema java.schema nadf.schema openldap.schema
cosine.schema krb5-kdc.schema netmeeting.schema
bash$ <userinput>cp core.schema core.schema.bak</userinput>
bash$ <userinput>patch core.schema &lt; ~/core.schema.patch</userinput>
</screen>
<para>
Create the directory Create the directory
<filename class=directory>/usr/local/var/openldap-netmeeting</filename> <filename class=directory>/usr/local/var/openldap-netmeeting</filename>
to store the LDAP database, and make it world writable. to store the LDAP database, and make it world writable.
</para> </para>
<para> <para>
Especially if you've changed the directories, edit Especially if you're using directories from the samples, edit
<filename>slapd.conf</filename> and <filename>slapd2.conf</filename> <filename>slapd.conf</filename> and <filename>slapd2.conf</filename>
and verify their configuration settings. and verify their configuration settings.
</para> </para>
@ -1340,4 +1371,3 @@ bash$ <userinput>ohphone -n 111@10.1.1.10</userinput>
</appendix> </appendix>
</article> </article>