Ta好神秘,什么都没有留下。
注册5周年签到1天
IP属地:广东

芝麻信用评估

芝麻信用评分是合法独立的信用评估及信用管理机构,授权后得到分数越高,代表信用越好

哈哈哈 亚马逊可不是拳头,supercell,蓝洞那种体量。

2020-02-12

好的,使用一段时间后我会反馈一下情况。

2020-01-08

哈哈哈 至少比吃灰强点 [喜极而泣] [喜极而泣]

2020-01-07

防火墙配置

#!/bin/bash

# /etc/rc.local

# Default policy to drop all incoming packets.
iptables -P INPUT DROP
iptables -P FORWARD DROP

# Accept incoming packets from localhost and the LAN interface.
iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -i eth1 -j ACCEPT

# Accept incoming packets from the WAN if the router initiated the connection.
iptables -A INPUT -i eth0 -m conntrack \
--ctstate ESTABLISHED,RELATED -j ACCEPT

# Forward LAN packets to the WAN.
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT

# Forward WAN packets to the LAN if the LAN initiated the connection.
iptables -A FORWARD -i eth0 -o eth1 -m conntrack \
--ctstate ESTABLISHED,RELATED -j ACCEPT

# NAT traffic going out the WAN interface.
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

# rc.local needs to exit with 0
exit 0

2020-01-07

现在的秋衣经常出汗后特别难受,我是不是应该倾向于棉质或莫代尔的?

2019-12-06

没想到秋衣居然也这么多讲究 [高兴]

2019-12-06
本周关注热点
原创达人榜

小提示

您确定删除该评论吗?

关注数量超出限制,
请先删除部分内容再尝试