假设网络中有 3 个对等点。A 和 B 知道对方的 IP 地址,但 C 只知道 A 的 IP 地址。因此,在 A 的配置中,它为 B 指定了一个端点,而不是 C。在 B 的配置中,它为 A 而不是 C 指定了端点。在 C 的配置中,它为 A 指定了一个端点,但没有B. 如果 B 和 C 都知道 A,他们还能相互连接吗?
主页
/
user-1296223
StarDust's questions
StarDust
Asked:
2021-12-11 08:07:26 +0800 CST
我设置了 Wireguard。我可以连接到10.200.200.1
Peer 1 上的地址,Peer 2。但是,我无法连接到10.200.200.1
Peer 1。我该怎么做?
对等体 1 的配置:
[Interface]
Address = 10.200.200.1/24
ListenPort = 51820
PrivateKey = ************
# substitute eth0 in the following lines to match the Internet-facing interface
# if the server is behind a router and receives traffic via NAT, these iptables rules are not needed
PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT; iptables -t nat -A POSTROUTING -o enp0s2 -j MASQUERADE
PostDown = iptables -D FORWARD -i %i -j ACCEPT; iptables -D FORWARD -o %i -j ACCEPT; iptables -t nat -D POSTROUTING -o enp0s2 -j MASQUERADE
[Peer]
# foo
PublicKey = ***************
#PresharedKey = PRE-SHARED_KEY
AllowedIPs = 10.200.200.2/8
#PersistentKeepalive = 25
curl 10.200.200.1:2001
给我
* Trying 10.200.200.1:2001...
* connect to 10.200.200.1 port 2001 failed: Connection refused
* Failed to connect to 10.200.200.1 port 2001 after 0 ms: Connection refused
* Closing connection 0
curl: (7) Failed to connect to 10.200.200.1 port 2001 after 0 ms: Connection refused
不过我可以ping10.200.200.1
通。
StarDust
Asked:
2021-06-21 14:55:44 +0800 CST
我正在使用rclone
复制共享的 Google Drive 文件夹,但我遇到了一个问题:当一次又一次地将同一个文件夹复制到同一个位置rclone
时,每次都会创建新文件夹,每个文件夹都复制到现有文件夹中文件夹。我相信这是因为rclone
只有当两个文件匹配名称、哈希和 mod-time 时才认为它们相同,而不仅仅是名称。那么,是否有一个标志我可以传递给它,rclone
所以它只会根据相同的文件名跳过?我试过--ignore-existing
了,但没有用。
一个例子:rclone copy remote:folder_to_copy_from remote: --drive-folder-id=id_of_folder_to_copy_to
复制folder_to_copy_from/a.txt
到folder_to_copy_to
,即使folder_to_copy_to/a.txt
存在。
StarDust
Asked:
2021-06-18 03:47:02 +0800 CST
我目前使用的是具有无限存储空间的托管 Google 云端硬盘帐户。但是,我的组织将很快关闭该帐户,因此我需要一种方法来复制所有文件。有办法吗?