我可以将 lo 镜像为 eth0 吗?

我可以将 lo 镜像为 eth0 吗?

是否可以让eth0指向lo?我有一个愚蠢的进程,它一直充当 eth0 存在的角色,而实际上它并不存在。

答案1

您可以添加一个名为的虚拟接口eth0- 它不会与 完全相同lo,但应该可以工作:

# ip link add eth0 type dummy
# ip addr add 169.254.47.11/24 dev eth0 scope link
# ip link set dev eth0 up

编辑:更正了 (链接本地地址) 的范围169.254.xx.yy

相关内容