我正在尝试将辅助 IP 添加到我的 VPN 隧道tun0
接口,但似乎无法从辅助 IP 发出任何流量。我对此很陌生,所以如果这是一个愚蠢的问题,请原谅。
这是我用来添加 IP 的命令:
ip address add 10.11.12.13/24 dev tun0
这是我的界面:
tun0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN group default qlen 100
link/none
inet 10.33.0.5/16 brd 10.33.255.255 scope global tun0
valid_lft forever preferred_lft forever
inet 10.11.12.13/24 scope global tun0
valid_lft forever preferred_lft forever
这是我的路由表:
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 10.33.0.1 128.0.0.0 UG 0 0 0 tun0
default 10.33.0.1 0.0.0.0 UG 0 0 0 tun0
10.33.0.0 0.0.0.0 255.255.0.0 U 0 0 0 tun0
103.108.95.146 192.168.1.1 255.255.255.255 UGH 0 0 0 eth0
128.0.0.0 10.33.0.1 128.0.0.0 UG 0 0 0 tun0
unn-138-199-33- 192.168.1.1 255.255.255.255 UGH 0 0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
curl
并ping
从主 IP 成功:
sudo curl --interface 10.33.0.5 google.com
[HTTP 301 response]
sudo ping -vI 10.33.0.5 google.com
--- google.com ping statistics ---
3 packets transmitted, 3 received, 0% packet loss
但是curl
从ping
辅助 IP 失败:
sudo curl --interface 10.11.12.13 google.com
[no response]
sudo ping -vI 10.11.12.13 google.com
--- google.com ping statistics ---
3 packets transmitted, 0 received, 100% packet loss
任何帮助,将不胜感激。