From 7798cb2beebf8ad48b508f15511e012bbe0f0a9d Mon Sep 17 00:00:00 2001 From: Dale Higgs Date: Fri, 8 Jul 2016 10:58:18 -0500 Subject: [PATCH] Fix AsusWRT docs to prevent SSH key confusion (#623) pxssh is expecting the path to a private key, not a public key --- source/_components/device_tracker.asuswrt.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/_components/device_tracker.asuswrt.markdown b/source/_components/device_tracker.asuswrt.markdown index b663140107..dff7ff5798 100644 --- a/source/_components/device_tracker.asuswrt.markdown +++ b/source/_components/device_tracker.asuswrt.markdown @@ -34,8 +34,8 @@ Configuration variables: - **protocol** (*Optional*): The protocol (`ssh` or `telnet`) to use. Defaults to `ssh`. - **mode** (*Optional*): The operating mode of the router (`router` or `ap`). Defaults to `router`. - **username** (*Required*: The username of an user with administrative privileges, usually *admin*. -- **password** (*Optional*): The password for your given admin account (use this if no public key is given). -- **pub_key** (*Optional*): The public key for your given admin account (instead of password). +- **password** (*Optional*): The password for your given admin account (use this if no SSH key is given). +- **ssh_key** (*Optional*): The path to your SSH private key file associated with your given admin account (instead of password).

You need to enable telnet on your router if you choose to use `protocol: telnet`.