标签: networking linux-kernel clone linux-namespaces
如何使用unshare(),clone()在linux中创建大量网络命名空间?
unshare()
clone()
答案 0 :(得分:1)
只需
if (unshare(CLONE_NEWNET) < 0) { fprintf(stderr, "Failed to create a new network namespace: %s\n", strerror(errno)); goto out; }