Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • You already have knowledge on how ONOS generally works;

  • ONOS has been already installed OR there’s a management machine ready to push bits to some target machines;

  • Different hosts have been directly attached to the OpenFlow data plane and they send out tagged packets using none or some (same or different) VLAN Ids.

Starting VPLS

VPLS can set to be installed and configured:

...

Code Block
titleVPLS cell file
# Basic VPLS topology

export ONOS_NIC=192.168.56.*
export OCI="192.168.56.101"
export OC1="192.168.56.101"
export OC2="192.168.56.102"
export OCN="192.168.56.103"
export ONOS_APPS=drivers,openflow,vpls
export ONOS_GROUP=sdn
export ONOS_SCENARIOS=$ONOS/tools/test/scenarios
export ONOS_TOPO=vpls
export ONOS_USER=sdn
export ONOS_USE_SSH=true
export ONOS_WEB_PASS=rocks
export ONOS_WEB_USER=onos

alias vpls-reset='stc net-teardown; stc teardown; topo vpls; stc setup && stc net-setup'

Configuring VPLS

VPLS relies on the ONOS network configuration subsystem, which is by default distributed on all ONOS nodes and shared by all ONOS applications.

...