On Friday, 1 May 2020 8:31:47 AM PDT Thomas Schäfer wrote:
> is there an switch, option, environment variable, configurable key word to
> enable IP6 for the slurmd and slurmctld daemons?
I don't believe those Slurm daemons support IPv6, my understanding is the only
one that does is slurmrestd, s
Am 01.05.20 um 18:49 schrieb Jeffrey T Frey:
Use netstat to list listening ports on the box (netstat -ln) and see
if it shows up as tcp6 or tcp. On our (older) 17.11.8 server:
$ netstat -ln | grep :6817
tcp 0 0 0.0.0.0:6817 0.0.0.0:* LISTEN
$ nc -6 ::
Am 01.05.20 um 18:44 schrieb William Brown:
For some services that display of 0.0.0.0 does include IPv6, although
it is counter-intuitive. Try to see if you can connect to it using
the IPv6 address.
0.0.0.0 is never listen to IPv6.
[::] or * includes often IPv4, depending of the ipv6-only
Use netstat to list listening ports on the box (netstat -ln) and see if it
shows up as tcp6 or tcp. On our (older) 17.11.8 server:
$ netstat -ln | grep :6817
tcp0 0 0.0.0.0:68170.0.0.0:* LISTEN
$ nc -6 :: 6817
Ncat: Connection refused.
$ nc -4 localhos
For some services that display of 0.0.0.0 does include IPv6, although it is
counter-intuitive. Try to see if you can connect to it using the IPv6
address.
William
On Fri, 1 May 2020 at 16:35, Thomas Schäfer
wrote:
> Hi,
>
> is there an switch, option, environment variable, configurable key wo