adrian
I’m setting up a project using nerves and phoenix in a Raspberry Pi 3. I’m using nerves_init_gadget and I have this configuration:
config :nerves_init_gadget,
ifname: "wlan0",
address_method: :dhcp,
mdns_domain: "nerves.local",
node_name: "test_app",
node_host: :mdns_domain,
ssh_console_port: 22
I’ve being able to deploy, and the app is accessible on the device ip, but I can’t resolve nerves.local
I can’t figure out how this works from the mdns docs.
Should I do something on the router?
my resolv.conf contains the gateway nameserver: 192.168.1.1
Thanks!
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
tmecklem
Hi Adrián!
nerves_init_gadget is most useful for projects on gadget capable hardware like the Raspberry Pi Zero. The Pi 3 can’t do gadget mode, which would give you the networking over usb that I think you may be expecting.
Can you describe a little more about your project setup? Namely, what’s your host OS and how are you networking the two devices together? If it’s over WiFi, there may be some additional things your DNS server or host OS need in order for mdns to work so it’s delpful to know more context.
adrian
Hi @tmecklem, thanks for your answer!
understood about nerves_init_gadget, I used it because it set up all the network and mdnds. Do you recommend me to use those packages instead of nerves_init_gadget?
My test setup is using wifi, but I haven’t decided yet if on production will be via wifi or ethernet. Probably a mix of them depending on my customer’s networks.
My host OS is ArchLinux, the host is connected via ethernet, and the Raspberry Pi over wifi as I mentioned.
My idea is to connect the device in my customer’s location and ask use mdnds to setup a hostname like: http://myapp for using it. I’d need to know what changes I need on the router or the hosts. For my customers I could have windows, macOS and Linux hosts.
Thanks a lot!
ConnorRigby
I use a very similar config, and i get mdns on my rpi3 via wifi, and i also run arch linux. Have you tried getting Mdns working before this? I found i had to change a few configurations and install a few packages to get mdns to work.
adrian
I didn’t know I had to install some packages in order to make it work, thanks!
I followed these instructions and it worked: Avahi - ArchWiki
I have other questions though.
http://nerves.local works on the host, but not on android phones
If I want to use GitHub - rosetta-home/mdns: basic mdns server and discovery client · GitHub (and forget about nerves_init_gadget), the docs says:
but where? I can’t find an example of how to use it.
ssh nerves.local. Is it possible to access the started mddns server thatnerves_init_gadgetstarted?Thanks!