Fedora17 开启ssh服务
Fedora 17 已经安装好openssh server了 不用再装
不过默认无开启
首先su root
1.开启ssh服务
# systemctl start sshd.service
2.随系统一起启动服务
# systemctl enable sshd.service
3.开启防火墙22端口
# iptables -I INPUT -p tcp --dport 22 -j ACCEPT
测过ok