Linux之网络服务器学习

#远程登录服务器
1.Telnet远程登录服务器
(1)在服务器安装telnet,包为inetutils-telnetd,安装之前安装inetd或者xinetd服务
(2)客户端访问:命令行:telnet ip 23
因为telnet是不安全的远程登录工具,所以需要注意安全
2.SSH访问服务器
SSH(Secure SHell)加密的远程登录,此种方式为windows访问linux,windows可以通过putty或者SSHSecureShellClient登录
3.VNC(virtual network computing)包括VNC server 和VNC viewer
服务端安装VNC servcer,客户端安装VNC viewer(有图形界面)
4.OpenSSH服务器,使用SSH Shell登录


#ftp服务器配置
(1)VSTRPD软件,服务端安装,客户端访问:ftp ip
(2)proftpd ftp ip


#NFS服务器
网络文件服务,在嵌入式开发很流行


#samba服务配置

原文地址:https://www.cnblogs.com/benshan/p/2503901.html