linux 防火墙 psftp 上传下载相关命令
程序员文章站
2022-07-12 16:48:17
...
1) 永久性生效,重启后不会复原
开启: chkconfig iptables on
关闭: chkconfig iptables off
2) 即时生效,重启后复原
开启: service iptables start
关闭: service iptables stop
需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作。
在开启了防火墙时,做如下设置,开启相关端口,
修改/etc/sysconfig/iptables 文件,添加以下内容:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
修改防火墙可以访问的端口:
1 iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
2 service iptables save
3 service iptables restart
4 putty psftp上传文件
1) 使用ppk文件
从cmd进入psftp所在目录,使用密匙文件ppk登陆
psftp -i private_key.ppk
2)不使用ppk文件
open finger_lake@150.45.21.70
输入密码
put file
默认传到 home 目录下
get /home/fingelake/file
从remote server 上下载文件