On 05/10/15 14:01, Raphael Hertzog wrote:
> Hi,
> 
> On Mon, 05 Oct 2015, Daniel Pocock wrote:
>> I can do some more work on this later today, will that be OK?
> 
> Sure.
> 
>> - I'm not sure it is optimal to include server setup stuff in the
>> Workstation chapter, maybe it should just direct people to the services
>> chapter (11)?
> 
> Yes, fine.
> 

done

>> - I ran ejabber for a long time but Prosody is also very popular.  The
>> official debian.org SIP service (we tested it at DebConf15, it should be
>> live very soon) is based on Prosody.  There are several DDs actively
>> involved in the Prosody and module packaging.  Would you be happy if I
>> put Prosody as the recommended option and ejabberd as an alternative?
> 
> Yes, but then you replace ejabberd setup instructions with prosody setup
> instructions.
> 

done

>> - at the beginning, I would add an extra paragraph before 11.1, briefly
>> mentioning that this chapter includes various RTC options and the RTC
>> Quickstart is worth reading alongside chapter 11
>>
>> - add 11.8 TURN server, cutting and pasting some content from
>>      http://rtcquickstart.org/guide/multi/turn.html
>>
>> - add 11.9 SIP server, cutting and pasting some content from
>>      http://rtcquickstart.org/guide/multi/sip-proxy-repro.html
>>
>> - add 11.10 Prosody XMPP server, cutting and pasting some content from
>>      http://rtcquickstart.org/guide/multi/xmpp-server-prosody.html
>>     and with a <sidebar> for ejabberd
>>
>> - add 11.11 PBX server
>>      briefly mention that Debian has Asterisk packages,
>>      a full setup is too much to cover though
> 
> I think I prefer single 11.8 like in your initial patch, except that you
> integrate a 11.8.1 to document the setup of prosody and do some
> advertising of your RTC quickstart in 11.8.2 for those who want more
> explanations about the other relevant services.

I went a bit further, adding settings for DNS, TURN, SIP and XMPP, so
people can do the basic package setup without looking at RTC Quick Start
Guide

>> - and file a wishlist bug for somebody to contribute:
>>       11.12 IRC server setup
> 
> Not needed. Keeping the current sidebar as an alternative to the XMPP
> setup is fine, although you might want to add an explanation of why
> IRC does less than XMPP.
> 

I just tweaked the IRC text very slightly.  No server-side IRC setup
details have been added.

>> - remove section 13.7.2
>>
>> - create a new section "13.10 Real-time Communications"
>>     with subsections
>>      13.10.1 Instant Messaging and Chat
>>      13.10.2 Voice and Video/webcam
>>   This new section 13.10 would include:
>>     - some of the content from section 13.7.2
>>     - links to the service setup in chapter 11
> 
> Ok.
>

done
>From f747f3d5b43a0bdb17a4819857c6e3ab1896d7e2 Mon Sep 17 00:00:00 2001
From: Daniel Pocock <dan...@pocock.pro>
Date: Mon, 5 Oct 2015 19:02:56 +0200
Subject: [PATCH] Update RTC server and client details

---
 en-US/11_network-services.xml | 441 +++++++++++++++++++++++++++++++++++++++++-
 en-US/13_workstation.xml      | 256 +++++++++++++-----------
 2 files changed, 580 insertions(+), 117 deletions(-)

diff --git a/en-US/11_network-services.xml b/en-US/11_network-services.xml
index 029e42e..ae57da0 100644
--- a/en-US/11_network-services.xml
+++ b/en-US/11_network-services.xml
@@ -15,12 +15,25 @@
       <keyword>OpenLDAP</keyword>
     </keywordset>
   </chapterinfo>
-  <title>Network Services: Postfix, Apache, NFS, Samba, Squid, LDAP</title>
+  <title>Network Services: Postfix, Apache, NFS, Samba, Squid, LDAP, SIP, XMPP, TURN</title>
   <highlights>
     <para>Network services are the programs that users interact with
     directly in their daily work. They are the tip of the information system
     iceberg, and this chapter focuses on them; the hidden parts they rely
     on are the infrastructure we already described.</para>
+
+    <!-- TODO: #800968 - add a section or appendix on TLS,
+                         replace para below -->
+    <para>Many modern network services require encryption technology to
+    operate reliably and securely, especially when used on the public
+    Internet.  X.509 Certificates (which may also be referred to as
+    SSL Certificates or TLS Certificates) are frequently used for this
+    purpose.  A certificate for a specific domain can often be shared
+    between more than one of the services discussed in this chapter.
+    </para>
+    <indexterm><primary>TLS</primary></indexterm>
+    <indexterm><primary>X.509</primary></indexterm>
+    <indexterm><primary>Certificates</primary></indexterm>
   </highlights>
   <section id="sect.smtp-mail-server">
     <title>Mail Server</title>
