View Single Post
MrTeck
Junior Member

Join Date: Jul 2005
Posts: 21
 
11-14-2005, 11:51 PM
Default

Well, finally found the solution.

pico /etc/xinetd.d/sshd
Code:
service ssh
{
        disable = no
        socket_type             = stream
        type                    = UNLISTED
        port                    = 22
        protocol                = tcp
        wait                    = no
        user                    = root
        server                  = /usr/sbin/sshd
        server_args             = -i
}
Change "port = 22" for the new port and restart. Now works fine.

Tnx for your help tres
MrTeck is offline