- Ubuntu 20.04
- CUDA 10.2
- Docker Latest
Blog 2020/2/1
<- previous | index | next ->
This is a tutorial on how to use a Raspberry Pi to make an existing ethernet network visible to wifi clients.
(Note : ces informations ont été compilées à partir de différentes sources anglaises/françaises)
The initial goal of this project is to use the raspberry pi in place of my Wireless Range Extender and then going from 3 wireless networks (2.4ghz, 2.4ghz extended, 5ghz) at home to only one (5ghz). This way I'm reducing the exposition to radio waves for the whole familly at home.
Ok, enough drama for now, let's go technical. 😁
- The main control chip using Le Xin ESP32, Tensilica LX6 dual core processor, clocked at 240MHz, computing capacity of up to 600DMIPS, 520 SRAM, 802.11 KB chip b/g/n HT40 Wi-Fi transceiver, baseband, and LWIP protocol stack, Bluetooth (Bluetooth dual-mode integrated
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Created by fibergames.net // Loranth Moroz // v.0.5 | |
| # Required tools to run this script as is: curl (https://curl.haxx.se/) & jq (https://stedolan.github.io/jq/) | |
| # This only works for Digitalocean - 10$ credit referral link: https://m.do.co/c/fed75101475f | |
| # Edit token, domain, subdomain to fit your needs | |
| # Substitute ipinfo.io with your own ip-checker e.g. ipecho.net/plain | |
| # This is to be used with crontab -> example entry to run it every 3hours: | |
| # 0 */3 * * * sh /path/to/script/dnsupdater.sh | |
| # Don't forget to make it executable: chmod +x /path/to/script/dnsupdater.sh |
