#Kamailio Developers Meeting, Dec 8-9, 2025, in Dusseldorf, Germany: https://www.kamailio.org/w/developers-meeting/ #opensource #sip #voip #telephony #volte #vonr #webrtc
Co-founder Kamailio SIP Server project. C dev. Open source advocate. Consultant at asipto.com
#Kamailio Developers Meeting, Dec 8-9, 2025, in Dusseldorf, Germany: https://www.kamailio.org/w/developers-meeting/ #opensource #sip #voip #telephony #volte #vonr #webrtc
This is the day! #KamailioWorld Conferece 2025 starts at 9:00am, Berlin, Germany: https://www.kamailioworld.com/k2025/ It is going to be two intense days, packed with presentations, attended by a full house! You can watch the live stream at: https://www.youtube.com/@KamailioWorld #opensource #telephony #voip #vonr #5G #webrtc
Monday starts @KamailioWorld 2025 with an amazing lineup of sessions! Huge thanks to our sponsors that made it possible again: Sipfront, Sipgate, Diabolocom, Libon, Pascom, Mango Voice, Simwood, dSIPRouter, Snom, LOD, ClueCon, APIBan and Asipto - https://www.kamailioworld.com/k2025/
Last days before #KamailioWorld Conference 2025 (May 12-13, in Berlin, Germany) - agenda packed with sessions from distinguished speakers in the #opensource #RTC space! A great opportunity to learn and connect: https://www.kamailioworld.com/k2025/ #voip #webrtc #5G #vonr
It is about one month and it starts: the next #KamailioWorld Conference (May 12-13, 2025, in Berlin), again with an amazing line up of sessions: https://www.kamailioworld.com/k2025/schedule/ #opensource #kamailio #voip #telephony #vonr #5G #webrtc
In two months starts #KamailioWorld Conference 2025 (May 12-13, 2025) in Berlin - most of the speakers are listed, schedule to be out soon: https://www.kamailioworld.com/k2025/speakers/ #opensource #voip #telephony #5G #webrtc
#Kamailio
SIP Server v6.0.1 has been released: https://kamailio.org/w/2025/03/kamailio-v6-0-1-released/ #opensource #voip #telephony #volte #vonr #webrtc
First group of speakers at
@KamailioWorld
2025 announced: https://kamailioworld.com/k2025/speakers/ #opensource #kamailio #voip #telephony #volt #vonr #5G #webrtc
In which @miconda discusses #Kamailio World on ClueCon weekly (and for some reason I am there too =) ).
I backed a new release for #sipexer, a modern and flexible SIP testing cli tool written in Go with support for SIP over UDP/TCP/TLS/WebSocket: https://github.com/miconda/sipexer/releases/tag/v1.2.0 #opensource #voip #telephony #testing
Do not miss #KamailioWorld Conference 2025! Call for presentations is in progress, but we already have a significant number of great proposals, covering #VoIP / #Telephony scalability and security, #WebRTC and #5G / #VoNR Registration is open, secure your seat:
https://www.kamailioworld.com/k2025/registration/
Summarizing @fosdem for non-geeks #opensource #brussels #belgium
The Debian Publicity Team will no longer post on X/Twitter. We took this decision since we feel X doesn't reflect Debian shared values as stated in our social contract, code of conduct and diversity statement. X evolved into a place where people we care about don't feel safe. You are very much invited to follow us on https://bits.debian.org , on https://micronews.debian.org/ , or any media as listed on https://wiki.debian.org/Teams/Publicity/otherSN #debian
A pet project done over past weeks to see easier some email headers in #Thunderbird, like Received stack (for analyzing possibility of impersonation), Archived-At (for mailing lists): https://github.com/miconda/thunderbird-show-extra-headers
On my way to Brussels for #Fosdem'25. Rather short trip, but I will be around most of its first day. See you at #RTCDevroom!
@Takuto no much testing was done for that one so far, is on my to-do list (afaik sipp has support for it, to build a simple testebed, but winter proved to be very busy so far). if you encounter any issues, just report
#Kamailio SIP Server v6.0.0 stable release is out: https://kamailio.org/w/kamailio-v6-0-0-release-notes/ #opensource #voip #telephony #5G #VoLTE #VoNR #webrtc
Small bash+gawk script to list network interfaces and associated IP addresses in a simpler format:
```
#!/bin/bash
ifconfig | gawk '
BEGIN { IFNAME = "0" }
/flags=.+mtu/ { IFNAME = $1; i = 0; }
/inet/ { IPLIST[IFNAME][i] = $2; i = i + 1; }
END {
for(k in IPLIST) {
print k
for(v in IPLIST[k]) {
print (" " IPLIST[k][v])
}
}
}
'
```
@ulexus learned about it not very long ago, I don't know how many versions back it goes, but is neat to extract values for various needs (e.g., interface stats: ip -j -s -s link show | jq .)
Get all IP addresses on the linux system in one line with ip & jq tools: ip -j a | jq -r '.[].addr_info[].local'