summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKodApa85 <parsons151185@gmail.com>2018-01-18 15:33:07 +0000
committerNeil Lathwood <neil@lathwood.co.uk>2018-01-18 15:33:07 +0000
commit6f46eeb2b5000d3f07377655d0bcfc7c2ef36cb3 (patch)
tree2836a95c52d7cc9afb9eadd930789b295e4ceb95 /docs
parent4d8561aa0923b26bb1355923753ec8affee7388c (diff)
docs: Added documentation for setting up JunOS with Oxidized (#1155)
Diffstat (limited to 'docs')
-rw-r--r--docs/Model-Notes/JunOS.md38
-rw-r--r--docs/Model-Notes/README.md1
2 files changed, 39 insertions, 0 deletions
diff --git a/docs/Model-Notes/JunOS.md b/docs/Model-Notes/JunOS.md
new file mode 100644
index 0000000..ed8dbca
--- /dev/null
+++ b/docs/Model-Notes/JunOS.md
@@ -0,0 +1,38 @@
+JunOS Configuration
+========================
+
+Create login class cfg-view
+
+```
+set system login class cfg-view permissions view-configuration
+set system login class cfg-view allow-commands "(show)|(set cli screen-length)|(set cli screen-width)"
+set system login class cfg-view deny-commands "(clear)|(file)|(file show)|(help)|(load)|(monitor)|(op)|(request)|(save)|(set)|(start)|(test)"
+set system login class cfg-view deny-configuration all
+```
+
+Create a user with cfg-view class
+
+```
+set system login user oxidized class cfg-view
+set system login user oxidized authentication plain-text-password "verysecret"
+```
+
+The commands Oxidized executes are:
+
+1. set cli screen-length 0
+2. set cli screen-width 0
+3. show configuration
+4. show version
+5. show chassis hardware
+6. show system license
+7. show system license keys
+ex22|ex33|ex4|ex8|qfx only
+8. show virtual-chassis
+MX960 only
+9. show chassis fabric reachability
+
+
+Oxidized can now retrieve your configuration!
+
+
+Back to [Model-Notes](README.md)
diff --git a/docs/Model-Notes/README.md b/docs/Model-Notes/README.md
index 15ab445..d4b917c 100644
--- a/docs/Model-Notes/README.md
+++ b/docs/Model-Notes/README.md
@@ -12,6 +12,7 @@ Use the table below for more information on the Vendor/Model caveats.
Vendor | Model |Updated
----------------|-----------------|----------------
Huawei|[VRP](VRP-Huawei.md)|17 Nov 2017
+Juniper|[MX/QFX/EX/SRX/J Series](JunOS.md)|18 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.