Skip to content

Instantly share code, notes, and snippets.

View jaedle's full-sized avatar

Dennis Wielepsky jaedle

  • Germany
  • 00:21 (UTC +01:00)
View GitHub Profile
@jaedle
jaedle / ftth_openwrt.md
Created July 29, 2023 13:22 — forked from madduci/ftth_openwrt.md
Deutsche Telekom FTTH Access with OpenWRT

Configuring Deutsche Telekom FTTH Access with OpenWRT

After looking for alternatves to the suggested Router from Telekom (AVM FritzBox and HUawei Speedport), I've discovered the possibility of configuring my existing OpenWRT Router to act as gateway to the Telekom FTTH (Fiber To The Home) Magenta Zuhause package.

TL;DR

The WAN interface must be configured as follows (see your Telekom letter):

  • Protocol: PPPoE
  • PAP/CHAP username:
{
"plugins": [
"@jaedle-kata/kata-ruleset"
],
"env": {
"browser": true,
"es2021": true
},
"parserOptions": {
"ecmaVersion": "latest"
@jaedle
jaedle / README.md
Created December 15, 2020 11:59 — forked from crypticmind/README.md
Setup lambda + API Gateway using localstack
@jaedle
jaedle / .credentials.rc
Last active January 16, 2020 03:57
use external variables in bash
COMPUTER_NAME="my-favorite-computer"
SERVICE_PASSWORD="my-secret-password"
@jaedle
jaedle / .credentials.rc
Created December 29, 2019 17:59
pihole-docker
export WEBPASSWORD=changeme
@jaedle
jaedle / start-homebridge.sh
Last active December 29, 2019 16:18
start homebridge docker container
#!/usr/bin/env bash
SCRIPT="$(readlink -f "$0")"
SERVICE_PATH="$(dirname "$SCRIPT")"
docker container run \
--name homebridge \
--restart always \
--mount type=bind,source="$SERVICE_PATH/config",target=/homebridge/config \
-d \
@jaedle
jaedle / Setup
Last active May 1, 2019 20:25
Homeaudio setup
Homeaudio setup draft
Rooms:
in ASC order im importance: (x for proof of concept)
x Kitchen
- Living room
x Upper level
- Bath
- Sleeping room
@jaedle
jaedle / docker-compose.yml
Created November 17, 2018 13:17 — forked from garycrawford/docker-compose.yml
MongoDB Replica Set docker-compose.yml
primary:
image: mongo:3.0
volumes:
- ./p:/data
ports:
- "27017:27017"
# Our current version of docker-compose doesn't allow extra_hosts which would be the best way
# to add curcular dependency container links in this case. We cant upgrade docker-compose
# without upgrading docker to 1.7, and we can't do that without upgrading the kernel on our
# CentOS VM's. As such we are using the hostname hask below to allow primary and secondary
@jaedle
jaedle / homebridge
Created October 28, 2018 13:31 — forked from johannrichard/homebridge
Systemd Service for homebridge (http://github.com/nfarina/homebridge)
# Defaults / Configuration options for homebridge
# The following settings tells homebridge where to find the config.json file and where to persist the data (i.e. pairing and others)
HOMEBRIDGE_OPTS=-U /var/lib/homebridge
# If you uncomment the following line, homebridge will log more
# You can display this via systemd's journalctl: journalctl -f -u homebridge
# DEBUG=*