OK,
now it does listen on tcp4:
netstat -an | grep LISTEN
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN
tcp 0 0 77.81.xxx.xxx:80 0.0.0.0:* LISTEN
tcp 0 0 77.81.xxx.xxx:53 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:53 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:953 0.0.0.0:* LISTEN
tcp 0 0 77.81.xxx.xxx:443 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:7776 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:7777 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:7778 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:7779 0.0.0.0:* LISTEN
tcp6 0 0 :::3306 :::* LISTEN
tcp6 0 0 :::587 :::* LISTEN
tcp6 0 0 :::110 :::* LISTEN
tcp6 0 0 :::143 :::* LISTEN
tcp6 0 0 :::111 :::* LISTEN
tcp6 0 0 :::465 :::* LISTEN
tcp6 0 0 :::53 :::* LISTEN
tcp6 0 0 :::22 :::* LISTEN
tcp6 0 0 :::25 :::* LISTEN
tcp6 0 0 :::993 :::* LISTEN
tcp6 0 0 :::995 :::* LISTEN
But it still doesn't work?! Anyway, it works via server, direct connection via server, using lynx?!
Anyway after adding IP address to /opt/configs/apache/conf/globals/portnip.conf now it stops logging this errors in /var/log/maillog:
Aug 30 14:44:24 server pop3-ssl: tcpserver: fatal: unable to bind: address already used
Aug 30 14:44:25 server pop3-ssl: tcpserver: fatal: unable to bind: address already used
Aug 30 14:44:26 server pop3-ssl: tcpserver: fatal: unable to bind: address already used
Aug 30 14:44:27 server pop3-ssl: tcpserver: fatal: unable to bind: address already used
Aug 30 14:44:28 server pop3-ssl: tcpserver: fatal: unable to bind: address already used
Aug 30 14:44:29 server pop3-ssl: tcpserver: fatal: unable to bind: address already used
Aug 30 14:44:30 server pop3-ssl: tcpserver: fatal: unable to bind: address already used
Anyway,
from my home:
idove@idove-pc:~$ nc -v -w5 myserver.com 80
nc: connect to myserver.com port 80 (tcp) failed: No route to host
idove@idove-pc:~$ nc -v -w5 myserver.com 443
nc: connect to myserver.com port 443 (tcp) failed: No route to host
idove@idove-pc:~$ nc -v -w5 myserver.com 22
Connection to myserver.com 22 port [tcp/ssh] succeeded!
SSH-2.0-OpenSSH_6.6.1
From server itself:
[root@server ~]# nc -v -w5 myserver.com 80
Ncat: Version 6.40 ( http://nmap.org/ncat )
Ncat: Connected to 77.81.xxx.xxx:80.
^C
[root@server ~]# nc -v -w5 myserver.com 443
Ncat: Version 6.40 ( http://nmap.org/ncat )
Ncat: Connected to 77.81.xxx.xxx:443.
^C
[root@server ~]# nc -v -w5 myserver.com 22
Ncat: Version 6.40 ( http://nmap.org/ncat )
Ncat: Connected to 77.81.xxx.xxx:22.
SSH-2.0-OpenSSH_6.6.1
^C
[root@server ~]#
Tommorow, I will be smarter, I'm not letting go

.