Skip to content

Commit

Permalink
Merge pull request #109 from cglewis/master
Browse files Browse the repository at this point in the history
order matters
  • Loading branch information
anarkiwi authored Jan 28, 2021
2 parents d4ef50f + 00a7760 commit 5e8fa08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ Pipette is a tool that allows users to multiplex SDN coprocessing by implementin
## Usage

1. If an OVS container is not already present, start OVS: `docker-compose -f docker-compose-ovs.yml up -d`
1. Start pipette: `COPROINT=<ethX> VLANS=<VLANs> NFVIPS=<NFVIPs> OF=<OF TCP port> ID=0 docker-compose up -d -p 0` (see Configuration section - example `COPROINT=eth1 VLANS=2 NFVIPS=10.10.0.1/16 OF=6699 ID=0 docker-compose up -d -p 0`.
1. Start pipette: `COPROINT=<ethX> VLANS=<VLANs> NFVIPS=<NFVIPs> OF=<OF TCP port> ID=0 docker-compose -p 0 up -d` (see Configuration section - example `COPROINT=eth1 VLANS=2 NFVIPS=10.10.0.1/16 OF=6699 ID=0 docker-compose -p 0 up -d`.
1. Start fake services listening on the NFVIP address assigned to the fake interface (Eg, IP of `fake0.2` for VLAN 2 - pipette manages this interface and assigns the NFVIP). Fake services do not have to be in Docker.
1. When finished, `docker-compose down`.
1. If you want to run pipette on multiple interfaces, specify different ID and project number as well as interfaces and NFVIPs (the same VLANs can be coprocessed differently on different interfaces - example `COPROINT=eth2 VLANS=2 NFVIPS=10.20.0.1/16 OF=6799 ID=1 docker-compose up -d -p 1`)
1. If you want to run pipette on multiple interfaces, specify different ID and project number as well as interfaces and NFVIPs (the same VLANs can be coprocessed differently on different interfaces - example `COPROINT=eth2 VLANS=2 NFVIPS=10.20.0.1/16 OF=6799 ID=1 docker-compose -p 1 up -d`)

### Configuration
#### Required
Expand Down

0 comments on commit 5e8fa08

Please sign in to comment.