darkerseid
I am trying to get low level socket programming in elixir
{:ok, socket} = :socket.open(:inet, :raw, :icmp)
:socket.bind(socket, %{:family => :inet, :port => 0})
:socket.ioctl(socket, :gifconf)
Gives me
{:ok, [%{addr: %{addr: {127, 0, 0, 1}, family: :inet, port: 0}, name: 'lo'}]}
But ip link gives me
#ip link
#1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
# link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
#2: veth0a@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default #qlen 1000
# link/ether 5e:c8:38:a3:e6:50 brd ff:ff:ff:ff:ff:ff link-netns netns_br0
How do you get these two interfaces?
For testing, you can create execute this script, A bunch of helper functions to create Linux bridges, network namespaces, and interconnect everything using veth pairs. · GitHub
Trending in Questions
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
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
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
moogle19
With which user to you run this?
When you are on Linux you normally need to be
rootto access raw ICMP sockets.darkerseid
I created a new linux namespace with the help of attached gist.
moogle19
If I understand
nsentercorrectly, it just spawns a new shell inside the network namespace, but you probably still needrootpriviliges or theCAP_NET_RAWcapability to access raw sockets (but I never worked with these namespaces).hauleth
Not really, you can run ICMP socket as a regular user if your user ID is within
sysctl net.ipv4.ping_group_range. However that will require you to use datagram socket instead of raw socket:It also has slightly reduced API, as for example on Linux you cannot specify
idandseqfields for ICMP packet, as these will be always set for you.There is library that I have created in the past that provide slightly higher API for ICMP sockets (still quite limited):
It can be used in form of (to match the top message):
And about the question of “how to get list of interfaces in the system”. Instead of playing with
socketdirectly (especially as you are doing network namespacing, so obviously your view on interfaces will be limited) you should use:That will return data like that:
That describe all interfaces available in your system and do not require any special privileges like being able to create ICMP raw socket.
darkerseid
To add some context, I was trying to replicate Networking Lab: Ethernet Broadcast Domains in elixir, the code in there uses python
hauleth
But in this case you should not use ICMP protocol, but “just raw socket”, aka:
So this is pretty much different from your original question where you ask for the fetching list of the interfaces from raw ICMP socket.
Will will return you only the configuration for the interface the socket is listening right now, not all that are available in the system.
Also I see the problem with your code - you define address map like
%{:family => :inet, :port => 0}which is incorrect (weird thatsocketdo not scream about it, or maybe it does, but you do not check the value returned by:socket.bind/2). It should be%{:family => :inet, :port => 0, :addr => address}as:addrfield is mandatory according to the specs.BradS2S
I’m learning a ton about low level socket work from @whatyouhide’s protohacker YouTube videos.
Definitely worth a watch