Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wandersonwhcr/rpi-dns-home
My Raspberry Pi DNS Server at Home
https://github.com/wandersonwhcr/rpi-dns-home
ansible dhcp-server dhcpcd dns-server raspberry-pi udhcpd unbound
Last synced: 9 days ago
JSON representation
My Raspberry Pi DNS Server at Home
- Host: GitHub
- URL: https://github.com/wandersonwhcr/rpi-dns-home
- Owner: wandersonwhcr
- License: mit
- Created: 2021-10-10T14:11:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-30T14:33:10.000Z (about 3 years ago)
- Last Synced: 2024-03-21T02:01:11.118Z (8 months ago)
- Topics: ansible, dhcp-server, dhcpcd, dns-server, raspberry-pi, udhcpd, unbound
- Language: Shell
- Homepage:
- Size: 58.6 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rpi-dns-home
My Raspeberry Pi DNS Server at Home
## Technologies
* Ansible
* Raspberry Pi
* SSH
* udhcpd
* ISC DHCP Client
* Unbound## Install
```
RASPBERRY_ADDR=192.168.0.2
``````
ssh-keygen -t rsa -b 4096 -f server.key -C '' -N ''
ssh-copy-id -i server.key.pub pi@$RASPBERRY_ADDR
ssh -i server.key pi@$RASPBERRY_ADDR hostname
``````
cat > inventory.yaml <