(OK) Graphviz - MANET - multiple interfaces multiple paths



/*
dot example3.dot -Tpng -o example3.png
*/

digraph G {

	size="10,10";

	rankdir=LR					// set graph direction rankdir="TB", "LR", "BT", "RL"

	//ranksep="1.0 equally"
	//splines=line
	nodesep=0.4;
	//node [label=""];

	subgraph cluster_1 {
	 color=white;
	 node [style=solid, color=black, shape=circle, width=.4 height=.4, fixedsize=true];
	 M1;
	 //label = "layer 1";
	}

	subgraph cluster_2 {
	 color=white;
	 node [style=solid, color=black, shape=circle, width=.4 height=.4, fixedsize=true];
	 M2;
	 //label = "layer 2";
	}

	subgraph cluster_3 {
	 color=white;
	 node [style=solid, color=black, shape=circle, width=.4 height=.4, fixedsize=true];
	 M3;
	 //label = "layer 2";
	}

	subgraph cluster_4 {
	 color=white;
	 node [style=solid, color=black, shape=circle, width=.4 height=.4, fixedsize=true];
	 M4;
	 //label = "layer 2";
	}

	subgraph cluster_5 {
	 color=white;
	 node [style=solid, color=black, shape=circle, width=.4 height=.4, fixedsize=true];
	 M5;
	 //label = "layer 3";
	}

	//At present, the recognized style names are "dashed", "dotted", "solid", "invis" and "bold" for nodes and edges, "tapered" for edges only, and "filled", "striped", "wedged", "diagonals" and "rounded" for nodes only. The styles "filled", "striped" and "rounded" are recognized for clusters. The style "radial" is recognized for nodes, clusters and graphs, and indicates a radial-style gradient fill if applicable. 


//-------------------------------------------------------------------------------------------------
// original MPTCP
/*
	M1 -> M2 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M1 -> M2 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M1 -> M2 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]

	M1 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M1 -> M4 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M4 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M4 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M2 -> M5 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M2 -> M5 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M2 -> M5 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]

	M3 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M3 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M3 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M4 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M4 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M4 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M2 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M2 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M2 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]

	M4 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M4 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M4 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
//*/
//-------------------------------------------------------------------------------------------------


//-------------------------------------------------------------------------------------------------
// original MPTCP
//*
	M1 -> M2 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M2 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M2 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]

	M1 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M3 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M1 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M1 -> M4 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M1 -> M4 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M1 -> M4 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M2 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M2 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M2 -> M5 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]

	M3 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M3 -> M5 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M3 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M4 -> M5 [style=bold, dir="both", arrowhead=none, arrowtail=none, color=red]
	M4 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]
	M4 -> M5 [style=solid, dir="both", arrowhead=none, arrowtail=none]

	M2 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M2 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M2 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]

	M4 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M4 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
	M4 -> M3 [style=solid, dir="both", arrowhead=none, arrowtail=none, constraint=false]
//*/
//-------------------------------------------------------------------------------------------------
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值