if you are trying to attache the new network interface for your Ubuntu 18.04 EC2 instance, this post might help you to figure out.
Continue reading Set up your Secondary Network Interface for Ubuntu 18.04
if you are trying to attache the new network interface for your Ubuntu 18.04 EC2 instance, this post might help you to figure out.
Continue reading Set up your Secondary Network Interface for Ubuntu 18.04
this post will teach you how to deploy Kubernetes in multiple nodes mode based on Docker
Continue reading CentOS 7 Kubernetes Master-Node installation guide
打造一个帅气的监控需要什么:
如果需要大批量的创建linux,物理机上可能使用自动化安装工具,虚拟机上可以使用模板结合vmware自动化工具/powercli脚本。 Continue reading 通过模板生成linux
CentOS桌面状态下常用的配置,用到的可以看看
Continue reading CentOS桌面常用配置
地沟油22的alpha版刚出来不久,丧病的项目组又放出了23的消息,Fedora虽然打头阵的炮灰,但它什么新技术都是优先享用,右弊也有利嘛,来看看22的alpha版 Continue reading Fedora WorkStation 22 Alpha体验
昨天有个网友请教我如何格式化未使用的磁盘空间,在这里水一贴。 Continue reading Linux下使用mkfs格式化硬盘,并自动挂载
总算用上WIFI了,那就趁这个时候折腾了以下fedora,经过两天的折腾终于折腾好了,在这里贴上一些fedora安装完成后的一些配置。
Continue reading Fedora终于给折腾好了,献给像我一样的新手们。
从图中可以看到游戏画面相对windows平台下还是马马虎虎,让我们来看看官方介绍吧! Continue reading Linux下的一个竞速游戏【StuntRally】
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -p icmp --icmp-type 0 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A INPUT -p tcp --dport 22 -j ACCEPT # 放行ssh端口
iptables -A INPUT -p 协议(tcp/udp) --dport 端口号 -j ACCEPT
iptables -A OUTPUT -p 协议 --sport 端口号 -j ACCEPT
iptables -A INPUT -j REJECT
service Iptables save
或者 iptables-save