Skip to content

Socket (TCP/UDP/Unix)

Install

See the Install guide for the full setup, including Windows PowerShell.

curl -fsSL https://install.skippr.io/install.sh | shClick to copy

Listens on a TCP, UDP, or Unix socket for incoming data.

Configuration

yaml
source:
  kind: socket
  mode: tcp
  address: "0.0.0.0:9000"
FieldDefaultDescription
mode(required)tcp, udp, or unix
address(required)Bind address (host:port or socket path)
framingnewlineFrame delimiter (newline or bytes)

Namespace: socket.{mode}.{address}

CLI

bash
skippr connect source socket \
  --mode tcp \
  --address 0.0.0.0:9000 \
  --framing newline
FlagDescription
--modetcp, udp, or unix
--addressBind address (host:port or socket path)
--framingFrame delimiter such as newline or bytes

Authentication

No connector-specific authentication is required.

Permissions or Network Requirements

This connector opens a local listener. Make sure the configured address or Unix socket path is available, and use network controls outside Skippr if the listener should not be publicly reachable.

Troubleshooting

SymptomFix
address already in useChoose a different port or stop the process currently bound to that address.
no data arrivingCheck the sender target address, protocol mode, and any host firewall rules.

Next steps

Install

See the Install guide for the full setup, including Windows PowerShell.

curl -fsSL https://install.skippr.io/install.sh | shClick to copy