V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  Autonomous  ›  全部回复第 37 页 / 共 122 页
回复总数  2431
1 ... 33  34  35  36  37  38  39  40  41  42 ... 122  
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 块,不知道买啥
2022-05-17 22:04:52 +08:00
回复了 asuraa 创建的主题 NAS ups 最近老是自动断电
bk650 啊,这玩意基本就是 3 年电池坏,正常,换电池吧
2022-05-17 20:57:50 +08:00
回复了 zx9481 创建的主题 问与答 说说自己买过最满意的电子产品吧
MacBook Pro (15-inch, 2016)
iPad Pro 12.9 4th Generation
Synology DS918+ 8GB
Logitech MX Anywhere 2S
Ubnt Edgerouter X

下一步打算把 Huawei 手机换成 iPhone
2022-05-17 20:52:54 +08:00
回复了 lmmlwen 创建的主题 问与答 有什么 app 能替换掉印象笔记,这东西太花里胡哨和笨重了
obsidian
2022-05-16 20:04:05 +08:00
回复了 Rain520 创建的主题 优惠信息 免费领 10 天极客时间超级会员+百度网盘青春卡 178 元
@Rain520 价格挺好,但是我们单位那强制要求用国产电脑,那麒麟系统安装的百度云盘居然不支持同步功能,太遗憾了
2022-05-14 15:12:36 +08:00
回复了 Rain520 创建的主题 优惠信息 免费领 10 天极客时间超级会员+百度网盘青春卡 178 元
百度网盘的……超年龄了
1 ... 33  34  35  36  37  38  39  40  41  42 ... 122  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3501 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 60ms · UTC 00:46 · PVG 08:46 · LAX 16:46 · JFK 19:46
Developed with CodeLauncher
♥ Do have faith in what you're doing.