Medium syndication metadata

This commit is contained in:
Brandon Rozek 2023-03-10 12:41:04 -05:00
parent c5b2488589
commit 9bf7cfb744
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
14 changed files with 82 additions and 64 deletions

View file

@ -1,9 +1,11 @@
---
title: "DHCP for Raspberry Pi"
date: 2021-02-15T22:46:21-05:00
date: 2021-02-16 03:46:21
draft: false
tags: ["Networking"]
medium_enabled: true
medium_post_id: 8c13511f5b45
tags:
- Networking
title: DHCP for Raspberry Pi
---
Recently I ran across the use case where I needed a Raspberry Pi to be connected to the Internet via a WiFI connection, while also providing DHCP leases through an Ethernet connection. I couldn't find a great way to achieve this with `dhcpcd` so instead I grabbed a tool that I'm more familiar with `dnsmasq`.
@ -55,5 +57,4 @@ dhcp-range=192.168.0.50,192.168.0.150,12h
# Enable DHCPv6. Note that the prefix-length does not need to be specified
# and defaults to 64 if missing/
#dhcp-range=1234::2, 1234::500, 64, 12h
```
```