瀏覽代碼

Add some ProLiant notes and update unfinished Juniper notes a little

Håvard O. Nordstrand 4 年之前
父節點
當前提交
659e5c99cf
共有 5 個文件被更改,包括 64 次插入15 次删除
  1. 1 1
      config/hardware/dell-poweredge.md
  2. 23 0
      config/hardware/hp-proliant.md
  3. 14 5
      config/network/juniper-ex.md
  4. 25 9
      config/network/juniper-general.md
  5. 1 0
      index.md

+ 1 - 1
config/hardware/dell-poweredge.md

@@ -17,7 +17,7 @@ breadcrumbs:
 - R620
 - R620
 - R720
 - R720
 
 
-## Firmware Upgrades
+## Firmware Updates
 
 
 ### G11 and lower
 ### G11 and lower
 
 

+ 23 - 0
config/hardware/hp-proliant.md

@@ -0,0 +1,23 @@
+---
+title: Dell PowerEdge Series
+breadcrumbs:
+- title: Configuration
+- title: Hardware
+---
+{% include header.md %}
+
+### Using
+{:.no_toc}
+
+- DL380p Gen8
+
+## Firmware Updates
+
+**TODO**
+
+## Management
+
+- The default iLO username (typically `Administrator`) and password can be found on the service tag pull-out.
+- For added security, add a personal user and delete the default admin user.
+
+{% include footer.md %}

+ 14 - 5
config/network/juniper-ex.md

@@ -19,13 +19,13 @@ breadcrumbs:
 ### WIP
 ### WIP
 {:.no_toc}
 {:.no_toc}
 
 
-This page is super not done.
+This page is super not done. Just random notes for now.
 
 
 ## Initial Setup
 ## Initial Setup
 
 
 Enter configuration mode as necessary in the steps below with `configure` and `exit`.
 Enter configuration mode as necessary in the steps below with `configure` and `exit`.
 
 
-1. Connect to the switch using serial.
+1. Connect to the switch using serial (RS-232 w/ RJ45, baud 9600, 8 data bits, no parity, 1 stop bits, no flow contro).
 1. Login with username `root` and no password. You'll enter the shell.
 1. Login with username `root` and no password. You'll enter the shell.
 1. Enter the operation mode: `cli`
 1. Enter the operation mode: `cli`
 1. Set hostname (conf mode): `set system host-name <hostname>`
 1. Set hostname (conf mode): `set system host-name <hostname>`
@@ -38,11 +38,8 @@ Enter configuration mode as necessary in the steps below with `configure` and `e
 
 
 ## More Random Notes (TODO)
 ## More Random Notes (TODO)
 
 
-- `show lldp neighbours`
 - No "unit 0" on LACP slave interfaces.
 - No "unit 0" on LACP slave interfaces.
-- `show | compare`
 - `set virtual-chassis no-split-detection` (VC) (recommended for only 2 members) (The split and merge feature is enabled by default on EX Series and QFX Series Virtual Chassis. You can disable the split and merge feature by using the set virtual-chassis no-split-detection command.) (When disabled, both parts remain active after a split.)
 - `set virtual-chassis no-split-detection` (VC) (recommended for only 2 members) (The split and merge feature is enabled by default on EX Series and QFX Series Virtual Chassis. You can disable the split and merge feature by using the set virtual-chassis no-split-detection command.) (When disabled, both parts remain active after a split.)
-- `request system zeroize`
 - Discard route for supernet.
 - Discard route for supernet.
 - `show interfaces`, `show interfaces ae0 extensive`, `show interfaces terse`, `show interfaces terse | match ae`, `show interfaces terse ge-* | match up.*up`
 - `show interfaces`, `show interfaces ae0 extensive`, `show interfaces terse`, `show interfaces terse | match ae`, `show interfaces terse ge-* | match up.*up`
 - `show chassis hardware`, `show version`, `show system uptime`
 - `show chassis hardware`, `show version`, `show system uptime`
@@ -56,6 +53,18 @@ Enter configuration mode as necessary in the steps below with `configure` and `e
 - Static route: `set routing-options static route 10.0.0.0/24 next-hop 10.0.1.1`
 - Static route: `set routing-options static route 10.0.0.0/24 next-hop 10.0.1.1`
 - `show configuration [...] | display set`
 - `show configuration [...] | display set`
 
 
