Difference between revisions of "Schedules Direct URL Change"

From MythTV Official Wiki
Jump to: navigation, search
m (Add precise code change)
(0.27 commit + RPZ suggestion fixes)
Line 33: Line 33:
 
|-
 
|-
 
|0.27
 
|0.27
|{{shortgitcommit|TBA}}
+
|{{shortgitcommit|d78206e}}
|TBA
+
|October 15, 2014
 
|-
 
|-
 
|0.28-pre
 
|0.28-pre
Line 83: Line 83:
 
{{Note box|The IP address has already changed twice during beta testing.}}
 
{{Note box|The IP address has already changed twice during beta testing.}}
 
<br>
 
<br>
== The nameserver/RPZ solution ==
+
== The nameserver/Response Policy Zones (RPZ) solution ==
  
 
If the following is used, be sure to remove the ''/etc/hosts'' entry.
 
If the following is used, be sure to remove the ''/etc/hosts'' entry.
Line 100: Line 100:
 
a nameserver only for itself (the appliance model.)
 
a nameserver only for itself (the appliance model.)
  
If a local nameserver is already utilizing Response Policy Zones
+
If a local nameserver is already utilizing RPZ, then it is only
(RPZ), then it is only necessary to add the last line in the following
+
necessary to add the last line in the following box to an
box to an existing zone file.
+
existing zone file.
  
 
Otherwise, add a file named: ''/etc/bind/db.rpz.localhost''
 
Otherwise, add a file named: ''/etc/bind/db.rpz.localhost''
Line 125: Line 125:
 
the ''options{}'' statement:
 
the ''options{}'' statement:
 
<pre>
 
<pre>
    recursion true;
 
    allow-recursion {localhost;};
 
 
     response-policy {zone "rpz.localhost";};
 
     response-policy {zone "rpz.localhost";};
    allow-transfer {none;};
 
    allow-update {none;};
 
 
</pre>
 
</pre>
  
Line 137: Line 133:
 
zone "rpz.localhost" {
 
zone "rpz.localhost" {
 
     type master;  
 
     type master;  
    allow-query {localhost;}; // omit line or adjust as desired
 
    allow-update {none;};
 
 
     file "/etc/bind/db.rpz.localhost";
 
     file "/etc/bind/db.rpz.localhost";
 
};
 
};
Line 180: Line 174:
 
The mythtv-users mailing list under the thread: ''Schedules Direct DataDirect replacement service testing''.
 
The mythtv-users mailing list under the thread: ''Schedules Direct DataDirect replacement service testing''.
 
Or, it's [http://www.gossamer-threads.com/lists/mythtv/users/576759 archive]).
 
Or, it's [http://www.gossamer-threads.com/lists/mythtv/users/576759 archive]).
Please don't start new testing threads.  If you make a report on the testing thread, please mention which version of MythTV you're running (if you run mythfilldatabase by hand, it will tell you, right at the beginning of its logs).
+
Please don't start new testing threads.  If you make a report on the testing thread, please mention which version of MythTV you're running (if you run ''mythfilldatabase'' by hand, it will tell you, right at the beginning of its logs).
  
 
Discussions on the developer's [http://irc.mythtv.org/ircLog/channel/4/2014-10-08 channel].
 
Discussions on the developer's [http://irc.mythtv.org/ircLog/channel/4/2014-10-08 channel].

Revision as of 16:47, 15 October 2014

As some have heard, on November 1st, 2014, the existing SD service is changing. This article is intended to be a short discussion of options for MythTV users.

Ideally, there would be a DNS change and the IP address for the existing (hard coded) hostname would be pointed to a new IP address and no action would be required by MythTV SD users. However, the owner of that hostname (which is not SD) could 'retire' that DNS record at any time leaving MythTV SD users out of service.

Because of this, users of older versions of MythTV will need to make one of three changes in order to continue retrieving SD data:

  • Add a line to your hosts file, which overrides the IP address returned by DNS for the name "baked" into the copy of MythTV you're running or
  • Run a nameserver and use RPZ, or,
  • Modify your MythTV sources to use a different DNS name for the Schedules Direct data source.

