diff options
Diffstat (limited to 'docs/Model-Notes')
-rw-r--r-- | docs/Model-Notes/README.md | 1 | ||||
-rw-r--r-- | docs/Model-Notes/XGS4600-Zyxel.md | 24 |
2 files changed, 25 insertions, 0 deletions
diff --git a/docs/Model-Notes/README.md b/docs/Model-Notes/README.md index d4b917c..f51ed80 100644 --- a/docs/Model-Notes/README.md +++ b/docs/Model-Notes/README.md @@ -13,6 +13,7 @@ Vendor | Model |Updated ----------------|-----------------|---------------- Huawei|[VRP](VRP-Huawei.md)|17 Nov 2017 Juniper|[MX/QFX/EX/SRX/J Series](JunOS.md)|18 Jan 2018 +Xyzel|[XGS4600 Series](XGS4600-Zyxel.md)|23 Jan 2018 If you discover additional caveats or problems please make sure to consult the [GitHub issues for oxidized](https://github.com/ytti/oxidized/issues) known issues. diff --git a/docs/Model-Notes/XGS4600-Zyxel.md b/docs/Model-Notes/XGS4600-Zyxel.md new file mode 100644 index 0000000..0ff2e7d --- /dev/null +++ b/docs/Model-Notes/XGS4600-Zyxel.md @@ -0,0 +1,24 @@ +ZynOS Configuration +======================== + +## FTP +FTP access is only possible as admin, other users can login but cannot pull the files. +For the XGS4600 series the config file is _config_ and not _config-0_ + +The following line in _oxidized/lib/oxidized/model/zynos.rb_ with need changing +``` + cmd 'config-0' + +``` + +The inclusion of an extra ftp option is also require. Within _input_ add the following +``` +input: + ftp: + passive: false +``` + +Oxidized can now retrieve your configuration! + + +Back to [Model-Notes](README.md) |