geofeed update
This commit is contained in:
parent
19e4f37a14
commit
4a37c37d75
18
.vscode/tasks.json
vendored
Normal file
18
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Launch development webserver",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "zola",
|
||||||
|
"args": [
|
||||||
|
"serve",
|
||||||
|
"--drafts",
|
||||||
|
"--open"
|
||||||
|
],
|
||||||
|
"problemMatcher": []
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -87,6 +87,4 @@ At this point, just wait until Vultr gets your BGP session set up.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
### Action communities
|
|
||||||
|
|
||||||
## Verify everything is working
|
## Verify everything is working
|
||||||
|
5
content/blog/2022-10-18-wireguard-bgp.md
Normal file
5
content/blog/2022-10-18-wireguard-bgp.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
title: BGP peering over a WireGuard tunnel
|
||||||
|
description: Some notes on getting Bird and WireGuard to play nice
|
||||||
|
draft: true
|
||||||
|
---
|
20
content/blog/2022-10-30-bird-udmpro.md
Normal file
20
content/blog/2022-10-30-bird-udmpro.md
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
---
|
||||||
|
layout: page
|
||||||
|
title: "Announcing your AMPRNet prefix to Vultr with BGP"
|
||||||
|
description: "That how-to guide everyone keeps asking me to make"
|
||||||
|
date: 2022-10-17
|
||||||
|
tags: amprnet network
|
||||||
|
draft: true
|
||||||
|
extra:
|
||||||
|
uses_katex: false
|
||||||
|
auto_center_images: true
|
||||||
|
excerpt: A tutorial for AMPRNet operators who are BGP announcing their first prefix to Vultr
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
```sh
|
||||||
|
unifi-os shell
|
||||||
|
apt install build-essential libfl-dev libbison-dev libreadline-dev libncurses5-dev
|
||||||
|
bash ./configure --host aarch64 --with-sysconfig=linux
|
||||||
|
make
|
||||||
|
```
|
@ -4,9 +4,9 @@ extra:
|
|||||||
uses_graphviz: true
|
uses_graphviz: true
|
||||||
---
|
---
|
||||||
|
|
||||||
This is a planning document that keeps track of my IP address space. This is by no means complete, just a reference for a specific part of my network.
|
<!-- This is a planning document that keeps track of my IP address space. This is by no means complete, just a reference for a specific part of my network. -->
|
||||||
|
|
||||||
- `172.23.44.128/25`
|
<!-- - `172.23.44.128/25`
|
||||||
-
|
-
|
||||||
- **`44.31.62.0/24`**: Aggregated at edge
|
- **`44.31.62.0/24`**: Aggregated at edge
|
||||||
- `44.31.62.0/25`
|
- `44.31.62.0/25`
|
||||||
@ -25,4 +25,33 @@ This is a planning document that keeps track of my IP address space. This is by
|
|||||||
- `2a12:dd47:9002::/48`: Point-to-Point linking prefix
|
- `2a12:dd47:9002::/48`: Point-to-Point linking prefix
|
||||||
- **`2a12:dd47:9002::/126`**: Links `border.lab` and `bgp-vm.lab`
|
- **`2a12:dd47:9002::/126`**: Links `border.lab` and `bgp-vm.lab`
|
||||||
- **`2a12:dd47:9003::/48`**: Website infrastructure
|
- **`2a12:dd47:9003::/48`**: Website infrastructure
|
||||||
- **`2a12:dd47:9004::/48`**: Homelab
|
- **`2a12:dd47:9004::/48`**: Homelab -->
|
||||||
|
|
||||||
|
## Needs
|
||||||
|
|
||||||
|
- VPN
|
||||||
|
- Home IPv6
|
||||||
|
|
||||||
|
## Sites
|
||||||
|
|
||||||
|
- Home
|
||||||
|
- yyz-edge
|
||||||
|
|
||||||
|
## Plan
|
||||||
|
|
||||||
|
- `44.31.62.0/24`
|
||||||
|
- `44.31.62.0/25`
|
||||||
|
- `44.31.62.0/26`
|
||||||
|
- `44.31.62.0/27`
|
||||||
|
- `44.31.62.32/27` VPN Space
|
||||||
|
- `44.31.62.64/26` Homelab prefix
|
||||||
|
- `44.31.62.128/25` Temp: Home
|
||||||
|
- `44.31.119.0/24`
|
||||||
|
- `xxxx:xxxx:xx00::/40`
|
||||||
|
- `xxxx:xxxx:xx01::/48` Site: Home
|
||||||
|
- `xxxx:xxxx:xx01::/52` Home network clients
|
||||||
|
- *This should be further broken down by vlan*
|
||||||
|
- *All clients should be eui-64 if possible*
|
||||||
|
- *RDNS: `abcd-abff-fecd-abcd.home.ewpratten.com`*
|
||||||
|
- `xxxx:xxxx:xx01:1000::/52` Homelab prefix
|
||||||
|
- `xxxx:xxxx:xx02::/48` VPN space
|
||||||
|
BIN
static/downloads/bird-aarch64/bird-aarch64-2.0.10.tar.xz
Normal file
BIN
static/downloads/bird-aarch64/bird-aarch64-2.0.10.tar.xz
Normal file
Binary file not shown.
@ -1,3 +1,7 @@
|
|||||||
|
# Aggregate
|
||||||
|
2602:faf5::/40,CA,CA-ON,Toronto,M5A2Y5
|
||||||
44.31.62.0/24,CA,CA-ON,Oakville,L6H0M3
|
44.31.62.0/24,CA,CA-ON,Oakville,L6H0M3
|
||||||
44.31.119.0/24,CA,CA-ON,Toronto,M5A2Y5
|
44.31.119.0/24,CA,CA-ON,Toronto,M5A2Y5
|
||||||
2a12:dd47:9000::/36,CA,CA-ON,Oakville,L6H0M3
|
|
||||||
|
## Machines
|
||||||
|
2602:faf5:1:0:a8a1:59ff:fe61:3be8/128,CA,CA-ON,Oakville,L6H0M3
|
|
Loading…
x
Reference in New Issue
Block a user