Updated bitly link in validate and updated docs to use pastebin service (#6179)

* replaced bitly link

* updated docs for adding new OS
This commit is contained in:
Neil Lathwood
2017-03-13 02:21:26 +00:00
committed by Tony Murray
parent 014682b60b
commit dad2a5e9cc
2 changed files with 10 additions and 6 deletions

View File

@@ -257,17 +257,21 @@ Please see [Supporting a new OS](../Developing/Support-New-OS.md)
#### <a name="faq20"> What information do you need to add a new OS?</a>
Under the device, click the gear and select Capture.
Please provide the output of Discovery, Poller, and Snmpwalk as separate non-expiring pastebin.com links.
Please provide the output of Discovery, Poller, and Snmpwalk as separate non-expiring https://p.libren.ms/ links.
You can also use the command line to obtain the information. Especially, if snmpwalk results in a large amount of data.
Replace the relevant information in these commands such as HOSTNAME and COMMUNITY. Use `snmpwalk` instead of `snmpbulkwalk` for v1 devices.
> These commands will automatically upload the data to LibreNMS servers.
```bash
./discovery.php -h HOSTNAME -d
./poller.php -h HOSTNAME -r -f -d
snmpbulkwalk -OUneb -v2c -c COMMUNITY HOSTNAME .
./discovery.php -h HOSTNAME -d | ./pbin.sh
./poller.php -h HOSTNAME -r -f -d | ./pbin.sh
snmpbulkwalk -OUneb -v2c -c COMMUNITY HOSTNAME . | ./pbin.sh
```
You can use the links provided by these commands within the issue.
If possible please also provide what the OS name should be if it doesn't exist already.
#### <a name="faq9"> What can I do to help?</a>