Page 1 of 1

whitelist - don't forget localhost for app integration

Posted: Sun Mar 13, 2016 8:28 am
by ron199x
Hi all,

Just thought I'd give my 2c on an issue I've been encountering with flexget connecting to transmission.

Don't forget if you're going to use a white list with a permitted 'subnet', don't forget to add localhost:

Code: Select all

   "rpc-whitelist": "192.168.1.*,127.0.0.1",
    "rpc-whitelist-enabled": true,
Otherwise, you'll get hit with this error:

Code: Select all

016-03-13 19:11 TRACE    template      anime_op        templates: [u'torrent', u'global']
2016-03-13 19:11 INFO     transmission  anime_op        Trying to connect to transmission...
2016-03-13 19:11 CRITICAL plugin        anime_op        Error connecting to transmission: Forbidden
2016-03-13 19:11 WARNING  task          anime_op        Aborting task (plugin: transmission)
2016-03-13 19:11 DEBUG    task_queue                    task anime_op aborted: TaskAbort(reason=Error connecting to
2016-03-13 19:11 DEBUG    task_queue                    task queue shut down
2016-03-13 19:11 INFO     ipc.rpyc                      listener closed
Apologies to all who think this is common sense, this simply drove me nuts for at least an hour or so.