+## Hardware
+
+### Serial
+
+- RS-232 w/ RJ45 (Cisco-like).
+- Default baud 9600.
+- 8 data bits, no parity, 1 stop bits, no flow control.
+
+### Modding
+
+- [Quieter fans for Juniper EX3300 switch (Jade.WTF)](https://jade.wtf/tech-notes/quiet-ex3300/)
+
 ## Theory
 ## Theory
 
 
 ### Virtual Chassis
 ### Virtual Chassis

+ 25 - 9
config/network/juniper-general.md

@@ -18,20 +18,38 @@ breadcrumbs:
 This page is based mainly on the devices/series I own.
 This page is based mainly on the devices/series I own.
 Some content may be specific to those devices and should be moved away from this page.
 Some content may be specific to those devices and should be moved away from this page.
 
 
-## General Configuration
+## Usage
 
 
-### Simple Actions
+### General
 
 
-- Show the configuration: `show configuration [statement]`
-    - The optional statement path is space-separated.
+Commands are in oper. mode unless otherwise specified.
+
+- Open shell: `start shell` (local) or `request session member <vc-member-id>` (VC)
+- Open CLI from shell: `cli` (shell)
 - Show alarms: `show chassis alarms`
 - Show alarms: `show chassis alarms`
+- Show temperatures and fan speeds: `show chassis environment`
 - Show routing engine usage: `show chassis routing-engine`
 - Show routing engine usage: `show chassis routing-engine`
 - Shut down: `request system <halt|power-off>`
 - Shut down: `request system <halt|power-off>`
-- Open shell: `request session member <vc-member-id>`
+- Erase all configuration and data: `request system zeroize`
 - Show interfaces:
 - Show interfaces:
-    - L2/L3 overview: `show interfaces terse`
+    - Overview: `show interfaces terse`
+    - Simple overview: `show interfaces routing`
+    - Some details: `show interfaces brief`
+    - Statistics: `show interfaces statistics`
+    - All details: `show interfaces detail`
+    - Physical details: `show interfaces media`
+- Show LLDP neighbors: `show lldp neighbors`
+
+### Configuration
+
+Commands are in conf. mode unless otherwise specified.
 
 
-### Upgrading Junos Using a USB Drive
+- Show configuration: `show configuration [statement]` (oper. mode) or `show [statement]` (conf. mode)
+    - Show changes: `show | compare`
+- Enter normal configuration mode: `configure` (oper. mode)
+- Run oper. command in conf. mode: `run [command]`
+
+### Upgrade Junos Using a USB Drive
 
 
 1. Format the USB drive using FAT32.
 1. Format the USB drive using FAT32.
 1. Copy the software file to the drive.
 1. Copy the software file to the drive.
@@ -49,8 +67,6 @@ Some content may be specific to those devices and should be moved away from this
 1. (Optional) Test that it's working.
 1. (Optional) Test that it's working.
 1. Overwrite the alternate root partition: See [Copy the Active Root Partition](#copy-the-active-root-partition)
 1. Overwrite the alternate root partition: See [Copy the Active Root Partition](#copy-the-active-root-partition)
 
 
-#### The Harder Way
-
 If the method above did not work, try this instead to completely format and flash the device.
 If the method above did not work, try this instead to completely format and flash the device.
 
 
 1. Prepare the USB drive like above.
 1. Prepare the USB drive like above.

+ 1 - 0
index.md

@@ -65,6 +65,7 @@ Random collection of config notes and miscellaneous theory. Technically not a wi
 
 
 - [Dell OptiPlex](config/hardware/dell-optiplex/)
 - [Dell OptiPlex](config/hardware/dell-optiplex/)
 - [Dell PowerEdge](config/hardware/dell-poweredge/)
 - [Dell PowerEdge](config/hardware/dell-poweredge/)
+- [HP ProLiant](config/hardware/hp-proliant/)
 - [Laptops](config/hardware/laptops/)
 - [Laptops](config/hardware/laptops/)
 - [Computer Hardware Testing](config/hardware/computer-testing/)
 - [Computer Hardware Testing](config/hardware/computer-testing/)
 - [APC PDUs](config/hardware/apc-pdus/)
 - [APC PDUs](config/hardware/apc-pdus/)