These solutions are detailed below. Users interested in testing the new server can use any of these right now. The more testers, the less the chance of a surprise on 11/1/2014.

What must users do prior to November 1st, 2014?

0.27 and 0.28-pre users should keep their systems up to date with current fixes.


MythTV Releases
Version Commit Release Date
0.27 d78206e October 15, 2014
0.28-pre 4cb10e5 October 13, 2014


Distribution Releases
Distribution Version Release Date Comment
Mythbuntu 0.27 TBD
Mythbuntu 0.28-pre October 13, 2014


What must be done on November 1st.

If the above was followed, nothing.

Users running 0.26 and below should choose a solution from the next three sections.

The /etc/hosts file solution

Perhaps the simplest is to make the following entry in the backend's /etc/hosts file:

54.85.117.227 webservices.schedulesdirect.tmsdatadirect.com

Is the /etc/hosts entry a proper solution? No, because IP addresses can change. It's not a bad solution, but it's certainly not as good as running on 34.0.


Important.png Note: The IP address has already changed twice during beta testing.


The nameserver/Response Policy Zones (RPZ) solution

If the following is used, be sure to remove the /etc/hosts entry.

Warning.png Warning: The following is of no value without bind version 9.8.1 or greater installed, running and acting as the backend's nameserver. Verify the version before going further.

Also know that this is not intended to be a bind Configuration Reference

Distributions and personal choices will likely change the names of the files in the following examples. Adjust as required.

Finally, the following was written as if the backend is running a nameserver only for itself (the appliance model.)

If a local nameserver is already utilizing RPZ, then it is only necessary to add the last line in the following box to an existing zone file.

Otherwise, add a file named: /etc/bind/db.rpz.localhost with the following:

$TTL 1h
$ORIGIN rpz.localhost.
@ IN SOA LOCALHOST. localhost. (
                  1     ; Serial
             604800     ; Refresh
              86400     ; Retry
            2419200     ; Expire
             604800 )   ; Negative Cache TTL
;   
@ IN NS  LOCALHOST.

webservices.schedulesdirect.tmsdatadirect.com CNAME dd.schedulesdirect.org.

In the file: /etc/bind/named.conf, add the following inside the options{} statement:

    response-policy {zone "rpz.localhost";};

In the same file, add:

zone "rpz.localhost" {
    type master; 
    file "/etc/bind/db.rpz.localhost";
};


Solution for users that build from source

Locate the line to change with the following command and replace the hostname with the new one above. Be prepared to remove the change when the official commit is pushed.

git grep webservices.schedulesdirect.tmsdatadirect.com

The actual patch looks like this, and substitutes the new URL for the old one. Note the '-' and '+' markers:

--- libs/libmythtv/datadirect.cpp    2014-10-12 10:54:02.000000000 -0400
+++ libs/libmythtv/datadirect.cpp    2014-10-12 10:54:44.000000000 -0400
@@ -555,7 +555,7 @@
         "/ztvws/ztvws_login/1,1059,TMS01-1,00.html");
     DataDirectURLs urls1(
         "Schedules Direct",
-        "http://webservices.schedulesdirect.tmsdatadirect.com"
+        "http://dd.schedulesdirect.org"
         "/schedulesdirect/tvlistings/xtvdService",
         "http://schedulesdirect.org",
         "/login/index.php");

Are there any other sources of information about the change?

Yes.

The announcement from SD.

List of open issues, also from SD.

The mythtv-users mailing list under the thread: Schedules Direct DataDirect replacement service testing. Or, it's archive). Please don't start new testing threads. If you make a report on the testing thread, please mention which version of MythTV you're running (if you run mythfilldatabase by hand, it will tell you, right at the beginning of its logs).

Discussions on the developer's channel.

Cast of characters (both of them.)

Abbreviated Name URL Description
TMS-DD docs.tms.tribune.com webservices.schedulesdirect.tmsdatadirect.com Tribune hosted Datadirect Server (going away)
SD-DD dd.schedulesdirect.org SD hosted DataDirect Server