You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Option "Host: 0.0.0.0" enables listening on 0.0.0.0 on IPv4 stack only.
root@rpi:~# netstat -ltnp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:7125 0.0.0.0:* LISTEN 7070/python
Option "Host: ::" enables listening on :: on IPv6 stack only.
root@rpi:~# netstat -ltnp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp6 0 0 :::7125 :::* LISTEN 6148/python
How do I force Moonraker to listen on all interface on both IPv4 & IPv6 stacks?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Option "Host: 0.0.0.0" enables listening on 0.0.0.0 on IPv4 stack only.
root@rpi:~# netstat -ltnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:7125 0.0.0.0:* LISTEN 7070/python
Option "Host: ::" enables listening on :: on IPv6 stack only.
root@rpi:~# netstat -ltnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp6 0 0 :::7125 :::* LISTEN 6148/python
How do I force Moonraker to listen on all interface on both IPv4 & IPv6 stacks?
Beta Was this translation helpful? Give feedback.
All reactions