Skip to content

HOW to enable ipv6 port 19999? #16399

Closed Answered by ilyam8
SoraKasvgano asked this question in Q&A
Discussion options

You must be logged in to vote

ND listens on ipv4 and ipv6 by default (bind to = *).

$ cd
pve-deb-work ~ $ sudo ss -ntlp | grep netdata
LISTEN 0      4096         0.0.0.0:19999      0.0.0.0:*    users:(("netdata",pid=1100571,fd=9))
LISTEN 0      4096       127.0.0.1:8125       0.0.0.0:*    users:(("netdata",pid=1100571,fd=134))
LISTEN 0      4096            [::]:19999         [::]:*    users:(("netdata",pid=1100571,fd=10))
LISTEN 0      4096           [::1]:8125          [::]:*    users:(("netdata",pid=1100571,fd=131))

bind to socket IP ={::}

Because it is an invalid format. Literal IPv6 addresses are enclosed in square brackets. For instance, if you want ND to listen on localhost only

bind to = 127.0.0.1 [::1]

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@SoraKasvgano
Comment options

Answer selected by SoraKasvgano
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants