3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-01 01:09:22 +01:00
PyLink/docs/faq.md
James Lu d46c494351 faq: move service bot issues under a separate heading
[skip ci]

(cherry picked from commit eb078056e1)
2018-05-08 13:37:22 -07:00

7.4 KiB
Raw Permalink Blame History

PyLink FAQ

Startup errors

You are missing dependencies - re-read https://github.com/GLolol/PyLink/blob/master/README.md#installation

I get errors like “yaml.scanner.ScannerError: while scanning for the next token, found character that cannot start any token”

You must use spaces and not tabs to indent your configuration file! (\t is the escaped code for a tab, which is not allowed in YAML)

I get errors like “ParserError: while parsing a block mapping … expected <block end>, but found <block sequence start>

This likely indicates an indentation issue. When you create a list in YAML (PyLinks config format), all entries must be indented consistently. For example, this is bad:

# This will cause an error!
someblock:
    - abcd
    - def
  - ghi

This is good:

someblock:
    - abcd
    - def
    - ghi

I keep getting YAML / syntax errors trying to set up my instance!

Take a few minutes to familiarize yourself with YAML, the markup language we use for the config file. CraftIRC, Ansible, and Wikipedia all provide excellent guides (with examples) on its basic structure.

A common misconception is that the YAML format is something specific to Python or PyLink, but this is not the case! YAML is a programming language-independent standard which happens to use indents for structures like Python does, but parsers for it exist just about everywhere.

The reason I (James) chose it for this project is essentially a restatement of its common benefits:

  • Its compact and human readable (compared to raw JSON or XML)
  • Its powerful, supporting everything from nested config blocks to multi-line strings
  • It fits well in the Python landscape, compared to a flat .ini or C-style config format
  • Its language independent, which means its not a giant pain if we decide to rewrite the project in some other language one day… 🙃

Linking / Connection issues

As a general guide, you should check the following before asking for help:

  • Is the target networks IRCd showing failed connection attempts?
    • If not:
      1. Is PyLink connecting to the right port (i.e. one the IRCd is listening on?)
      2. Is the target networks IRCd actually binding to the port youre trying to use? If there is a port conflict with another program, the IRCd may fail to bind to specific ports but still start on others which are free.
      3. Is the target port firewalled on the target machine?
      4. Is there a working connection between the source and target servers? Use ping to test this, as routing issues between providers can cause servers to become unreachable.
        • If your servers purposely block ping, youre going to have to figure this one out yourself… 😬
    • If so:
      1. Check for recvpass/sendpass/server hostname/IP mismatches - usually the IRCd will tell you if youre running into one of these, provided you have the right server notices enabled (consult your IRCd documentation for how to enable these).
      2. Make sure youre not connecting with SSL on a non-SSL port, or vice versa.

If these steps havent helped you so far, maybe youve found a bug…?

My networks keep disconnecting with SSL errors!

See https://github.com/GLolol/PyLink/issues/463 - the problem appears to be caused somewhere in Pythons SSL stack and/or OpenSSL, and not directly by our code.

Unfortunately, the only workarounds so far are to either disable SSL/TLS, or wrap a plain IRC connection in an external service (stunnel, OpenVPN, etc.)

PyLink does not support inbound connections - much like regular services such as Atheme or Anope, it only connects outwards to IRCds. (If you dont understand what this means, it means you should turn autoconnect off for PyLink)

Relay issues

No! Only the PyLink administrator needs to host a PyLink instance with the relay plugin loaded, as each instance can connect to multiple networks. Everyone else only needs to add a link block on their IRCd.

InterJanus-style links between PyLink daemons are not supported yet; see https://github.com/GLolol/PyLink/issues/99 for any progress regarding that.

PyLink provides, in no particular order: - More complete support for modern IRCds (UnrealIRCd 4.x, InspIRCd 2.0, charybdis 4, Nefarious IRCu, etc.). - A flexible, maintainable codebase extensible beyond Relay. - Proper protocol negotiation leading to fewer SQUIT/DoS possibilities: - Better support for channel modes such as +fjMOR, etc. - Proper support for nick length limits with relayed users.

My IRCd SQUITs the relay server with errors like “Bad nickname introduced”!

First, check whether the SQUIT message includes the nick that triggered the netsplit. If this nick includes any characters not allowed in regular IRC, such as the slash (“/”), or is otherwise an invalid nick (e.g. beginning with a hyphen or number), this likely indicates a bug in PyLink Relay. These problems should be reported on the issue tracker.

However, if the nick mentioned is legal on IRC, this issue is likely caused by a max nick length misconfiguration: i.e. the relay server is introducing nicks too long for the target network. This can be fixed by setting the maxnicklen option in the affected networks PyLink server: block to the same value as that networks 005 NICKLEN (that is, the NICKLEN=<num> value in /raw version).

Clientbot doesnt relay both ways!

Load the relay_clientbot plugin. https://github.com/GLolol/PyLink/blob/1.3-beta1/example-conf.yml#L465-L468

How do I turn off colors in Clientbot?

See https://github.com/GLolol/PyLink/blob/master/docs/advanced-relay-config.md#custom-clientbot-styles, especially the section “Disabling Colors/Control Codes”.

Relay is occasionally dropping users from channels!

This usually indicates a serious bug in either Relay or PyLinks protocol modules, and should be reported as an issue. When asking for help, please state which IRCds your PyLink instance is linking to: specifically, which IRCd the missing users are from and which IRCd the users are missing on. Also, be prepared to send debug logs as you reproduce the issue! - Another tip in debugging this is to run showchan on the affected channels. If PyLink shows users in showchan that arent in the actual user list, this is most likely a protocol module issue. If showchans output is correct, it is instead probably a relay issue where users arent spawning correctly.

Services issues

This indicates either a bug in PyLinks protocol module or (less commonly) a bug in your IRCd. Hint: ENDBURST is likely not being sent or received properly, which causes service bot spawning to never trigger.

Make sure youre using an officially supported IRCd before requesting help, as custom IRCd code can potentially trigger S2S bugs and is not something we can support.