Przeglądaj źródła

Add some ProLiant notes and update unfinished Juniper notes a little

Håvard O. Nordstrand 4 lat temu
rodzic
commit
659e5c99cf

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

@@ -17,7 +17,7 @@ breadcrumbs:
 - R620
 - R720
 
-## Firmware Upgrades
+## Firmware Updates
 
 ### 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
 {:.no_toc}
 
-This page is super not done.
+This page is super not done. Just random notes for now.
 
 ## Initial Setup
 
 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. Enter the operation mode: `cli`
 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)
 
-- `show lldp neighbours`
 - 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.)
-- `request system zeroize`
 - 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 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`
 - `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
 
 ### 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.
 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 temperatures and fan speeds: `show chassis environment`
 - Show routing engine usage: `show chassis routing-engine`
 - 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:
-    - 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. 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. 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.
 
 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 PowerEdge](config/hardware/dell-poweredge/)
+- [HP ProLiant](config/hardware/hp-proliant/)
 - [Laptops](config/hardware/laptops/)
 - [Computer Hardware Testing](config/hardware/computer-testing/)
 - [APC PDUs](config/hardware/apc-pdus/)