Skip to Content.
Sympa Menu

perfsonar-user - Re: [perfsonar-user] Set up a mesh json file for testing dual-stack hosts

Subject: perfSONAR User Q&A and Other Discussion

List archive

Re: [perfsonar-user] Set up a mesh json file for testing dual-stack hosts


Chronological Thread 
  • From: Szymon Trocha <>
  • To: Tadeja Saje <>
  • Cc:
  • Subject: Re: [perfsonar-user] Set up a mesh json file for testing dual-stack hosts
  • Date: Tue, 3 Sep 2019 10:46:17 +0200
  • Organization: PCSS

Hi Tadeja,

W dniu 03.09.2019 o 10:18, Tadeja Saje pisze:
Hello!
I have testpoints with both  IPv4 and IPv6 address.
How should I change my psconfig mesh json file, that tests include -v6 and -ipv4 suffixes?

My current mesh json file generate only IPv6 tests.

    "tests": {
        "example-test-latencybg": {
            "spec": {
                "dest": "{% address[1] %}",
                "source": "{% address[0] %}"
            },
            "type": "latencybg"
        },

For each test you would have to specify ip-version option. So create test specs like:

        "example-test-latencybg_4": {
            "spec": {
                "ip-version" : 4,
                "dest": "{% address[1] %}",
                "source": "{% address[0] %}"
            },
            "type": "latencybg"

        },

        "example-test-latencybg_6": {
            "spec": {
                "ip-version" : 6,
                "dest": "{% address[1] %}",
                "source": "{% address[0] %}"
            },
            "type": "latencybg"
        },

for each type of test and then refer to them in separate tasks definitions

Regards,

--
Szymon Trocha
Poznań Supercomputing & Networking Center
General NOC phone +48 61-858-2015 | noc.pcss.pl
Personal desk phone +48 61-858-2022 Wysłaliśmy do Ciebie ten e-mail w odpowiedzi na Twoje zapytanie lub w związku z oferowaną usługą. Przesłanie korespondencji do Centrum Zarządzania PCSS lub zgłoszenie telefoniczne jest równoznaczne z wyrażeniem zgody na przetwarzanie danych osobowych przez Instytut Chemii Bioorganicznej Polskiej Akademii Nauk w Poznaniu adres: ul. Z. Noskowskiego 12/14, 61-704 Poznań. Szczegółowe informacje znajdują się w naszej Polityce prywatności. | This message has been sent as a part of communication with PSNC NOC or your service request sent to us. For more information read our Privacy Policy.



Archive powered by MHonArc 2.6.19.

Top of Page