Hostloc 新帖图文推送
1.76K subscribers
59.5K photos
392K links
本频道基本功能:爬取国内外有名的主机论坛Hostloc新帖,为订阅者提供一手图文资讯!

Hostloc: https://www.hostloc.com

侵删,联系 @CodyD
Download Telegram
标题小鸡禁止访问某些网站
作者鸡佬
原帖https://hostloc.com/thread-856767-1-1.html

摘要:请教下小鸡该如何禁止访问某些网站呢,只想和朋友分享加速游戏,为了大家身心健康禁止访问不该进的网站

以前是手动iptables+hosts 但是量多了就很难操作了。。
标题看到thestack,说一下我这边的情况
作者socpk
原帖https://hostloc.com/thread-856769-1-1.html

摘要:工单响应,算比较慢吧,运气好当天能回,运气不好2天回的也有
这个工单是,前几天发的,想把小鸡换个地区,
然后6月9号的回复是 他们正在部署新的服务器,让我等2天,给开新机
我11号就找他们开新机了,当天给开了。
新机器E5的cpu跑分测试870-900左右,这个比之前500多600多的明显高不少,
确实是新机器负载低,所以我觉得跑路的可能性不太大
工单响应比较慢,或者说有点碰运气
标题新域名后缀这么多,未来大局域网cn域名是不是还吃香?
作者rogerskys
原帖https://hostloc.com/thread-856770-1-1.html

摘要:新域名后缀这么多,未来大局域网cn域名是不是还吃香?com已经是添加了,cn是不是还可以留几个好一点的?
标题手机看欧洲杯的解决方案?
作者ZHT5178
原帖https://hostloc.com/thread-856771-1-1.html

摘要:请教mjj
标题大佬们哪里有月抛机买
作者8iack
原帖https://hostloc.com/thread-856773-1-1.html

摘要:看到AZ的香港不错啊,想买一台
标题送一个histyun13.5三网cn2回程的小鸡儿
作者辣鸡鸡
原帖https://hostloc.com/thread-856775-1-1.html

摘要:给第一个回帖说要的人,想要的人账户里需要有5元push费用,第一个要的人记得私信我你的编号
标题这是我见过的最大的flash小游戏了。。。
作者☼☼☼☼☼☼
原帖https://hostloc.com/thread-856776-1-1.html
标题office365续命成功
作者麻豆传媒
原帖https://hostloc.com/thread-856777-1-1.html

摘要:Microsoft 365 Developer Program
Congratulations!

Your Microsoft 365 trial developer subscription has been renewed. Your new expiration date is 10/11/2021 (UTC).

Note: Your Microsoft 365 subscription is for development purposes only. For more information, see the Microsoft 365 Developer Program FAQ.

Visit your Microsoft 365 Developer Program dashboard to check your status and to find tools that add value to your subscription.

Thank you!

The Microsoft 365 Developer Program Team

有点麻烦,还是喜欢一年一续的,当初没当回事儿就过期了,艹!这下好了,一年续4次。
标题朋友给了几个米粽 我给了朋友梯子 结果朋友下片被警告
作者KDE
原帖https://hostloc.com/thread-856778-1-1.html

摘要:然后iptables封禁所有,再允许特定端口,大佬看看这样做对吗?
放/etc/rc.local开机运行

------------------

iptables -F //清除所有

iptables -A INPUT -p tcp --dport 22 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j ACCEPT

iptables -A INPUT -p udp --dport 8888 -j ACCEPT //转发wgcf
iptables -A INPUT -p udp --dport 2408 -j ACCEPT
iptables -A INPUT -p udp --dport 4000 -j ACCEPT
iptables -A INPUT -p udp --dport 5000 -j ACCEPT
iptables -A INPUT -p udp --dport 53 -j ACCEPT
iptables -A INPUT -p udp --dport 853 -j ACCEPT

#转发wgcf
iptables -t nat -A PREROUTING -p udp --dport 8888 -j DNAT --to-destination 162.159.192.1:2408
iptables -t nat -A POSTROUTING -d 162.159.192.1 -p udp --dport 2408 -j MASQUERADE

关键词封
iptables -A OUTPUT -m string --string "torrent" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string ".torrent" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "peer_id=" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "announce" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "info_hash" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "get_peers" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "find_node" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "BitTorrent" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "announce_peer" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "BitTorrent protocol" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "announce.php?passkey=" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "magnet:" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "xunlei" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "sandai" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "Thunder" --algo bm --to 65535 -j DROP
iptables -A OUTPUT -m string --string "XLLiveUD" --algo bm --to 65535 -j DROP

iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT ACCEPT

iptables -A INPUT -i lo -j ACCEPT

iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
标题重金求写域名被墙检测工具
作者骚猪
原帖https://hostloc.com/thread-856779-1-1.html

摘要:小项目 寻找开发人员

需要找个Python写一个页端的域名被墙工具,
大概就是一个页端,类似表格一样,
我输入一批域名+端口,可以每隔1分钟检查一次端口是否被墙(reset或者timeout)

https://www.abc.com:6001
https://www.abc.com:6002
https://www.abc.com:6003
https://www.abc.com:6004
https://www.abc.com:6005
https://www.abc.com:6006

页端支持编辑,支持分组如果被墙的域名,底色会自动变黄色,如果连续5次都是timeout或者reset,底色变成红色。
价格:5000元,可以付定金,根据后期需求加钱。

有兴趣的mjj可以PM我。24小时在线
标题115有点拉垮啊.艹.下个美剧全卡99%
作者trips
原帖https://hostloc.com/thread-856780-1-1.html

摘要:好像最近离线大姐姐的片子也是99%...
他奶奶的.要他何用.操了
标题再出一个Az3500 国内版,有效期一个月
作者城里的月光
原帖https://hostloc.com/thread-856782-1-1.html

摘要:450 ,可开az国内所有区,需要的老板DD我
标题求个便宜的油罐车家庭组
作者aa8
原帖https://hostloc.com/thread-856783-1-1.html

摘要:rt上车打卡
标题wholesaleinternet机房出问题了吗?
作者zhijuefe
原帖https://hostloc.com/thread-856784-1-1.html

摘要:服务器ping不通,也登录不上服务器
标题继续收Linode
作者ztxupdag
原帖https://hostloc.com/thread-856786-1-1.html

摘要:最好是注册了几天的号,100刀快来,60收,觉得价钱可以的PM
标题甲骨文OCI申请
作者dangyixin
原帖https://hostloc.com/thread-856787-1-1.html

摘要:真如这个帖子中老哥说的
https://hostloc.com/forum.php?mo ... 6orderby%3Ddateline

用自己的域名邮箱申请,秒回消息,里面附带申请连接

能不能通过不知道,提交申请五个工作日内回复