-
-
Notifications
You must be signed in to change notification settings - Fork 479
Description
Description
I’m trying to use SIP (UDP port 5060) inside a container running in Colima on macOS.
Despite setting LIMA_SSH_PORT_FORWARDER=false
to enable the gRPC port forwarder (which should support UDP), packets on port 5060 are never received inside the container.
This makes SIP registration and traffic impossible.
Confirmed with tcpdump: the packets arrive on the host interface, but do not reach the container.
Version
colima version 0.8.1
git commit: 96598cc
limactl version 1.0.7
Operating System
- macOS Intel <= 13 (Ventura)
- macOS Intel >= 14 (Sonoma)
- Apple Silicon <= 13 (Ventura)
- Apple Silicon >= 14 (Sonoma)
- Linux
Output of colima status
{
"display_name": "colima",
"driver": "macOS Virtualization.Framework",
"arch": "aarch64",
"runtime": "docker",
"mount_type": "sshfs",
"ip_address": "",
"docker_socket": "unix:///Users/yvanitou/.colima/default/docker.sock",
"kubernetes": false,
"cpu": 2,
"memory": 2147483648,
"disk": 107374182400
}
Reproduction Steps
- Delete existing Colima VM:
colima delete
- Start Colima with gRPC port forwarder:
LIMA_SSH_PORT_FORWARDER=false colima start
- Run a SIP server exposing UDP port 5060 (e.g., Asterisk or Kamailio)
- Send a SIP REGISTER packet from another device to host_ip:5060
- Use tcpdump to observe traffic in container → no packet received
Expected behaviour
UDP packets on port 5060 should be forwarded correctly to the container when using the gRPC port forwarder (LIMA_SSH_PORT_FORWARDER=false), enabling SIP registration and communication.
Additional context
Confirmed on host with:
$ sudo tcpdump -i any -n udp port 5060
19:12:38.792776 IP 10.0.0.163.26767 > 10.0.0.244.5060: SIP: REGISTER sip:10.0.0.244 SIP/2.0
19:12:42.740312 IP 10.0.0.163.26767 > 10.0.0.244.5060: SIP: REGISTER sip:10.0.0.244 SIP/2.0
→ Packets are visible on the host, but not in the container.
Container started with:
docker run -d --network=host my-sip-image
Also tested with --network=bridge
, no difference.
macOS 15.3.2 (Sequoia), Apple Silicon (arm64).