selftests: router.sh: Add a diagram
It is customary for selftests to have a comment with a topology diagram, which serves to illustrate the situation in which the test is done. This selftest lacks it. Add it. Signed-off-by: Petr Machata <petrm@nvidia.com> Signed-off-by: Ido Schimmel <idosch@nvidia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5ade50e2df
commit
faa7521add
|
@ -1,6 +1,24 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# SPDX-License-Identifier: GPL-2.0
|
# SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
|
# +--------------------+ +----------------------+
|
||||||
|
# | H1 | | H2 |
|
||||||
|
# | | | |
|
||||||
|
# | $h1 + | | + $h2 |
|
||||||
|
# | 192.0.2.2/24 | | | | 198.51.100.2/24 |
|
||||||
|
# | 2001:db8:1::2/64 | | | | 2001:db8:2::2/64 |
|
||||||
|
# | | | | | |
|
||||||
|
# +------------------|-+ +-|--------------------+
|
||||||
|
# | |
|
||||||
|
# +------------------|-------------------------|--------------------+
|
||||||
|
# | SW | | |
|
||||||
|
# | | | |
|
||||||
|
# | $rp1 + + $rp2 |
|
||||||
|
# | 192.0.2.1/24 198.51.100.1/24 |
|
||||||
|
# | 2001:db8:1::1/64 2001:db8:2::1/64 |
|
||||||
|
# | |
|
||||||
|
# +-----------------------------------------------------------------+
|
||||||
|
|
||||||
ALL_TESTS="
|
ALL_TESTS="
|
||||||
ping_ipv4
|
ping_ipv4
|
||||||
ping_ipv6
|
ping_ipv6
|
||||||
|
|
Loading…
Reference in New Issue