@@ -3220,4 +3233,430 @@ TLS_CACERT      /etc/ssl/certs/ca-certificates.crt
       </section>
     </section>
   </section>
+  <section id="sect.rtc-services">
+    <title>Real-Time Communication Services</title>
+
+    <para>Real-Time Communication (RTC) services include voice,
+    video/webcam, instant messaging (IM) and desktop sharing.
+    This chapter gives a brief introduction to three of the
+    services required to operate RTC, including a TURN server,
+    SIP server and XMPP server.  Comprehensive details of how to plan, install
+    and manage these services are available in the Real-Time Communications
+    Quick Start Guide which includes examples specific to Debian.
+    <ulink type="block" url="http://rtcquickstart.org"/>
+    </para>
+    <indexterm><primary>VoIP</primary><secondary>server</secondary></indexterm>
+    <indexterm><primary>RTC</primary><secondary>server</secondary></indexterm>
+    <indexterm><primary>Instant Messaging</primary><secondary>server</secondary></indexterm>
+    <indexterm><primary>Chat</primary><secondary>server</secondary></indexterm>
+
+    <para>Both SIP and XMPP can provide the same functionality.  SIP
+    is slightly more well known for voice and video while XMPP is
+    traditionally regarded as an IM protocol.  In fact, they can both
+    be used for any of these purposes.  To maximize connectivity options,
+    it is recommended to run both in parallel.</para>
+    <indexterm><primary>SIP</primary></indexterm>
+    <indexterm><primary>XMPP</primary></indexterm>
+
+    <!-- TODO: #800968 - add a section or appendix on TLS,
+                         replace para below -->
+    <para>These services rely on X.509 Certificates to a much greater extent
+    than many of the other services discussed in this chapter.  Please
+    refer to <ulink url="http://rtcquickstart.org/guide/multi/tls.html";>
+    TLS Certificate Creation</ulink> in the Real-Time Communications Quick Start
+    Guide for an in-depth discussion of this topic.</para>
+    <indexterm><primary>TLS</primary></indexterm>
+    <indexterm><primary>X.509</primary></indexterm>
+    <indexterm><primary>Certificates</primary></indexterm>
+
+    <section id="sect.rtc-dns-settings">
+      <title>DNS settings for RTC services</title>
+
+      <para>RTC services require DNS SRV and NAPTR records.  A sample
+      configuration that can be placed in the zone file for
+      <literal>falcot.com</literal>:</para>
+      <indexterm><primary>DNS</primary><secondary>SRV record</secondary></indexterm>
+      <indexterm><primary>DNS</primary><secondary>NAPTR record</secondary></indexterm>
+
+<programlisting>
+; the server where everything will run
+server1            IN     A      198.51.100.19
+server1            IN     AAAA   2001:DB8:1000:2000::19
+
+; some convenient CNAMEs
+turn-server        IN     CNAME  server1
+sip-proxy          IN     CNAME  server1
+xmpp-gw            IN     CNAME  server1
+
+; DNS SRV for STUN / TURN
+_stun._udp  IN SRV    0 1 3467 turn-server.falcot.com.
+
+; DNS SRV and NAPTR records for SIP
+_sips._tcp  IN SRV    0 1 5061 sip-proxy.example.org.
+@           IN NAPTR  10 0 "s" "SIPS+D2T" "" _sips._tcp.falcot.com.
+
+; DNS SRV records for XMPP Server and Client modes:
+_xmpp-client._tcp  IN     SRV    5 0 5222 xmpp-gw.falcot.com.
+_xmpp-server._tcp  IN     SRV    5 0 5269 xmpp-gw.falcot.com.
+</programlisting>
+    </section>
+
+    <section id="sect.turn-server">
+      <title>TURN Server</title>
+
+      <para>TURN is a service that helps clients behind NAT routers and
+      firewalls to discover the most efficient way to communicate with other
+      clients and to relay the media streams if no direct media path can be
+      found.  It is highly recommended that the TURN server is installed
+      before any of the other RTC services are offered to end users.</para>
+      <indexterm><primary>TURN</primary><secondary>server</secondary></indexterm>
+
+      <para>TURN and the related ICE protocol are open standards.
+      To benefit from these protocols, maximizing connectivity and
+      minimizing user frustration, it is important to ensure that all
+      client software supports ICE and TURN.</para>
+      <indexterm><primary>ICE</primary></indexterm>
+
+      <para>For the ICE algorithm to work effectively, the server must
+      have two public IPv4 addresses.</para>
+      <section id="sect.turn-server-install">
+        <title>Install the TURN server</title>
+        <para>Install the package <emphasis
+        role="pkg">resiprocate-turn-server</emphasis>.</para>
+
+        <para>Edit the configuration file
+        <filename>/etc/reTurn/reTurnServer.config</filename>.  The
+        most important thing to do is insert the IP addresses of the
+        server.</para>
+
+<programlisting>
+# your IP addresses go here:
+TurnAddress = 198.51.100.19
+TurnV6Address = 2001:DB8:1000:2000::19
+AltStunAddress = 198.51.100.20
+# your domain goes here, it must match the value used
+# to hash your passwords if they are already hashed
+# using the HA1 algorithm:
+AuthenticationRealm = myrealm
+
+UserDatabaseFile = /etc/reTurn/users.txt
+UserDatabaseHashedPasswords = true
+</programlisting>
+
+        <para>Restart the service.</para>
+      </section>
+      <section id="sect.turn-server-management">
+        <title>Managing the TURN users</title>
+        <para>Use the htdigest utility to manage the TURN server user list.
+        </para>
+
+<programlisting>
+# htdigest /etc/reTurn/users.txt myrealm bob
+</programlisting>
+        <para>Use the HUP signal to make the server reload the
+        <filename>/etc/reTurn/users.txt</filename> file after changing it
+        or enable the automatic reload feature in
+        <filename>/etc/reTurn/reTurnServer.config</filename>.</para>
+      </section>
+    </section>
+
+    <section id="sect.sip-server">
+      <title>SIP Proxy Server</title>
+
+      <para>A SIP proxy server manages the incoming and outgoing SIP
+      connections between other organizations, SIP trunking providers,
+      SIP PBXes such as Asterisk, SIP phones, SIP-based softphones
+      and WebRTC applications.</para>
+      <indexterm><primary>SIP</primary><secondary>server</secondary></indexterm>
+      <indexterm><primary>SIP</primary><secondary>proxy</secondary></indexterm>
+      <indexterm><primary>SIP</primary><secondary>PBX</secondary></indexterm>
+      <indexterm><primary>SIP</primary><secondary>trunk</secondary></indexterm>
+
+      <para>It is strongly recommended to install and configure the SIP
+      proxy before attempting a SIP PBX setup.  The SIP proxy normalizes
+      a lot of the traffic reaching the PBX and provides greater
+      connectivity and resilience.</para>
+
+      <section id="sect.sip-server-install">
+        <title>Install the SIP proxy</title>
+        <para>Install the package <emphasis role="pkg">repro</emphasis>.
+        Using the package from jessie-backports is highly recommended,
+        as it has the latest improvements for maximizing connectivity
+        and resilience.</para>
+        <indexterm><primary>repro</primary></indexterm>
+
+        <para>Edit the configuration file
+        <filename>/etc/repro/repro.config</filename>.  The
+        most important thing to do is insert the IP addresses of the
+        server.  The example below demonstrates how to setup both
+        regular SIP and WebSockets/WebRTC, using TLS, IPv4 and IPv6:</para>
+
+<programlisting>
+# Transport1 will be for SIP over TLS connections
+# We use port 5061 here but if you have clients connecting from
+# locations with firewalls you could change this to listen on port 443
+Transport1Interface = 198.51.100.19:5061
+Transport1Type = TLS
+Transport1TlsDomain = falcot.com
+Transport1TlsClientVerification = Optional
+Transport1RecordRouteUri = sip:falcot.com;transport=TLS
+Transport1TlsPrivateKey = /etc/ssl/private/falcot.com-key.pem
+Transport1TlsCertificate = /etc/ssl/public/falcot.com.pem
+
+# Transport2 is the IPv6 version of Transport1
+Transport2Interface = 2001:DB8:1000:2000::19:5061
+Transport2Type = TLS
+Transport2TlsDomain = falcot.com
+Transport2TlsClientVerification = Optional
+Transport2RecordRouteUri = sip:falcot.com;transport=TLS
+Transport2TlsPrivateKey = /etc/ssl/private/falcot.com-key.pem
+Transport2TlsCertificate = /etc/ssl/public/falcot.com.pem
+
+# Transport3 will be for SIP over WebSocket (WebRTC) connections
+# We use port 8443 here but you could use 443 instead
+Transport3Interface = 198.51.100.19:8443
+Transport3Type = WSS
+Transport3TlsDomain = falcot.com
+# This would require the browser to send a certificate, but browsers
+# don't currently appear to be able to, so leave it as None:
+Transport3TlsClientVerification = None
+Transport3RecordRouteUri = sip:falcot.com;transport=WSS
+Transport3TlsPrivateKey = /etc/ssl/private/falcot.com-key.pem
+Transport3TlsCertificate = /etc/ssl/public/falcot.com.pem
+
+# Transport4 is the IPv6 version of Transport3
+Transport4Interface = 2001:DB8:1000:2000::19:8443
+Transport4Type = WSS
+Transport4TlsDomain = falcot.com
+Transport4TlsClientVerification = None
+Transport4RecordRouteUri = sip:falcot.com;transport=WSS
+Transport4TlsPrivateKey = /etc/ssl/private/falcot.com-key.pem
+Transport4TlsCertificate = /etc/ssl/public/falcot.com.pem
+
+# Transport5: this could be for TCP connections to an Asterisk server
+# in your internal network.  Don't allow port 5060 through the external
+# firewall.
+Transport5Interface = 198.51.100.19:5060
+Transport5Type = TCP
+Transport5RecordRouteUri = sip:198.51.100.19:5060;transport=TCP
+
+HttpBindAddress = 198.51.100.19, 2001:DB8:1000:2000::19
+HttpAdminUserFile = /etc/repro/users.txt
+
+RecordRouteUri = sip:falcot.com;transport=tls
+ForceRecordRouting = true
+EnumSuffixes = e164.arpa, sip5060.net, e164.org
+DisableOutbound = false
+EnableFlowTokens = true
+EnableCertificateAuthenticator = True
+</programlisting>
+
+        <para>Use the htdigest utility to manage the admin password
+        for the web interface.  The username must be
+        <emphasis>admin</emphasis> and the realm name must match
+        the value specified in <filename>repro.config</filename>.
+        </para>
+
+<programlisting>
+# htdigest /etc/repro/users.txt repro admin
+</programlisting>
+
+        <para>Restart the service to use the new configuration.</para>
+      </section>
+      <section id="sect.sip-server-management">
+        <title>Managing the SIP proxy</title>
+        <para>Go to the web interface at
+        <literal>http://sip-proxy.falcot.com:5080</literal> to
+        complete the configuration by adding domains, local users
+        and static routes.</para>
+
+        <para>The first step is to add the local domain.  The
+        process must be restarted after adding or removing domains
+        from the list.</para>
+
+        <para>The proxy knows how to route calls between local users
+        and full SIP address, the routing configuration is only necessary
+        for overriding default behavior, for example, to recognize phone
+        numbers, add a prefix and route them to a SIP provider.</para>
+      </section>
+    </section>
+
+    <section id="sect.xmpp-server">
+      <title>XMPP Server</title>
+
+      <para>An XMPP server manages connectivity between local XMPP users
+      and XMPP users in other domains on the public Internet.</para>
+      <indexterm><primary>XMPP</primary><secondary>server</secondary></indexterm>
+
+      <sidebar>
+        <title><emphasis>Terminology</emphasis> XMPP or Jabber?</title>
+        <indexterm><primary>Jabber</primary></indexterm>
+
+        <para>XMPP is sometimes referred to as Jabber.  In fact,
+        Jabber is a trademark and XMPP is the official name of the standard.
+        </para>
+        <indexterm><primary>Jabber</primary></indexterm>
+      </sidebar>
+
+      <para>Prosody is a popular XMPP server that operates reliably
+      on Debian servers.</para>
+      <indexterm><primary>Prosody</primary></indexterm>
+      <section id="sect.xmpp-server-install">
+        <title>Install the XMPP server</title>
+        <para>Install the package <emphasis role="pkg">prosody</emphasis>.
+        Using the package from jessie-backports is highly recommended,
+        as it has the latest improvements for maximizing connectivity
+        and resilience.</para>
+        <indexterm><primary>Prosody</primary></indexterm>
+
+        <para>Review the configuration file
+        <filename>/etc/prosody/prosody.cfg.lua</filename>.  The
+        most important thing to do is insert JIDs of the users
+        who are permitted to manage the server.</para>
+
+<programlisting>
+admins = { "b...@falcot.com" }
+</programlisting>
+
+        <para>An individual configuration file is also needed for
+        each domain.  Copy the sample from
+        <filename>/etc/prosody/conf.avail/example.com.cfg.lua</filename>
+        and use it as a starting point.  Here is
+        <literal>falcot.com.cfg.lua</literal>:</para>
+
+<programlisting>
+VirtualHost "falcot.com"
+        enabled = true
+        ssl = {
+                key = "/etc/ssl/private/falcot.com-key.pem";
+                certificate = "/etc/ssl/public/falcot.com.pem";
+                }
+</programlisting>
+
+        <para>To enable the domain, there must be a symlink from
+        <filename>/etc/prosody/conf.d</filename>.  Create it like so:</para>
+
+<programlisting>
+# ln -s /etc/prosody/conf.avail/falcot.com.cfg.lua /etc/prosody/conf.d
+</programlisting>
+
+        <para>Restart the service to use the new configuration.</para>
+      </section>
+      <section id="sect.xmpp-server-management">
+        <title>Managing the XMPP server</title>
+        <para>Some management operations can be performed using the
+        <literal>prosodyctl</literal> command line utility.  For example, to
+        add the administrator account specified in
+        <filename>/etc/prosody/prosody.cfg.lua</filename>:</para>
+<programlisting>
+# prosodyctl adduser b...@falcot.com
+</programlisting>
+
+        <para>See the <ulink url="http://prosody.im/doc/configure";>
+        Prosody online documentation</ulink> for more details about
+        how to customize the configuration.</para>
+
+      </section>
+
+    </section>
+    <section id="sect.rtc-port-443">
+      <title>Running services on port 443</title>
+      <para>Some administrators prefer to run all of their RTC services on
+      port 443.  This helps users to connect from remote locations such as
+      hotels and airports where other ports may be blocked or
+      Internet traffic is routed through HTTP proxy servers.</para>
+
+      <para>To use this strategy, each service (SIP, XMPP and TURN)
+      needs a different IP address.  All the services can still be on the
+      same host as Linux supports multiple IP addresses on a single host.
+      The port number, 443, must be specified in the configuration
+      files for each process and also in the DNS SRV records.</para>
+    </section>
+    <section id="sect.rtc-webrtc">
+      <title>Adding WebRTC</title>
+
+      <para>Falcot wants to let customers make phone calls directly from
+      the web site.  The Falcot administrators also want to use WebRTC as
+      part of their disaster recovery plan, so staff can use web browsers
+      at home to log in to the company phone system and work normally in
+      an emergency.</para>
+      <indexterm><primary>WebRTC</primary></indexterm>
+      <indexterm><primary>SIP</primary><secondary>WebSockets</secondary></indexterm>
+
+      <sidebar>
+        <title><emphasis>Demo</emphasis> Try WebRTC</title>
+        <indexterm><primary>WebRTC demo</primary></indexterm>
+
+        <para>If you have not tried WebRTC before, there are various
+        sites that give an online demonstration and test facilities.
+        <ulink type="block" url="http://www.sip5060.net/test-calls"/></para>        
+      </sidebar>
+
+      <para>WebRTC is a rapidly evolving technology and it is essential
+      to use packages from jessie-backports or the testing distribution.
+      </para>
+
+      <para>JSCommunicator is a generic, unbranded WebRTC phone that does
+      not require any server-side scripting such as PHP.  It is built
+      exclusively with HTML, CSS and JavaScript.  It is the basis
+      for many other WebRTC services and modules for more advanced
+      web publishing frameworks.
+      <ulink type="block" url="http://jscommunicator.org"/>
+      </para>
+      <indexterm><primary>JSCommunicator</primary></indexterm>
+
+      <para>The package
+      <emphasis role="pkg">jscommunicator-web-phone</emphasis> is the
+      quickest way to install a WebRTC phone into a web site.
+      It requires a SIP proxy with a WebSocket transport.  The instructions in
+      <xref linkend="sect.sip-server-install"/> include the necessary
+      details to enable the WebSocket transport in the
+      <emphasis role="pkg">repro</emphasis> SIP proxy.</para>
+
+      <para>After installing
+      <emphasis role="pkg">jscommunicator-web-phone</emphasis>,
+      there are various ways to use it.  A simple strategy is to include
+      or copy the configuration from
+      <filename>/etc/jscommunicator-web-phone/apache.conf</filename>
+      into an Apache virtual host configuration.</para>
+
+      <para>Once the web-phone files are available in the web server,
+      customize the
+      <filename>/etc/jscommunicator-web-phone/config.js</filename> to point
+      at the TURN server and SIP proxy.  For example:</para>
+
+<programlisting>
+JSCommSettings = {
+
+  // Web server environment
+  webserver: {
+    url_prefix: null            // If set, prefix used to construct sound/ URLs
+  },
+
+  // STUN/TURN media relays
+  stun_servers: [],
+  turn_servers: [
+    { server:"turn:turn-server.falcot.com?transport=udp", username:"bob", password:"bob" }
+  ],
+
+  // WebSocket connection
+  websocket: {
+      // Notice we use the falcot.com domain certificate and port 8443
+      // This matches the Transport3 and Transport4 example in
+      // the falcot.com repro.config file
+    servers: 'wss://falcot.com:8443',
+    connection_recovery_min_interval: 2,
+    connection_recovery_max_interval: 30
+  },
+
+  ...
+</programlisting>
+
+      <para>More advanced click-to-call web sites typically use server-side
+      scripting to generate the <literal>config.js</literal> file dynamically.
+      The <ulink url="http://drucall.org";>DruCall</ulink> source code
+      demonstrates how to do this with PHP.</para>
+      <indexterm><primary>DruCall</primary></indexterm>
+    </section>
+  </section>
 </chapter>
diff --git a/en-US/13_workstation.xml b/en-US/13_workstation.xml
index 70e3162..8cbbdf4 100644
--- a/en-US/13_workstation.xml
+++ b/en-US/13_workstation.xml
@@ -734,122 +734,6 @@
 
     </section>
     <section>
-      <title>Instant Messaging Systems</title>
-      <indexterm><primary>messaging</primary><secondary>instant</secondary></indexterm>
-
-      <para>When setting up an internal instant messaging system for a
-      company, the obvious choice is Jabber: its protocol is an open
-      standard (XMPP), and there is no shortage of features. The messages
-      can be encrypted, which can be a real bonus, and gateways can be
-      set up between a Jabber server and other instant messaging networks
-      such as ICQ, AIM, Yahoo, MSN, and so on.</para>
-      <indexterm><primary>Jabber</primary></indexterm>
-      <indexterm><primary>XMPP</primary></indexterm>
-      <indexterm><primary>ICQ</primary></indexterm>
-      <indexterm><primary>AIM</primary></indexterm>
-      <indexterm><primary><emphasis>Messenger</emphasis></primary></indexterm>
-
-      <sidebar>
-	<title><emphasis>ALTERNATIVE</emphasis> Internet Relay Chat</title>
-
-	<para>IRC can also be considered, instead of Jabber. This system
-	is more centered around the concept of channels, the name of
-	which starts with a hash sign <literal>#</literal>. Each channel
-	is usually targeted at a specific topic and any number of people
-	can join a channel to discuss it (but users can still have
-	one-to-one private conversations if needed). The IRC protocol is
-	older, and does not allow end-to-end encryption of the messages;
-	it is still possible to encrypt the communications between the
-	users and the server by tunneling the IRC protocol inside
-	SSL.</para>
-	<indexterm><primary>IRC</primary></indexterm>
-	<indexterm><primary><foreignphrase>Internet Relay Chat</foreignphrase></primary></indexterm>
-
-	<para>IRC clients are a bit more complex, and they usually
-	provide many features that are of limited use in a corporate
-	environment. For instance, channel “operators” are users
-	endowed with the ability to kick other users from a channel, or
-	even ban them permanently, when the normal discussion is
-	disrupted.</para>
-
-	<para>Since the IRC protocol is very old, many clients are
-	available to cater for many user groups; examples include XChat
-	and Smuxi (graphical clients based on GTK+), Irssi (text mode),
-	Erc (integrated to Emacs), and so on.</para>
-      </sidebar>
-
-      <sidebar>
-	<title><emphasis>QUICK LOOK</emphasis> Video conferencing with Ekiga</title>
-
-	<para>Ekiga (formerly GnomeMeeting) is the most prominent
-	application for Linux video conferencing. It is both stable and
-	functional, and is very easily used on a local network; setting
-	up the service on a global network is much more complex when the
-	firewalls involved lack explicit support for the H323 and/or SIP
-	teleconferencing protocols with all their quirks.</para>
-	<indexterm><primary>video conference</primary></indexterm>
-	<indexterm><primary>H323</primary></indexterm>
-
-	<para>If only one Ekiga client is to run behind the firewall, the
-	configuration is rather straightforward, and only involves
-	forwarding a few ports to the dedicated host: TCP port 1720
-	(listening for incoming connections), TCP port 5060 (for SIP),
-	TCP ports 30000 to 30010 (for control of open connections) and
-	UDP ports 5000 to 5100 (for audio and video data transmission and
-	registration to an H323 proxy).</para>
-	<indexterm><primary>GnomeMeeting</primary></indexterm>
-	<indexterm><primary>Ekiga</primary></indexterm>
-
-	<para>When several Ekiga clients are to run behind the firewall,
-	complexity increases notably. An H323 proxy (for instance the
-	<emphasis role="pkg">gnugk</emphasis> package) must be set up,
-	and its configuration is far from simple.</para>
-	<indexterm><primary><emphasis role="pkg">gnugk</emphasis></primary></indexterm>
-      </sidebar>
-      <section>
-	<title>Configuring the Server</title>
-
-	<para>Setting up a Jabber server is rather straightforward. After
-	installing the <emphasis role="pkg">ejabberd</emphasis> package,
-	executing <command>dpkg-reconfigure ejabberd</command> will allow
-	customizing the default domain, and create an administrator
-	account. Note that the Jabber server needs a valid DNS name to
-	point at it, so some network administration can be required
-	beforehand. The Falcot Corp administrators picked
-	<literal>jabber.falcot.com</literal> for that purpose.</para>
-
-	<para>Once this initial set up is over, the service configuration
-	can be controlled through a web interface accessible at
-	<literal>http://jabber.falcot.com:5280/admin/</literal>. The
-	requested username and password are those that were given earlier
-	during the initial configuration. Note that the username must be
-	qualified with the configured domain: the
-	<literal>admin</literal> account becomes
-	<literal>ad...@jabber.falcot.com</literal>.</para>
-
-	<para>The web interface removes the need to edit a configuration
-	file, but does not always make the task easier, since many
-	options have a peculiar syntax that needs to be known.
-	<filename>/usr/share/doc/ejabberd/guide.html</filename> is
-	therefore a recommended read.</para>
-      </section>
-      <section>
-	<title>Jabber Clients</title>
-	<indexterm><primary>client</primary><secondary>Jabber</secondary></indexterm>
-	<indexterm><primary>Jabber</primary><secondary>clients</secondary></indexterm>
-
-	<para>GNOME provides Empathy (in the similarly-named package), a
-	minimalist client that integrates in the notification area of the
-	desktop (on the middle-bottom in the default GNOME
-	configuration). It also supports many instant messaging protocols
-	beyond Jabber.</para>
-	<indexterm><primary>Empathy</primary></indexterm>
-
-	<para>KDE provides Kopete (in the package of the same name).</para>
-	<indexterm><primary>Kopete</primary></indexterm>
-      </section>
-    </section>
-    <section>
       <title>Collaborative Work With FusionForge</title>
       <indexterm><primary>FusionForge</primary></indexterm>
 
@@ -1098,4 +982,144 @@
       linkend="sect.remote-login"/>.</para>
     </sidebar>
   </section>
+  <section id="sect.rtc-clients">
+    <title>Real-Time Communications software</title>
+
+    <para>Debian provides a wide range of Real-Time Communications (RTC)
+    client software.  The setup of RTC servers is discussed in
+    <xref linkend="sect.rtc-services"/>.  In SIP terminology,
+    a client application or device is alos referred to as a user agent.</para>
+    <indexterm><primary>User agent</primary></indexterm>
+
+    <para>Each client application varies in functionality.  Some
+    applications are more convenient for intensive chat users while
+    other applications are more stable for webcam users.  It may be
+    necessary to test several applications to identify those which
+    are most satisfactory.  A user may finally decide that they
+    need more than one application, for example, an XMPP application
+    for messaging with customers and an IRC application for collaboration
+    with some online communities.</para>
+
+    <para>To maximize the ability of users to communicate with the wider
+    world, it is recommended to configure both SIP and XMPP clients
+    or a single client that supports both protocols.</para>
+    <indexterm><primary>SIP</primary></indexterm>
+    <indexterm><primary>XMPP</primary></indexterm>
+
+    <para>The default GNOME desktop includes the Empathy communications
+    client.  Empathy can support both SIP and XMPP.  It supports instant
+    messaging (IM), voice and video.  The KDE desktop provides KDE Telepathy,
+    a communications client based on the same underlying Telepathy APIs
+    used by the GNOME Empathy client.</para>
+    <indexterm><primary>Empathy</primary></indexterm>
+    <indexterm><primary>Telepathy</primary></indexterm>
+
+    <para>Popular alternatives to Empathy/Telepathy include Ekiga, Jitsi,
+    Linphone, Psi and Ring (formerly known as SFLphone).</para>
+    <indexterm><primary>Ekiga</primary></indexterm>
+    <indexterm><primary>Jitsi</primary></indexterm>
+    <indexterm><primary>Linphone</primary></indexterm>
+    <indexterm><primary>Psi</primary></indexterm>
+    <indexterm><primary>Ring (soft-phone)</primary></indexterm>
+    <indexterm><primary>SFLphone</primary></indexterm>
+
+    <para>Some of these applications can also interact with mobile users
+    using apps such as Lumicall on Android.
+    <ulink type="block" url="http://lumicall.org";>Lumicall</ulink>.
+    </para>
+    <indexterm><primary>Lumicall</primary></indexterm>
+
+    <para>The Real-Time Communications Quick Start Guide has a chapter
+    dedicated to client software selection and configuration and
+    it also provides some information about provisioning systems.
+    <ulink type="block"
+    url="http://rtcquickstart.org/guide/multi/useragents.html"/>.</para>
+    <indexterm><primary>provisioning</primary></indexterm>
+
+    <para>Debian Developers operate a community SIP service at
+    <ulink url="https://rtc.debian.org";>rtc.debian.org</ulink>.
+    The community maintains a wiki with documentation about setting
+    up many of the client applications packaged in Debian.  The wiki articles
+    and screenshots are a useful resource for anybody setting up a similar
+    service on their own domain.
+    <ulink type="block"
+    url="https://wiki.debian.org/UnifiedCommunications/DebianDevelopers/UserGuide"/>.
+    </para>
+
+    <sidebar>
+     <title><emphasis>RECOMMENDED</emphasis> Look for clients supporting
+     ICE and TURN</title>
+
+     <para>Some RTC clients have significant problems sending voice and
+     video through firewalls and NAT networks.  Users may receive
+     ghost calls (their phone rings but they don't hear the other person)
+     or they may not be able to call at all.</para>
+
+     <para>The ICE and TURN protocols were developed to resolve these issues.
+     Operating a TURN server with public IP addresses in each site and
+     using client software that supports both ICE and TURN gives the
+     best user experience.</para>
+
+     <para>If the client software is only intended for instant messaging,
+     there is no requirement for ICE or TURN support.</para>
+    </sidebar>
+
+    <sidebar>
+     <title><emphasis>ALTERNATIVE</emphasis> Internet Relay Chat</title>
+
+     <para>IRC can also be considered, in addition to SIP and XMPP. IRC
+     is more oriented around the concept of channels, the name of
+     which starts with a hash sign <literal>#</literal>. Each channel
+     is usually targeted at a specific topic and any number of people
+     can join a channel to discuss it (but users can still have
+     one-to-one private conversations if needed). The IRC protocol is
+     older, and does not allow end-to-end encryption of the messages;
+     it is still possible to encrypt the communications between the
+     users and the server by tunneling the IRC protocol inside
+     SSL.</para>
+     <indexterm><primary>IRC</primary></indexterm>
+     <indexterm><primary><foreignphrase>Internet Relay Chat</foreignphrase></primary></indexterm>
+
+     <para>IRC clients are a bit more complex, and they usually
+     provide many features that are of limited use in a corporate
+     environment. For instance, channel “operators” are users
+     endowed with the ability to kick other users from a channel, or
+     even ban them permanently, when the normal discussion is
+     disrupted.</para>
+
+     <para>Since the IRC protocol is very old, many clients are
+     available to cater for many user groups; examples include XChat
+     and Smuxi (graphical clients based on GTK+), Irssi (text mode),
+     Erc (integrated to Emacs), and so on.</para>
+    </sidebar>
+
+    <sidebar>
+     <title><emphasis>QUICK LOOK</emphasis> Video conferencing with Ekiga</title>
+
+     <para>Ekiga (formerly GnomeMeeting) is a prominent
+     application for Linux video conferencing. It is both stable and
+     functional, and is very easily used on a local network; setting
+     up the service on a global network is much more complex when the
+     firewalls involved lack explicit support for the H323 and/or SIP
+     teleconferencing protocols with all their quirks.</para>
+     <indexterm><primary>video conference</primary></indexterm>
+     <indexterm><primary>H323</primary></indexterm>
+
+     <para>If only one Ekiga client is to run behind the firewall, the
+     configuration is rather straightforward, and only involves
+     forwarding a few ports to the dedicated host: TCP port 1720
+     (listening for incoming connections), TCP port 5060 (for SIP),
+     TCP ports 30000 to 30010 (for control of open connections) and
+     UDP ports 5000 to 5100 (for audio and video data transmission and
+     registration to an H323 proxy).</para>
+     <indexterm><primary>GnomeMeeting</primary></indexterm>
+     <indexterm><primary>Ekiga</primary></indexterm>
+
+     <para>When several Ekiga clients are to run behind the firewall,
+     complexity increases notably. An H323 proxy (for instance the
+     <emphasis role="pkg">gnugk</emphasis> package) must be set up,
+     and its configuration is far from simple.</para>
+     <indexterm><primary><emphasis role="pkg">gnugk</emphasis></primary></indexterm>
+    </sidebar>
+  </section>
 </chapter>
-- 
2.1.4

Reply via email to