在suse上折腾iptables】的更多相关文章

需求背景:有台服务器希望屏蔽掉某IP对它的SSH连接. 临时客串下DevOps,下面的做法可能在专业运维的同学里不太专业,还请指教. 该服务器的操作系统是SuSE Linux,服务器上是安装了iptables,但是没有启用,也没用加入服务组. 所以我手动把它加入了系统服务中,并创建了一些必要文件: /etc/init.d/iptables #!/bin/sh # # iptables Start iptables firewall # # chkconfig: # description: St…
服务器上的iptables 防火墙设置脚本规则 完整脚本如下: 复制代码代码示例: #!/bin/bash# by www.jbxue.comiptab="/sbin/iptables"#----------------------- 清空所有规则  -----------------------------------#$iptab -F$iptab -X$iptab -Z$iptab -t nat -F$iptab -t nat -X$iptab -t nat -Z #------…
众所周知的原因,google的很多网站在国内无法访问,苦逼了一堆天朝程序员,下是在mac本上折腾android 开发环境的过程: 一.先下载android sdk for mac 给二个靠谱的网址: a). http://down.tech.sina.com.cn/page/45703.html b). http://mac.softpedia.com/get/Developer-Tools/Google-Android-SDK.shtml 到这个面下载后,解压到某个目录 二.设置下载的代理服务…
centos7上安装iptables的步骤 注意:CentOS7默认的防火墙不是iptables,而是firewalle. 安装iptable iptable-service #安装iptables yum install -y iptables iptables-services 禁用/停止自带的firewalld服务 #停止firewalld服务 systemctl stop firewalld #禁用firewalld服务 systemctl disabled firewalld 设置现有…
折腾这些东西,总是要经常借助搜索引擎找答案,找的次数多了,也就烦了,不想总是做重复工作. 所以把做过的一些事情记录一下,加深一下印象. 1.安装python2.7 VPS上面的太老了,之前安装的,过程暂时不记得了,无非就是去python官网下载源码,然后编译,然后安装. 安装完后把原来的/usr/bin/python重命名一下,然后用ln命令把/usr/local/bin/python 链到/usr/bin/python 下,这样直接输python就可以用2.7了. 2.安装pip 但是这样默认…
转自:http://www.netingcn.com/aliyun-iptables.html 公司的产品一直运行在云服务器上,从而有幸接触过aws的ec2,盛大的云服务器,最近准备有使用阿里云的弹性计算(云服务器).前两种云服务器在安全策略这块做的比较好,提供简单明了的配置界面,而且给了默认的安全策略,反观阿里云服务器,安全策略需要自己去配置,甚至centos机器上都没有预装iptables(起码我们申请两台上都没有),算好可以使用yum来安装,安装命令如下: yum install -y i…
有几个命令: 1.service iptables staus   2.service iptables start    3.service iptables restart   有个配置文件/ect/sysconfig/iptables     执行第一条命令的时候发现没有任何反应,到/ect/sysconfig/目录下也没有iptables这个文件,应该是iptables没有安装,那么通过yum命令来安装 yum install -t iptables 参考的资料链接:http://www…
1.Centos6.5默认开启了iptables 当Centos6.5上安装了MySQL后,在远程连接它,如果出现10060的错误,说明iptables在起作用. 关闭iptables即可,sudo service iptables stop. 2.修改iptables放行某些端口 TODO…
vmware我还是比较偏向7.1.4版本,其他版本装在win7上似乎有点问题.windows平台下,使用vmware + opensuse的网络配置过程如下:      1. 装完vm后,会在本地连接新创建两个新连接vm1和vm8,vm8属性中设置为自动获取IP: 2. 启动suse后,在network settings中,将suse的IP设置为DHCP,其他都不用管: 3. vm中,将上网方式设置为桥接: 4. 此时,在windows中ping suse的IP,反过来也ping一下,都可以pi…
参考:http://blog.abv.cn/?p=50 阿里云CentOS6默认没有启动iptables 1.检查iptables状态 [root@iZ94jj63a3sZ ~]# service iptables status iptables: Firewall is not running. [root@iZ94jj63a3sZ ~]# 说明iptables没有启动. 如果没有安装,则使用如下命令安装 [root@iZ94jj63a3sZ ~]# yum install -y iptabl…