public/infrastructure/acer30/hardware.md

375 lines
14 KiB
Markdown
Raw Permalink Normal View History

2021-11-23 15:51:04 +01:00
[TOC]
2018-02-21 12:27:42 +01:00
2017-02-21 16:49:33 +01:00
Note: Inverse chronological order
2023-04-17 21:23:05 +02:00
# 2023-4
2 x https://mikrotik.com/product/crs326_24s_2q_rm
2021-11-23 15:52:49 +01:00
# 2021-11
4 x [Micron® 5210 ION Enterprise SATA QLC SSD](https://media-www.micron.com/-/media/client/global/documents/products/product-flyer/5210_ion_ssd_product_brief.pdf?la=en&rev=d6e436d14b7c49bab23e28dcc3d823fe)
2020-10-11 12:28:40 +02:00
# 2020-10
2020-12-12 00:31:53 +01:00
trax1, trax2 and trax4 are out, hence, the previous volumes vmstore and vmstore2. trax5, trax6 trax7 and trax8 enter the cluster
2020-12-12 00:21:43 +01:00
2020-10-11 12:28:40 +02:00
- Chassis: [Intel Server Chassis H2224XXLR3](https://ark.intel.com/content/www/us/en/ark/products/93502/intel-server-chassis-h2224xxlr3.html) up to 24 hot-swap drives, and two 2130W common redundant power supplies
- 4 x [Intel Compute Module HNS2600BPS24R](https://ark.intel.com/content/www/us/en/ark/products/192627/intel-compute-module-hns2600bps24r.html)
- [Intel Server Board S2600BP](https://www.intel.com/content/dam/support/us/en/documents/server-products/s2600bp-hns2600bp-product-family-tps.pdf)
2020-10-11 12:28:40 +02:00
- CPU: 2x [Intel Xeon Silver 4215](https://ark.intel.com/content/www/us/en/ark/products/193389/intel-xeon-silver-4215-processor-11m-cache-2-50-ghz.html)
- RAM: 192 GB ECC DDR4 (12 dimms of 16 GB)
- DISK: 2 x NVMe 2.5'' 1.6 TB NVMe [Intel DC P4610 Series](https://ark.intel.com/content/www/us/en/ark/products/140103/intel-ssd-dc-p4610-series-1-6tb-2-5in-pcie-3-1-x4-3d2-tlc.html)
2020-10-11 12:28:40 +02:00
- Bootdisk: of 1 TB NVMe
2020-12-12 00:21:43 +01:00
```mermaid
graph TD
2021-05-03 11:43:22 +02:00
fxoln-sw1-- 10G ---sw1_stack
fxoln-sw2-- 10G ---sw2_stack
sw1_stack-- 1G ---trax3
sw2_stack-- 1G ---trax3
sw1_stack-- 10G ---trax5
sw2_stack-- 10G ---trax5
sw1_stack-- 10G ---trax6
sw2_stack-- 10G ---trax6
sw1_stack-- 10G ---trax7
sw2_stack-- 10G ---trax7
sw1_stack-- 10G ---trax8
sw2_stack-- 10G ---trax8
2020-12-12 00:21:43 +01:00
```
## vmNVMe
2020-12-12 00:25:29 +01:00
vmNVMe is a replica-3 gluster volume, replica 3 means that it have have 3 copies, [read more](https://gitlab.com/guifi-exo/public/-/blob/master/infrastructure/acer30/trax5678/gluster.md)
```mermaid
graph BT
2020-12-12 00:25:29 +01:00
trax5---d51[(disk 5-1 - 1.5TB)]
trax5---d52[(disk 5-2 - 1.5TB)]
d51-->zfs5[(trax5's ZFS vdev stripe)]
d52-->zfs5
zfs5-->brick51[(gluster brick 5-1)]
zfs5-->brick52[(gluster brick 5-2)]
zfs5-->brick53[(gluster brick 5-3)]
trax6---d61[(disk 6-1 - 1.5TB)]
trax6---d62[(disk 6-2 - 1.5TB)]
d61-->zfs6[(trax6's ZFS vdev stripe)]
d62-->zfs6
zfs6-->brick61[(gluster brick 6-1)]
zfs6-->brick62[(gluster brick 6-2)]
zfs6-->brick63[(gluster brick 6-3)]
trax7---d71[(disk 7-1 - 1.5TB)]
trax7---d72[(disk 7-2 - 1.5TB)]
d71-->zfs7[(trax7's ZFS vdev stripe)]
d72-->zfs7
zfs7-->brick71[(gluster brick 7-1)]
zfs7-->brick72[(gluster brick 7-2)]
zfs7-->brick73[(gluster brick 7-3)]
trax8---d81[(disk 8-1 - 1.5TB)]
trax8---d82[(disk 8-2 - 1.5TB)]
d81-->zfs8[(trax8's ZFS vdev stripe)]
d82-->zfs8
zfs8-->brick81[(gluster brick 8-1)]
zfs8-->brick82[(gluster brick 8-2)]
zfs8-->brick83[(gluster brick 8-3)]
brick51-->brickg1[(gluster group #1)]
brick61-->brickg1
brick71-->brickg1
%% thanks https://github.com/mermaid-js/mermaid/issues/487#issuecomment-401302073
style brick51 fill:#FFFF00
style brick61 fill:#FFFF00
style brick71 fill:#FFFF00
style brickg1 fill:#FFFF00
brick81-->brickg2[(gluster group #2)]
brick52-->brickg2
brick62-->brickg2
style brick81 fill:#00FFFF
style brick52 fill:#00FFFF
style brick62 fill:#00FFFF
style brickg2 fill:#00FFFF
brick72-->brickg3[(gluster group #3)]
brick82-->brickg3
brick53-->brickg3
style brick72 fill:#FF00FF
style brick82 fill:#FF00FF
style brick53 fill:#FF00FF
style brickg3 fill:#FF00FF
brick63-->brickg4[(gluster group #4)]
brick73-->brickg4
brick83-->brickg4
style brick63 fill:#00FF00
style brick73 fill:#00FF00
style brick83 fill:#00FF00
style brickg4 fill:#00FF00
brickg1-->d[(vmNVMe - 3.8 TB)]
brickg2-->d
brickg3-->d
brickg4-->d
```
2020-12-12 00:31:53 +01:00
## refactor NFS trax3 storage
this storage is intended for extended storage through NFS VM disks and/or backups
```mermaid
graph TD
trax3---d31[(disk 5-1 - 10.9TiB)]
trax3---d32[(disk 5-2 - 10.9TiB)]
d31-->zfs3[(trax3's zfs mirror - 10.9 TiB)]
d32-->zfs3
```
2020-12-12 00:25:29 +01:00
2020-04-15 20:23:11 +02:00
# 2020-4
```mermaid
graph TD
2021-05-03 11:43:22 +02:00
fxoln-sw1-- 10G ---sw1_stack
fxoln-sw2-- 10G ---sw2_stack
sw1_stack-- 1G ---trax1
sw2_stack-- 1G ---trax1
sw1_stack-- 1G ---trax2
sw2_stack-- 1G ---trax2
sw1_stack-- 1G ---TRAX3
sw2_stack-- 1G ---TRAX3
sw1_stack-- 10G ---trax4
sw2_stack-- 10G ---trax4
```
2020-04-15 20:23:11 +02:00
- Added new PVE node `trax4`:
2020-04-15 20:25:41 +02:00
- HP Proliant DL 360p V2 Gen8
2020-04-15 20:23:11 +02:00
- Processors: 2x Xeon E5-2650v2
- Memory RAM: 8 x 8 GB 1333 Mhz DDR3 RDIMM (64 GB)
- 2x SSD 240 GB SATA (**no enterprise**)
2020-04-15 20:23:11 +02:00
- 2x HDD 8 TB 7200 rpm SAS HITACHI Enterprise
- 4x 1 Gbit Intel i350
- 2x 10 Gbit SFP+ QLogic
2020-04-24 19:57:12 +02:00
- 70 cm of depth
2020-04-15 20:23:11 +02:00
`trax4` is going to be the new routing machine for eXO.
2020-02-03 17:15:20 +01:00
# 2020-2
```mermaid
graph TD
2021-05-03 11:43:22 +02:00
fxoln-sw1-- 10G ---sw1_stack
fxoln-sw2-- 10G ---sw2_stack
sw1_stack-- 1G ---trax1
sw2_stack-- 1G ---trax1
sw1_stack-- 1G ---trax2
sw2_stack-- 1G ---trax2
sw1_stack-- 1G ---TRAX3
sw2_stack-- 1G ---TRAX3
2020-02-03 17:15:20 +01:00
```
- finally we dropped mikrotik hardware [Mikrotik RB1100AHx2](https://routerboard.com/RB1100AHx2)
- now upstream switches fxoln-sw1 and fxoln-sw2 are huawei core switches connected with new transceivers
2019-04-21 13:13:03 +02:00
2020-02-03 17:15:20 +01:00
# 2019-8
2020-02-03 17:15:20 +01:00
```mermaid
graph TD
2021-05-03 11:43:22 +02:00
fxoln-sw1-- 10G ---sw1_stack
fxoln-sw2-- 10G ---sw2_stack
sw1_stack-- 1G ---trax1
sw2_stack-- 1G ---trax1
sw1_stack-- 1G ---trax2
sw2_stack-- 1G ---trax2
sw1_stack-- 1G ---TRAX3
sw2_stack-- 1G ---TRAX3
sw1_stack-- 1G ----mikrotik-hw
sw2_stack-- 1G ----mikrotik-hw
2020-02-03 17:15:20 +01:00
```
2021-01-26 14:26:43 +01:00
- switch dlink DGS-3420-28TC were replaced by rented and brand new switch [Netgear M43000-8X8F](https://www.netgear.com/support/product/M4300-8X8F.aspx) x 2
2020-02-03 17:15:20 +01:00
- trax1 and trax2 travla chassis got replaced with independent supermicro chassis, as this is a new stable situation, let's mention again all the components.
- Did photos to hardware [trax1](images/trax1_2019-8-16.jpg), [trax2](images/trax2_2019-8-16.jpg) and [trax3](images/trax3_2019-8-16.jpg)
Common components for trax1, trax2 and trax3:
- Chassis: [SC505-1U](http://www.supermicro.com/products/chassis/1U/505/SC505-203B) [manual](manuals/trax3-chassis-SC505.pdf) [web link](https://www.supermicro.com/products/chassis/1u/505/SC505-203B) Supermicro SuperChassis 505-203B 9.8" depth small form factor 1U, 200W. Gold level power supply, Optimized for Mini-ITX (6.75"x 6.75"), Motherboard, Front I/O Ports
- Motherboard: [Asus P10S-I](http://dlcdnet.asus.com/pub/ASUS/mb/socket1151/P10S-I/Manual/E13687_P10S-I_UM_V5_WEB.pdf). Socket 1151. Mini-ITX
- CPU: [Intel Xeon E3-1220V5](https://ark.intel.com/products/88172/Intel-Xeon-Processor-E3-1220-v5-8M-Cache-3_00-GHz) 4CORE BOX 3.0GHZ 8MB LGA1151
- CPU Fan: [Dynatron K199G 115X Rack 1U Activo](http://www.dynatron-corp.com/?product=k199)
2019-08-18 11:31:53 +02:00
- RAM: 32GB, 2 x 16GB 2Rx8 2G x 64-Bit PC4-2133 CL15 288-Pin DIMM 115,00 4 460,00
- Extra: Module [ASMB8-iKVM IPMI 2.0 Management Upgrade Kit with KVM](https://www.asus.com/us/Commercial-Servers-Workstations/ASMB7IKVM/) for IPMI access
- Manual: http://dlcdnet.asus.com/pub/ASUS/server/accessory/ASMB8/E10970_ASMB8-iKVM_UM_V2_WEB.pdf?_ga=1.24437948.746187932.1462889111
Common components for trax1 and trax2:
- Disks:
- [Intel Solid-State Drive DC S3610](http://www.intel.com/content/www/us/en/solid-state-drives/ssd-dc-s3610-spec.html) 200GB SATA 6Gb/s 7mm 2.5"
- Hardisk [Seagate ST2000NX0253](http://store.supermicro.com/hard-drive/2-5/2tb-hdd-2t2000-st2000nx0253.html) - 2 TB - 2.5" - SATA - 7200rpm - 128 MB Buffer
Particular components for trax3:
- Disks: 2 x [Hitachi Ultrastar He12](https://www.hgst.com/products/hard-drives/ultrastar-he12) 12TB 256MB 3.5 SATA/600 7200RPM x 2
2019-08-17 11:08:56 +02:00
# 2019-4
2019-04-21 13:13:03 +02:00
2020-02-03 17:15:20 +01:00
```mermaid
graph TD
2021-05-03 11:43:22 +02:00
fxoln-sw1-- 1G ---sw1_stack*
fxoln-sw1-- 1G ---sw2_stack*
fxoln-sw2-- 1G ---sw1_stack*
fxoln-sw2-- 1G ---sw2_stack*
sw1_stack*-- 1G ---mikrotik-hw
sw2_stack*-- 1G ---mikrotik-hw
sw1_stack*-- 1G ---trax1-trax2
sw1_stack*-- 1G ---TRAX3
sw2_stack*-- 1G ---trax1-trax2
sw2_stack*-- 1G ---TRAX3
2020-02-03 17:15:20 +01:00
```
Those particular [dlink DGS3120-48TC](https://eu.dlink.com/es/es/products/dgs-3120-series-xstack-l2-managed-stackable-gigabit-switches) x 2 were not particularly working OK. They were replaced by another switches that FXOLN left us temporary: [dlink DGS-3420-28TC](https://eu.dlink.com/es/es/products/dgs-3420-series-xstack-l2plus-managed-stackable-gigabit-switches) x 2.
2019-04-21 13:13:03 +02:00
It was also introduced a temporary Mikrotik device to help in the QinQ management
2019-04-21 13:13:03 +02:00
2019-08-17 11:08:56 +02:00
# 2018-12
2018-08-03 22:26:10 +02:00
2020-02-03 17:15:20 +01:00
```mermaid
graph TD
2021-05-03 11:43:22 +02:00
fxoln-sw1-- 1G ---sw1_stack
fxoln-sw1-- 1G ---sw2_stack
fxoln-sw2-- 1G ---sw1_stack
fxoln-sw2-- 1G ---sw2_stack
sw1_stack-- 1G ---mikrotik-hw
sw2_stack-- 1G ---mikrotik-hw
sw1_stack-- 1G ---trax1-trax2
sw1_stack-- 1G ---TRAX3
sw2_stack-- 1G ---trax1-trax2
sw2_stack-- 1G ---TRAX3
2020-02-03 17:15:20 +01:00
```
2019-01-07 18:44:23 +01:00
Same hardware, plus 2 dlink switches model [DGS3120-48TC](https://eu.dlink.com/es/es/products/dgs-3120-series-xstack-l2-managed-stackable-gigabit-switches) that FXOLN have left us.
2018-08-03 22:26:10 +02:00
2019-01-07 18:44:23 +01:00
We moved equipments to a new location rack2 (small) in positions 9-10 full (trax3 and trax1&2 respectively) and 11 half (mikrotik) connected to ports 23 and 24 of edgeswitch. Trax3 is the only one connected to STS (Static Transfer Switch). Rack measures are 47.5 cm of width and 70 cm of depth
2018-12-27 05:15:22 +01:00
2019-08-17 11:08:56 +02:00
# 2018-2
2018-02-21 12:25:23 +01:00
2020-02-03 17:15:20 +01:00
```mermaid
graph TD
fxoln-sw1-- 1G ---mikrotik-hw
fxoln-sw2-- 1G ---mikrotik-hw
fxoln-sw1-- 1G ---trax1-trax2
fxoln-sw1-- 1G ---TRAX3
fxoln-sw2-- 1G ---trax1-trax2
fxoln-sw2-- 1G ---TRAX3
2020-02-03 17:15:20 +01:00
```
2019-01-07 18:44:23 +01:00
Replace trax3 server to new equipment
2018-02-21 12:25:23 +01:00
2019-08-17 11:08:56 +02:00
## trax1 and trax2
2017-02-21 16:49:33 +01:00
2020-02-03 17:22:18 +01:00
Trax1 and Trax2 (Travla Asus Xeon - *then the name born but no longer fits this criteria*) are expected to have this way 8 redundant _good_ VMs, and up to 16. _Good_ VMs are considered to have 16 GB disk capacity and 8 GB de RAM.
- Shared chassis: Travla C147 ([manual](manuals/old-trax12-chassis-C147.pdf)), Mini-ITX for two motherboards, 2x250W. 0.5 U
2017-03-08 10:32:02 +01:00
- Misc. Disk options:
- 2.5'' HD (x2)
- 3.5'' HD (x1)
2017-02-27 16:02:07 +01:00
Each node (2):
2018-02-21 12:25:23 +01:00
- Motherboard: [Asus P10S-I](http://dlcdnet.asus.com/pub/ASUS/mb/socket1151/P10S-I/Manual/E13687_P10S-I_UM_V5_WEB.pdf). Socket 1151. Mini-ITX
- CPU: [Intel Xeon E3-1220V5](https://ark.intel.com/products/88172/Intel-Xeon-Processor-E3-1220-v5-8M-Cache-3_00-GHz) 4CORE BOX 3.0GHZ 8MB LGA1151
2018-02-21 13:57:26 +01:00
- CPU Fan: [Dynatron K199G 115X Rack 1U Activo](http://www.dynatron-corp.com/?product=k199)
2019-08-18 11:30:35 +02:00
- RAM: 32GB, 2 x 16GB 2Rx8 2G x 64-Bit PC4-2133 CL15 288-Pin DIMM 115,00 4 460,00
2018-02-21 13:57:26 +01:00
- Disks:
- [Intel Solid-State Drive DC S3610](http://www.intel.com/content/www/us/en/solid-state-drives/ssd-dc-s3610-spec.html) 200GB SATA 6Gb/s 7mm 2.5"
- Hardisk [Seagate ST2000NX0253](http://store.supermicro.com/hard-drive/2-5/2tb-hdd-2t2000-st2000nx0253.html) - 2 TB - 2.5" - SATA - 7200rpm - 128 MB Buffer
2017-02-21 16:49:33 +01:00
- Extra: Module [ASMB8-iKVM IPMI 2.0 Management Upgrade Kit with KVM](https://www.asus.com/us/Commercial-Servers-Workstations/ASMB7IKVM/) for IPMI access
2017-03-10 05:30:51 +01:00
- Manual: http://dlcdnet.asus.com/pub/ASUS/server/accessory/ASMB8/E10970_ASMB8-iKVM_UM_V2_WEB.pdf?_ga=1.24437948.746187932.1462889111
2017-02-21 16:49:33 +01:00
2019-08-17 11:08:56 +02:00
## trax3
2018-02-21 12:25:23 +01:00
2019-01-07 18:44:23 +01:00
trax 3 differs from trax1 and trax2 on processor, disks and chassis:
2018-02-21 12:25:23 +01:00
2019-08-16 21:33:09 +02:00
- Chassis: [SC505-1U](http://www.supermicro.com/products/chassis/1U/505/SC505-203B) [manual](manuals/trax3-chassis-SC505.pdf) [web link](https://www.supermicro.com/products/chassis/1u/505/SC505-203B) Supermicro SuperChassis 505-203B 9.8" depth small form factor 1U, 200W. Gold level power supply, Optimized for Mini-ITX (6.75"x 6.75"), Motherboard, Front I/O Ports
2018-02-21 12:25:23 +01:00
- Motherboard: [Asus P10S-I](http://dlcdnet.asus.com/pub/ASUS/mb/socket1151/P10S-I/Manual/E13687_P10S-I_UM_V5_WEB.pdf). Socket 1151. Mini-ITX
- CPU: [Intel Xeon E3-1220V6](https://ark.intel.com/products/88172/Intel-Xeon-Processor-E3-1220-v6-8M-Cache-3_00-GHz) 4CORE BOX 3.0GHZ 8MB LGA1151
2018-02-21 13:57:26 +01:00
- CPU Fan: [Dynatron K199G 115X Rack 1U Activo](http://www.dynatron-corp.com/?product=k199)
2019-08-18 11:31:53 +02:00
- RAM: 32GB, 2 x 16GB 2Rx8 2G x 64-Bit PC4-2133 CL15 288-Pin DIMM 115,00 4 460,00
2018-02-21 13:57:26 +01:00
- Disks: 2 x [Hitachi Ultrastar He12](https://www.hgst.com/products/hard-drives/ultrastar-he12) 12TB 256MB 3.5 SATA/600 7200RPM x 2
2018-02-21 12:25:23 +01:00
- Extra: Module [ASMB8-iKVM IPMI 2.0 Management Upgrade Kit with KVM](https://www.asus.com/us/Commercial-Servers-Workstations/ASMB7IKVM/) for IPMI access
- Manual: http://dlcdnet.asus.com/pub/ASUS/server/accessory/ASMB8/E10970_ASMB8-iKVM_UM_V2_WEB.pdf?_ga=1.24437948.746187932.1462889111
2019-08-17 11:08:56 +02:00
## router
2018-02-21 12:27:42 +01:00
[Mikrotik RB1100AHx2](https://routerboard.com/RB1100AHx2)
2019-08-17 11:08:56 +02:00
# rest of 2017
2018-02-21 12:25:23 +01:00
2020-02-03 17:15:20 +01:00
```mermaid
graph TD
fxoln-sw1-- 1G ---mikrotik-hw
fxoln-sw2-- 1G ---mikrotik-hw
fxoln-sw1-- 1G ---TRAX1-TRAX2
fxoln-sw1-- 1G ---trax3-atom-server
fxoln-sw2-- 1G ---TRAX1-TRAX2
fxoln-sw2-- 1G ---trax3-atom-server
2020-02-03 17:15:20 +01:00
```
2019-08-17 11:08:56 +02:00
## trax1 and trax2
2018-02-21 12:25:23 +01:00
2019-01-07 18:44:23 +01:00
Trax1 and Trax2 (Travla Asus Xeon) are expected to have this way 8 redundant _good_ VMs, and up to 16. _Good_ VMs are considered to have 16 GB disk capacity and 8 GB de RAM.
2018-02-21 12:25:23 +01:00
- Shared chassis: Travla C147 (check manuals directory), Mini-ITX for two motherboards, 2x250W. 0.5 U
- Misc. Disk options:
- 2.5'' HD (x2)
- 3.5'' HD (x1)
Each node (2):
- Motherboard: [Asus P10S-I](http://dlcdnet.asus.com/pub/ASUS/mb/socket1151/P10S-I/Manual/E13687_P10S-I_UM_V5_WEB.pdf). Socket 1151. Mini-ITX
- CPU: [Intel Xeon E3-1220V5](https://ark.intel.com/products/88172/Intel-Xeon-Processor-E3-1220-v5-8M-Cache-3_00-GHz) 4CORE BOX 3.0GHZ 8MB LGA1151
2019-08-18 11:31:53 +02:00
- RAM: 32GB, 2 x 16GB 2Rx8 2G x 64-Bit PC4-2133 CL15 288-Pin DIMM 115,00 4 460,00
2018-02-21 12:25:23 +01:00
- Disks: [Intel Solid-State Drive DC S3610](https://www.intel.com/content/www/us/en/products/memory-storage/solid-state-drives/data-center-ssds/dc-s3610-series.html) 200GB SATA 6Gb/s 7mm 2.5"
- Spec: http://www.intel.com/content/www/us/en/solid-state-drives/ssd-dc-s3610-spec.html
- CPU Fan: [Dynatron K199G 115X Rack 1U Activo](http://www.dynatron-corp.com/?product=k199)
- Extra: Module [ASMB8-iKVM IPMI 2.0 Management Upgrade Kit with KVM](https://www.asus.com/us/Commercial-Servers-Workstations/ASMB7IKVM/) for IPMI access
- Manual: http://dlcdnet.asus.com/pub/ASUS/server/accessory/ASMB8/E10970_ASMB8-iKVM_UM_V2_WEB.pdf?_ga=1.24437948.746187932.1462889111
2017-02-21 16:49:33 +01:00
2019-08-17 11:08:56 +02:00
## trax3
2018-02-21 12:27:42 +01:00
- CPU: [Intel Atom D525](https://ark.intel.com/products/49490)
- RAM: 4 GiB
- Motherboard: [Intel D525MW](http://ark.intel.com/products/48952/Intel-Desktop-Board-D525MW)
- Disks: HGST 465 GiB and WDC 465 GiB
2019-08-17 11:08:56 +02:00
## router
2018-02-21 12:27:42 +01:00
[Mikrotik RB1100AHx2](https://routerboard.com/RB1100AHx2)
2017-02-21 16:49:33 +01:00
2018-02-21 12:25:23 +01:00
2019-08-17 11:08:56 +02:00
# As of 2017-2-21
2018-02-21 12:25:23 +01:00
and this is probably hardware that was there since they eXO started in 2010-2011
2020-02-03 17:15:20 +01:00
```mermaid
graph TD
fxoln-sw1-- 1G ---mikrotik-hw
fxoln-sw2-- 1G ---mikrotik-hw
mikrotik-hw-- 1G ---atom-server
2020-02-03 17:15:20 +01:00
```
2019-08-17 11:08:56 +02:00
## router
2018-02-21 12:27:42 +01:00
[Mikrotik RB1100AHx2](https://routerboard.com/RB1100AHx2)
2019-08-17 11:08:56 +02:00
## server
2018-02-21 12:27:42 +01:00
- CPU: [Intel Atom D525](https://ark.intel.com/products/49490)
- RAM: 4 GiB
- Motherboard: [Intel D525MW](http://ark.intel.com/products/48952/Intel-Desktop-Board-D525MW)
- Disks: HGST 465 GiB and WDC 465 GiB