V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Autonomous  ›  全部回复第 38 页 / 共 123 页
回复总数  2456
1 ... 34  35  36  37  38  39  40  41  42  43 ... 123  
2022-08-14 11:26:47 +08:00
回复了 Autonomous 创建的主题 UBNT UniFi6 In-Wall 上市,国行售价¥1599
@CKR 官方给的面板宽度是 96mm ,所以如果是联排的底盒而且是中间位置的话,应该是会顶的,安装在两边的位置会好些
2022-08-05 22:32:31 +08:00
回复了 Autonomous 创建的主题 UBNT UniFi6 In-Wall 上市,国行售价¥1599
2022-08-03 20:50:14 +08:00
回复了 jlak 创建的主题 macOS MacOS 上用什么好用的云盘挂载工具吗?
Raidrive 好用,可惜收费了
2022-07-24 18:32:39 +08:00
回复了 huangya 创建的主题 NAS 12 代 cpu 做 nas 现在合适吗?
@Eytoyes 你这个也太强了,路由器都不要外壳,直接裸板?

灰尘问题呢。我的弱电箱里面总是莫名其妙的出现一些灰尘,用吸尘器吸干净之后过较长一段时间还是会有
2022-07-16 16:58:39 +08:00
回复了 xuwu 创建的主题 宽带症候群 广东电信已经不给公网 ip
@ArmstrongPater 同关注深圳联通,我联系师傅说没有公网 IP ,蹲一个后续
2022-07-16 11:51:40 +08:00
回复了 ichigo 创建的主题 旅行 北疆归来~一路把眼睛喂饱!(伊犁环线+独库公路+阿勒泰)
不想上班+1
2022-07-07 20:56:39 +08:00
回复了 henshin 创建的主题 生活 分享我的低成本润拿下绿卡经历
慕了慕了
2022-06-19 21:31:02 +08:00
回复了 fastcache 创建的主题 SSD Gen4 NVMe 求推荐
980pro 不是说发热控制的不错吗
没有存款,只有负债
2022-06-19 09:31:45 +08:00
回复了 BlackFri 创建的主题 生活 异地生活透心的孤独感
@tqyq88 人生,最难得是活通透,世界除了你其他人都是 NPC ,说的太好了。
还有
朗科 N550S 128G
万兆 SFP+ 单模 双纤 10 公里
单模光纤跳线 双芯 LC-LC (电信级),0.5 米
单模光纤跳线 双芯 LC-LC (电信级),2 米

上述物品皆使用深圳优惠券。
2022-06-07 21:09:46 +08:00
回复了 summersun2021 创建的主题 macOS mac 新系统新通行密钥, 1pass 和 enpass 是不是可以抛弃了
Vaultwarden 用户表示无感。
2022-06-05 21:09:48 +08:00
回复了 haowenwu 创建的主题 UBNT Edge OS 开启 IPv6
假设 WAN 口在 eth0 ,运营商给的前缀长度是 60 ,可以配成 DHCPv6-stateless ,记得把防火墙规则给写了:

