forked from CiscoDevNet/cloud-cml
-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Problem traced to systemd drop-in for the ssh.socket.
If the address string is a single number, it is read as port number to listen on via IPv6. Depending on the value of
BindIPv6Only=(see below) this might result in the service being available via both IPv6 and IPv4 (default) or just via IPv6.
/usr/lib/systemd/system/ssh.socket:
…
BindIPv6Only=ipv6-only
/usr/lib/systemd/system/ssh.socket.d/ssh.socket.conf:
[Socket]
ListenStream=
ListenStream=1122
Should read:
[Socket]
ListenStream=
ListenStream=0.0.0.0:1122
ListenStream=[::]:1122
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels