I was wondering if anyone has had a chance to create a wireless network hub using the new Raspberry Pi 3?
Seems to me the simplest would be to just set it up as a gateway, and then you can put a virtual node trap in place as a firewall.
Let me know.
I was wondering if anyone has had a chance to create a wireless network hub using the new Raspberry Pi 3?
Seems to me the simplest would be to just set it up as a gateway, and then you can put a virtual node trap in place as a firewall.
Let me know.
Guess what jack.chaney56, I will grant your wish. See https://www.pi-point.co.uk/documentation/ for software to create Raspberry Pi 3 into a free acces point on your network. Even has a honey trap! 
Clem
Hi Clem,
a problem (mentioned on the same site) is that the last Raspbian images (e.g. the PI3 full supporting the Bluettooth too with a decent GUI tool) does not manages the network connections in the same way so the project of the suggested link didn't work. Need to wait a while they release an updated image and documentation... Sic.
Enrico
Hi Clem,
a problem (mentioned on the same site) is that the last Raspbian images (e.g. the PI3 full supporting the Bluettooth too with a decent GUI tool) does not manages the network connections in the same way so the project of the suggested link didn't work. Need to wait a while they release an updated image and documentation... Sic.
Enrico
jack.chaney56 Enrico has a point. The updates have to move to new file as in Configuring a Static IP for a Raspberry Pi running Raspbian – TechSneeze.com for Jessie, follow this:
sudo nano /etc/dhcpcd.confAt the bottom of the file you will need to add settings such as:
interface eth0
static ip_address=192.168.1.31/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1 8.8.8.8 4.2.2.1
static domain_search=example.com
static domain_name=example.com
Clem