```

configure
# Configure the PPPoE for IPv6(eth0):
set interfaces ethernet eth0 pppoe 0 ipv6 enable
set interfaces ethernet eth0 pppoe 0 ipv6 address autoconf
set interfaces ethernet eth0 pppoe 0 ipv6 dup-addr-detect-transmits 1
set interfaces ethernet eth0 pppoe 0 dhcpv6-pd pd 0 prefix-length /60
set interfaces ethernet eth0 pppoe 0 dhcpv6-pd rapid-commit enable
set interfaces ethernet eth0 pppoe 0 dhcpv6-pd prefix-only

# Enable IPv6 DHCPv6-stateless on the LAN(switch0):
set interfaces ethernet eth0 pppoe 0 dhcpv6-pd pd 0 interface switch0 host-address ::1
set interfaces ethernet eth0 pppoe 0 dhcpv6-pd pd 0 interface switch0 prefix-id :0
set interfaces ethernet eth0 pppoe 0 dhcpv6-pd pd 0 interface switch0 service dhcpv6-stateless

# Enable IPv6 on switch0:
set interfaces switch switch0 ipv6 dup-addr-detect-transmits 1
set interfaces switch switch0 ipv6 router-advert cur-hop-limit 64
set interfaces switch switch0 ipv6 router-advert link-mtu 0
set interfaces switch switch0 ipv6 router-advert managed-flag false
set interfaces switch switch0 ipv6 router-advert max-interval 600
set interfaces switch switch0 ipv6 router-advert other-config-flag false
set interfaces switch switch0 ipv6 router-advert prefix '::/64' autonomous-flag true
set interfaces switch switch0 ipv6 router-advert prefix '::/64' on-link-flag true
set interfaces switch switch0 ipv6 router-advert prefix '::/64' valid-lifetime 259200
set interfaces switch switch0 ipv6 router-advert reachable-time 0
set interfaces switch switch0 ipv6 router-advert retrans-timer 0
set interfaces switch switch0 ipv6 router-advert send-advert true

# create a policy for WAN->Router:
set firewall ipv6-name WANv6_LOCAL default-action drop
set firewall ipv6-name WANv6_LOCAL description 'Local network traffic'
set firewall ipv6-name WANv6_LOCAL enable-default-log
set firewall ipv6-name WANv6_LOCAL rule 10 action accept
set firewall ipv6-name WANv6_LOCAL rule 10 description 'Allow established/related sessions'
set firewall ipv6-name WANv6_LOCAL rule 10 state established enable
set firewall ipv6-name WANv6_LOCAL rule 10 state related enable
set firewall ipv6-name WANv6_LOCAL rule 20 action drop
set firewall ipv6-name WANv6_LOCAL rule 20 description 'Drop invalid state'
set firewall ipv6-name WANv6_LOCAL rule 20 state invalid enable
set firewall ipv6-name WANv6_LOCAL rule 30 action accept
set firewall ipv6-name WANv6_LOCAL rule 30 description 'Allow IPv6 icmp'
set firewall ipv6-name WANv6_LOCAL rule 30 protocol icmpv6
set firewall ipv6-name WANv6_LOCAL rule 40 action accept
set firewall ipv6-name WANv6_LOCAL rule 40 description 'allow dhcpv6'
set firewall ipv6-name WANv6_LOCAL rule 40 destination port 546
set firewall ipv6-name WANv6_LOCAL rule 40 protocol udp
set firewall ipv6-name WANv6_LOCAL rule 40 source port 547

# create a policy for WAN->LAN Clients:
set firewall ipv6-name WANv6_IN default-action drop
set firewall ipv6-name WANv6_IN description 'WAN inbound traffic to the router'
set firewall ipv6-name WANv6_IN enable-default-log
set firewall ipv6-name WANv6_IN rule 10 action accept
set firewall ipv6-name WANv6_IN rule 10 description 'Allow established/related sessions'
set firewall ipv6-name WANv6_IN rule 10 state established enable
set firewall ipv6-name WANv6_IN rule 10 state related enable
set firewall ipv6-name WANv6_IN rule 20 action drop
set firewall ipv6-name WANv6_IN rule 20 description 'Drop invalid state'
set firewall ipv6-name WANv6_IN rule 20 state invalid enable
set firewall ipv6-name WANv6_IN rule 30 action accept
set firewall ipv6-name WANv6_IN rule 30 description 'Allow IPv6 icmp'
set firewall ipv6-name WANv6_IN rule 30 protocol icmpv6
set firewall ipv6-name WANv6_IN rule 40 action accept
set firewall ipv6-name WANv6_IN rule 40 description 'allow dhcpv6'
set firewall ipv6-name WANv6_IN rule 40 destination port 546
set firewall ipv6-name WANv6_IN rule 40 protocol udp
set firewall ipv6-name WANv6_IN rule 40 source port 547
set firewall ipv6-receive-redirects disable
set firewall ipv6-src-route disable
set interfaces ethernet eth0 pppoe 0 firewall in ipv6-name WANv6_IN
set interfaces ethernet eth0 pppoe 0 firewall local ipv6-name WANv6_LOCAL

commit
save
exit


```
2022-06-04 12:19:01 +08:00
回复了 cloverzrg2 创建的主题 深圳 你们深圳消费券买啥(京东)
@f360family123 +1 ,也买了个朗科固态,给 UniFi CloudKey 用
2022-05-31 20:44:50 +08:00
回复了 hotcool100 创建的主题 问与答 最近买了套房子,现在是置换房产的好时机吗?
通勤感觉会很累
2022-05-27 22:03:24 +08:00
回复了 hhyygg 创建的主题 宽带症候群 运营商 DNS 将 GitHub 指向的本地
用阿里公共 DNS
2022-05-27 22:01:48 +08:00
回复了 Davic1 创建的主题 问与答 真·全币种信用卡 和 伪·全币种信用卡
工行 VISA 多币种卡用户表示,征信一大片,但是丝毫不影响办理房贷。
2022-05-20 19:32:36 +08:00
回复了 sickoo 创建的主题 macOS 2022 年了,多少在用 safari?
Safari 主力,Chrome 辅助
2022-05-17 22:35:58 +08:00
回复了 id7368 创建的主题 优惠信息 数字人民币活动: 8~80 元无门槛消费券 纯羊毛
10 块,不知道买啥
1 ... 34  35  36  37  38  39  40  41  42  43 ... 123  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   2415 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 42ms · UTC 15:54 · PVG 23:54 · LAX 07:54 · JFK 10:54
Developed with CodeLauncher
♥ Do have faith in what you're doing.