31 lines · plain
1#!/bin/bash2# SPDX-License-Identifier: GPL-2.03 4##############################################################################5# Topology description. p1 looped back to p2, p3 to p4 and so on.6 7NETIFS=(8 [p1]=veth09 [p2]=veth110 [p3]=veth211 [p4]=veth312 [p5]=veth413 [p6]=veth514 [p7]=veth615 [p8]=veth716 [p9]=veth817 [p10]=veth918)19 20# Port that does not have a cable connected.21NETIF_NO_CABLE=eth822 23##############################################################################24# In addition to the topology-related variables, it is also possible to override25# in this file other variables that net/lib.sh, net/forwarding/lib.sh or other26# libraries or selftests use. E.g.:27 28PING6=ping629MZ=mausezahn30WAIT_TIME=531