Hi, everybody.
I think I've used all the options available on the web to solve this problem, but I haven't been successful.
I followed the instructions:
and
At the same time there is no ipv6 on the network interfaces and it seems that it is disabled in the system:
and network interface settings:
How do I make directadmin finally available on the network? I have never experienced such problems before on Centos. Thank you in advance for the hint.
I think I've used all the options available on the web to solve this problem, but I haven't been successful.
I followed the instructions:
- https://www.directadmin.com/features.php?id=1168
- I added these entries to
/etc/sysctl.conf
and/etc/default/grub
:
Bash:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
net.ipv6.conf.eth0.disable_ipv6 = 1
net.ipv6.bindv6only=0
Bash:
# cat /etc/default/grub | grep ipv6
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash net.ifnames=0 biosdevname=0 ipv6.disable=1"
GRUB_CMDLINE_LINUX="netcfg/do_not_use_netplan=true ipv6.disable=1"
- after making the settings, I restarted the server
http://ipv4:2222
:
Bash:
# netstat -lnp | grep 2222
tcp6 0 0 :::2222 :::* LISTEN 997/directadmin
At the same time there is no ipv6 on the network interfaces and it seems that it is disabled in the system:
and network interface settings:
Bash:
# cat /etc/network/interfaces
auto eth0
iface eth0 inet static
address ipv4_address
gateway ipv4_address
netmask 255.255.255.192
auto eth0:0
iface eth0:0 inet static
address ipv4_address
gateway ipv4_address
netmask 255.255.255.192
auto lo
iface lo inet loopback
How do I make directadmin finally available on the network? I have never experienced such problems before on Centos. Thank you in advance for the hint.