标题:玩具公益AZ转发
作者:szi.ink
原帖:https://hostloc.com/thread-1021421-1-1.html
摘要:之前自己开的az200已经9天了,不知道什么时候死,已经欠费500刀
我自己没啥用挺浪费的,就用咸蛋搭了个转发。
我也没买授权啥的,所以只能iptables方式转发。
因为没买授权,账号都是我自己手动创建的
登上去改个密码啥的就好。
大家随便玩玩就行
账号分别是:likicc1 --- likicc10
密码分别是:likicc1 --- likicc10
账号密码对应的。
面板地址:https://liki.cc
作者:szi.ink
原帖:https://hostloc.com/thread-1021421-1-1.html
摘要:之前自己开的az200已经9天了,不知道什么时候死,已经欠费500刀
我自己没啥用挺浪费的,就用咸蛋搭了个转发。
我也没买授权啥的,所以只能iptables方式转发。
因为没买授权,账号都是我自己手动创建的
登上去改个密码啥的就好。
大家随便玩玩就行
账号分别是:likicc1 --- likicc10
密码分别是:likicc1 --- likicc10
账号密码对应的。
面板地址:https://liki.cc
标题:keep年会什么价
作者:尼克
原帖:https://hostloc.com/thread-1021425-1-1.html
摘要:某多多看了下年会70-90的样子
之前不都是50-60 现在长这麽快!!!
MJJ又低价渠道麽
太废了要锻炼锻炼
作者:尼克
原帖:https://hostloc.com/thread-1021425-1-1.html
摘要:某多多看了下年会70-90的样子
之前不都是50-60 现在长这麽快!!!
MJJ又低价渠道麽
太废了要锻炼锻炼
标题:发现了第二个hostloc,内涵
作者:brady_xiong
原帖:https://hostloc.com/thread-1021426-1-1.html
摘要:http://dacongyun.com/vps%e7%bb%bc%e5%90%88%e8%ae%a8%e8%ae%ba
无意间搜到的,mjj看看,看懂了没
作者:brady_xiong
原帖:https://hostloc.com/thread-1021426-1-1.html
摘要:http://dacongyun.com/vps%e7%bb%bc%e5%90%88%e8%ae%a8%e8%ae%ba
无意间搜到的,mjj看看,看懂了没
标题:建站推荐:甲骨文
作者:黎东林
原帖:https://hostloc.com/thread-1021430-1-1.html
摘要:建站性能与数据同样重要
甲骨文ARM同时保证了两者
性能:4 OCPU 24 GB RAM 不必多言
数据:使用甲骨文建站比其他任何都会更督促你对数据执行定期异地备份,你的数据从来没有更加安全过
作者:黎东林
原帖:https://hostloc.com/thread-1021430-1-1.html
摘要:建站性能与数据同样重要
甲骨文ARM同时保证了两者
性能:4 OCPU 24 GB RAM 不必多言
数据:使用甲骨文建站比其他任何都会更督促你对数据执行定期异地备份,你的数据从来没有更加安全过
标题:【Linux 防火墙】nftables 简单上手
作者:黎东林
原帖:https://hostloc.com/thread-1021432-1-1.html
摘要:Debian 11 已自带 nftables,为 iptables 原团队研发的新一代 netfilter 解释器/命令行,性能更高效,命令行更直观,建议代替 iptables 使用。
官方Wiki:https://wiki.nftables.org
简单记录一下我习惯启用基本 nftables 的步骤:
1. mkdir /etc/nftables
2. vim /etc/nftables/default.nft
#!/usr/sbin/nft -f
flush ruleset
table ip default {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
ct state established, related accept
# ping
icmp type echo-request limit rate 500/second accept
# SSH
tcp dport 22 accept
# Nginx
#tcp dport { 80, 443 } accept
}
chain forward {
type filter hook forward priority 0; policy drop;
ct status dnat accept
}
}
table ip6 default {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
ct state established, related accept
icmpv6 type { nd-nei**or-solicit, nd-router-advert, nd-nei**or-advert } accept
# ping
icmpv6 type echo-request limit rate 500/second accept
}
chain forward {
type filter hook forward priority 0; policy drop;
ct status dnat accept
}
}
3. vim /etc/nftables.conf
include "/etc/nftables/default.nft"
4. systemctl start nftables
5. systemctl enable nftables
6. systemctl restart nftables
7. 如有报错 systemctl status nftables 检查错误报告
8. 端口转发示例
table ip default {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
ct state established, related accept
# ping
icmp type echo-request limit rate 500/second accept
# SSH
tcp dport 22 accept
}
chain forward {
type filter hook forward priority 0; policy drop;
ct status dnat accept
}
chain prerouting {
type nat hook prerouting priority -100; policy accept;
iif eth0 tcp dport 443 dnat to ip 目的地:port 端口
}
chain postrouting {
type nat hook postrouting priority 100; policy accept;
masquerade
}
}
完。
作者:黎东林
原帖:https://hostloc.com/thread-1021432-1-1.html
摘要:Debian 11 已自带 nftables,为 iptables 原团队研发的新一代 netfilter 解释器/命令行,性能更高效,命令行更直观,建议代替 iptables 使用。
官方Wiki:https://wiki.nftables.org
简单记录一下我习惯启用基本 nftables 的步骤:
1. mkdir /etc/nftables
2. vim /etc/nftables/default.nft
#!/usr/sbin/nft -f
flush ruleset
table ip default {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
ct state established, related accept
# ping
icmp type echo-request limit rate 500/second accept
# SSH
tcp dport 22 accept
# Nginx
#tcp dport { 80, 443 } accept
}
chain forward {
type filter hook forward priority 0; policy drop;
ct status dnat accept
}
}
table ip6 default {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
ct state established, related accept
icmpv6 type { nd-nei**or-solicit, nd-router-advert, nd-nei**or-advert } accept
# ping
icmpv6 type echo-request limit rate 500/second accept
}
chain forward {
type filter hook forward priority 0; policy drop;
ct status dnat accept
}
}
3. vim /etc/nftables.conf
include "/etc/nftables/default.nft"
4. systemctl start nftables
5. systemctl enable nftables
6. systemctl restart nftables
7. 如有报错 systemctl status nftables 检查错误报告
8. 端口转发示例
table ip default {
chain input {
type filter hook input priority 0; policy drop;
iif lo accept
ct state established, related accept
# ping
icmp type echo-request limit rate 500/second accept
# SSH
tcp dport 22 accept
}
chain forward {
type filter hook forward priority 0; policy drop;
ct status dnat accept
}
chain prerouting {
type nat hook prerouting priority -100; policy accept;
iif eth0 tcp dport 443 dnat to ip 目的地:port 端口
}
chain postrouting {
type nat hook postrouting priority 100; policy accept;
masquerade
}
}
完。
标题:电信又出一款云盘,魔盘,会员便宜
作者:aosoco
原帖:https://hostloc.com/thread-1021433-1-1.html
摘要:https://mobile.189store.com/act/mopan/this-network-free.html?channel=tykj
4t 79包年
作者:aosoco
原帖:https://hostloc.com/thread-1021433-1-1.html
摘要:https://mobile.189store.com/act/mopan/this-network-free.html?channel=tykj
4t 79包年
标题:欧洲杜甫怎么免税
作者:人间不值得
原帖:https://hostloc.com/thread-1021441-1-1.html
摘要:买了op家的25.99欧,但是一直想买hz和ovh系列的机器,但是人在欧洲,pp和xyk都是欧洲的,加上税就感觉好不合适,问大佬如何免税的操作呢,感觉如果买免税账户,但是续费的时候用的pp是欧洲还是会被验证身份吧
作者:人间不值得
原帖:https://hostloc.com/thread-1021441-1-1.html
摘要:买了op家的25.99欧,但是一直想买hz和ovh系列的机器,但是人在欧洲,pp和xyk都是欧洲的,加上税就感觉好不合适,问大佬如何免税的操作呢,感觉如果买免税账户,但是续费的时候用的pp是欧洲还是会被验证身份吧
标题:中行万事达年费还有吗
作者:山本大意失仙人
原帖:https://hostloc.com/thread-1021443-1-1.html
摘要:rt,我看人家的帖子说50人民币/年,又有的说现在已经取消了,不知道还收不收
作者:山本大意失仙人
原帖:https://hostloc.com/thread-1021443-1-1.html
摘要:rt,我看人家的帖子说50人民币/年,又有的说现在已经取消了,不知道还收不收
标题:踢楼踢楼,送移动云一个月服务器(一百个之第9个)
作者:凤凰传奇之鸭
原帖:https://hostloc.com/thread-1021444-1-1.html
摘要:88楼
一人连续三楼为正常踢楼 超过不算,
中楼的MJJ签名TG联系我。
踢楼口号:
祝:2022年,MJJ们越来越棒,MJJ们越来越大,MJJ们越来越强,MJJ们越来越好用。。。。。。。
作者:凤凰传奇之鸭
原帖:https://hostloc.com/thread-1021444-1-1.html
摘要:88楼
一人连续三楼为正常踢楼 超过不算,
中楼的MJJ签名TG联系我。
踢楼口号:
祝:2022年,MJJ们越来越棒,MJJ们越来越大,MJJ们越来越强,MJJ们越来越好用。。。。。。。
标题:关于hetzner和netcup的疑问
作者:hostloc10086
原帖:https://hostloc.com/thread-1021447-1-1.html
摘要:试了下netcup和hetzner家的机器,他们两家都是德国商家,线路也不是优化线路,为啥下载速度还蛮快。使用网上的下载500兆的电信可以拉满。按理说他们家速度应该很拉才对啊。他们两家非杜甫可以买吗?
作者:hostloc10086
原帖:https://hostloc.com/thread-1021447-1-1.html
摘要:试了下netcup和hetzner家的机器,他们两家都是德国商家,线路也不是优化线路,为啥下载速度还蛮快。使用网上的下载500兆的电信可以拉满。按理说他们家速度应该很拉才对啊。他们两家非杜甫可以买吗?
标题:discuz 论坛统计在线时长问题
作者:深海空间
原帖:https://hostloc.com/thread-1021449-1-1.html
摘要:进了一个论坛(不是loc),discuz 建的,因为在线时长和等级挂钩所以写了一个python 脚本,逻辑是这样子的。
1:用session 登录
2:获取某个板块的所有帖子链接
3:每隔2分钟就访问一次2获得的链接(for循环)
4:把步骤2和3写入一个死循环
然后脚本跑了两天发现在线时间并没有增加,这是什么原因呢?难道有对应的机制防止刷时长?
登录我是肯定能登录成功的,因为每次访问帖子链接的时候我都会把帖子标题打印出来,没登录账号的用户是无法访问帖子的。
作者:深海空间
原帖:https://hostloc.com/thread-1021449-1-1.html
摘要:进了一个论坛(不是loc),discuz 建的,因为在线时长和等级挂钩所以写了一个python 脚本,逻辑是这样子的。
1:用session 登录
2:获取某个板块的所有帖子链接
3:每隔2分钟就访问一次2获得的链接(for循环)
4:把步骤2和3写入一个死循环
然后脚本跑了两天发现在线时间并没有增加,这是什么原因呢?难道有对应的机制防止刷时长?
登录我是肯定能登录成功的,因为每次访问帖子链接的时候我都会把帖子标题打印出来,没登录账号的用户是无法访问帖子的。
标题:2022编程语言排行榜
作者:客官不可以
原帖:https://hostloc.com/thread-1021450-1-1.html
摘要:我还想学go来着,看这排行,还没超过java
算了,还是不学了,浪费时间
https://hellogithub.com/report/tiobe/
作者:客官不可以
原帖:https://hostloc.com/thread-1021450-1-1.html
摘要:我还想学go来着,看这排行,还没超过java
算了,还是不学了,浪费时间
https://hellogithub.com/report/tiobe/
标题:宝塔论坛求助问题
作者:kldeam
原帖:https://hostloc.com/thread-1021451-1-1.html
摘要:宝塔论坛求助帖有啥规则限制吗
昨晚发的帖子 别人的都有客服回应 就不回应我的
作者:kldeam
原帖:https://hostloc.com/thread-1021451-1-1.html
摘要:宝塔论坛求助帖有啥规则限制吗
昨晚发的帖子 别人的都有客服回应 就不回应我的