From 22b9575f3d57cbaf3244f2e19e3e1b3f4d100b21 Mon Sep 17 00:00:00 2001 From: Alex Bortok <431965+bortok@users.noreply.github.com> Date: Tue, 23 Apr 2024 11:26:06 -0700 Subject: [PATCH] fixes --- docs/prerequisites.md | 34 +++++++++++++++++----------------- mkdocs.md | 6 +++--- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/prerequisites.md b/docs/prerequisites.md index 977a6fe7..fb9ddb25 100644 --- a/docs/prerequisites.md +++ b/docs/prerequisites.md @@ -33,7 +33,7 @@ For more granularity on resource requirements for advanced deployments, see [Res You may have to use `python3` or `absolute path to python executable` depending on the Python Installation on your system. ```sh - python -m pip --help + python -m pip --help ``` If you do not see a help message, see [pip installation guide](https://pip.pypa.io/en/stable/installing/), . @@ -41,13 +41,13 @@ For more granularity on resource requirements for advanced deployments, see [Res * **It is recommended that you use a python virtual environment for development.** ```sh - python -m pip install --upgrade virtualenv - # create virtual environment inside `env/` and activate it. - python -m virtualenv env - # on linux - source env/bin/activate - # on windows - env\Scripts\activate on Windows + python -m pip install --upgrade virtualenv + # create virtual environment inside `env/` and activate it. + python -m virtualenv env + # on linux + source env/bin/activate + # on windows + env\Scripts\activate on Windows ``` > If you do not want to activate the virtual env, use `env/bin/python` (or `env\scripts\python` on Windows) instead of `python`. @@ -62,17 +62,17 @@ In order for `ixia-c-traffic-engine` to function, several settings need to be tu ```sh # check interface details - ip addr + ip addr # configure as required - ip link set eth1 up - ip link set eth1 promisc on + ip link set eth1 up + ip link set eth1 promisc on ``` 2. (Optional) You need to create the `veth` interface pairs, to deploy the `ixia-c-traffic-engine` against them. - ```sh - # create veth pair veth1 and veth2 - ip link add veth1 type veth peer name veth2 - ip link set veth1 up - ip link set veth2 up - ``` + ```sh + # create veth pair veth1 and veth2 + ip link add veth1 type veth peer name veth2 + ip link set veth1 up + ip link set veth2 up + ``` diff --git a/mkdocs.md b/mkdocs.md index 95518816..a372f2df 100644 --- a/mkdocs.md +++ b/mkdocs.md @@ -4,7 +4,7 @@ This repo contains the content for the [Ixia-c.dev](https://ixia-c.dev/) web-sit ## Prerequisites -* Python 3.7+. In the commands below we assume use have `python3` executable. If you have a different name, change accordingly. +* Python 3.10+. In the commands below we assume use have `python3` executable. If you have a different name, change accordingly. * PIP @@ -25,8 +25,8 @@ This repo contains the content for the [Ixia-c.dev](https://ixia-c.dev/) web-sit ```Shell git clone https://github.com/open-traffic-generator/ixia-c.git --recursive cd ixia-c - git checkout mkdocs - python3 -m venv venv + git checkout -b __NEW_BRANCH_NAME__ + python3.10 -m venv venv source venv/bin/activate ```