From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-23.smtp.github.com (out-23.smtp.github.com [192.30.252.206]) by mail.toke.dk (Postfix) with ESMTPS id 8994A7B479B for ; Tue, 8 Dec 2020 23:43:40 +0100 (CET) Authentication-Results: mail.toke.dk; dkim=pass (1024-bit key) header.d=github.com header.i=@github.com header.b=eZk/8aFx Received: from github.com (hubbernetes-node-f828b88.ac4-iad.github.net [10.52.110.68]) by smtp.github.com (Postfix) with ESMTPA id 77DB6600761 for ; Tue, 8 Dec 2020 14:43:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1607467419; bh=4msDpQnk9m/drKzB4AVSCPIfnlUM90BQsCwWAGVBg/U=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=eZk/8aFxZN8w5CTxVog5JuFIQt04zbQ3sC48nnIykiBijKwEZhQmvN/Wr2ju1XluN hKvdiqtc6CiROi9YtC/+bjnogloo566arw/2P9Z+z0aUPmKLe8H9ZzeCES/krZUHED mZ4Cu+hD6ZaDQIRBn+b2ZPq58qUvFTzE9Wbc4ldA= Date: Tue, 08 Dec 2020 14:43:39 -0800 From: =?UTF-8?B?VG9rZSBIw7hpbGFuZC1Kw7hyZ2Vuc2Vu?= To: tohojo/flent Message-ID: In-Reply-To: References: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="--==_mimepart_5fd0019b746be_5019b41176d6"; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: list X-GitHub-Sender: tohojo X-GitHub-Recipient: flent-users X-GitHub-Reason: subscribed X-Auto-Response-Suppress: All X-GitHub-Recipient-Address: flent-users@flent.org Message-ID-Hash: H4DWSGGKS2RNFQZQWKCM5DIWOYIS6HKU X-Message-ID-Hash: H4DWSGGKS2RNFQZQWKCM5DIWOYIS6HKU X-MailFrom: noreply@github.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; suspicious-header CC: Subscribed X-Mailman-Version: 3.3.2 Reply-To: tohojo/flent Subject: [Flent-users] Re: [tohojo/flent] Question about custom symbolic diffserv marking names feature (#215) List-Id: Flent discussion list Archived-At: List-Archive: List-Help: List-Post: List-Subscribe: List-Unsubscribe: ----==_mimepart_5fd0019b746be_5019b41176d6 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit olg33 writes: > Done! This time all works just fine. :-) > > Just one more thing. I'd like to have the marking names declared in the `.flentrc` file so that I don't have to type them every time I run a test. With that in mind, I created the ~/.flentrc file and added the following lines: > > [global] > `marking_names=10=0x28;11=0x2C;13=0x34;15=0x3C;17=0x44;19=0x4C;21=0x54;23=0x5C` > > But when I run a test: > `flent rrul_var -H 10.111.38.60 --test-parameter bidir_streams=2 markings=11,13` > > The system returns the following error: > `flent: error: unrecognized arguments: markings=11,13` You have to repeat --test-parameter for each parameter. So try running: flent rrul_var -H 10.111.38.60 --test-parameter bidir_streams=2 --test-parameter markings=11,13 You can also double-check the loading of the RC file by running with -v; that should make Flent print out whether it finds the file and which values it loads from it... -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/tohojo/flent/issues/215#issuecomment-741159062 ----==_mimepart_5fd0019b746be_5019b41176d6 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

olg33 <notifications@github.com> writes:

> Done! This time all works just fine. :-)
>
> Just one more thing. I'd like to have the marking names declared in the `.flentrc` file so that I don't have to type them every time I run a test. With that in mind, I created the ~/.flentrc file and added the following lines:
>
> [global]
> `marking_names=10=0x28;11=0x2C;13=0x34;15=0x3C;17=0x44;19=0x4C;21=0x54;23=0x5C`
>
> But when I run a test:
> `flent rrul_var -H 10.111.38.60 --test-parameter bidir_streams=2 markings=11,13`
>
> The system returns the following error:
> `flent: error: unrecognized arguments: markings=11,13`

You have to repeat --test-parameter for each parameter. So try running:

flent rrul_var -H 10.111.38.60 --test-parameter bidir_streams=2 --test-parameter markings=11,13

You can also double-check the loading of the RC file by running with -v;
that should make Flent print out whether it finds the file and which
values it loads from it...


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.

----==_mimepart_5fd0019b746be_5019b41176d6--