我创建了第二个 ubuntu,然后安装了 openvpn,然后我写下了该命令:
sudo ss -tupln ׀ grep openvpn
但被写
Error: an inet prefix is expected rather than "׀".
Cannot parse dst/src address.
我必须做什么?
答案1
您应该停止从不受信任的格式不良的博客复制代码块。
使用Shift+\输入管道字符|
以获取以下命令:
sudo ss -tupln | grep openvpn
从技术上讲,׀
和|
是完全不同的符号:
$ printf "׀" | hexdump
0000000 80d7
0000002
$ printf "|" | hexdump
0000000 007c
0000001