Signed-off-by: YAMAMOTO Takashi <[email protected]> --- ryu/tests/integrated/test_vrrp_linux_multi.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ryu/tests/integrated/test_vrrp_linux_multi.sh
diff --git a/ryu/tests/integrated/test_vrrp_linux_multi.sh b/ryu/tests/integrated/test_vrrp_linux_multi.sh new file mode 100644 index 0000000..40c0c0b --- /dev/null +++ b/ryu/tests/integrated/test_vrrp_linux_multi.sh @@ -0,0 +1,18 @@ +#! /bin/sh + +ip link add veth0 type veth peer name veth0-br +ip link add veth1 type veth peer name veth1-br +ip link add veth2 type veth peer name veth2-br + +brctl addbr vrrpbr +brctl addif vrrpbr veth0-br +brctl addif vrrpbr veth1-br +brctl addif vrrpbr veth2-br + +ip link set veth0 up +ip link set veth0-br up +ip link set veth1 up +ip link set veth1-br up +ip link set veth2 up +ip link set veth2-br up +ip link set vrrpbr up -- 1.8.1.5 ------------------------------------------------------------------------------ Get your SQL database under version control now! Version control is standard for application code, but databases havent caught up. So what steps can you take to put your SQL databases under version control? Why should you start doing it? Read more to find out. http://pubads.g.doubleclick.net/gampad/clk?id=49501711&iu=/4140/ostg.clktrk _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
