网络命名空间,Root-> Bridge-> Namespace:无法ping命名空间接口

时间:2018-09-18 15:45:16

标签: networking debian ip linux-namespaces

我正在创建网络名称空间,网桥和接口,以将它们连接在一起并连接到根名称空间。这是脚本:

DO
$$
BEGIN
    IF (select banned_till from users where unqid = 'user01') < now() THEN
      RAISE EXCEPTION 'User is banned';
    ELSE
        insert into posts (unqid, title, link, content, author_id, author_nick, author_flair) 
            SELECT 'pid03', 'Sample post title', 'www.google.com', 'This is a sample Post Content', unqid, nickname, flair 
            from users where unqid = 'user01';
    END IF;
END
$$;

下面是一个图:

Sub memory_leak()
    Dim DataObj As New MSForms.DataObject
    Dim data As String

    'Copy Data Range ~ the first 250.000 rows / 22 columns
    Range(Cells(9, 1), Cells(250000, 22)).Copy

    DataObj.GetFromClipboard
    data = DataObj.GetText

    ' Call postToURL("http://intranet/API.php?action=test", data)

    'Try to free memory...
    Application.CutCopyMode = False
    DataObj.Clear
    data = ""
End Sub

运行脚本没有问题,我可以从根名称空间ping两个网桥适配器,但不能从根ping 10.1.2.2(veth2)。在pia名称空间中,我无法ping其他任何接口。

我在配置中缺少什么吗?还是我需要添加一些自定义路由?

0 个答案:

没有答案