linux修改端口22
vi /etc/ssh/sshd_config
找到#port 22将前面的#去掉,然后修改端口 port 1234重启服务就OK了service sshd restart
或/etc/init.d/ssh restart
为增强安全先增加一个普通权限的用户,并设置密码useradd test
passwd test
然后禁止ROOT远程SSH登录:vi /etc/ssh/sshd_config
把其中的PermitRootLogin yes
改为PermitRootLogin no
重启sshd服务service sshd restart
或/etc/init.d/ssh restart
远程管理用普通用户test登录,然后用 su root 切换到root用户就可以拿到最高权限