Changes between Version 19 and Version 20 of Tutorials/Wireless/mmwave Paam Agora


Ignore:
Timestamp:
Jul 5, 2023, 4:45:59 PM (21 months ago)
Author:
zhenzhou77
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/Wireless/mmwave Paam Agora

    v19 v20  
    6868=== Experiment Execution ===
    6969==== Find and prepare USRPs  ====
    70 * Upon logging into the server, run eth_config.sh script. This sets up the 10G data interfaces eno1, eno2. After running the script, you should see that the data interfaces have the appropriate IP addresses assigned, as per the tables for [https://wiki.cosmos-lab.org/wiki/Architecture/Domains/cosmos_sb1#IPAddressAssignment SB1] and [https://wiki.cosmos-lab.org/wiki/Architecture/Domains/cosmos_sb2#IPAddressAssignment SB2].
     70* Upon logging into the server, in **terminal one**, set up the 10G data interfaces DATA1, DATA2. After running the following script,
     71    {{{#!shell
     72    ifconfig DATA1 10.117.1.1 netmask 255.255.0.0 mtu 9000 up
     73    }}}
     74    {{{#!shell
     75    ifconfig DATA2 10.118.1.1 netmask 255.255.0.0 mtu 9000 up
     76    }}}
     77you should see that the data interfaces have the appropriate IP addresses assigned, as per the tables for [https://wiki.cosmos-lab.org/wiki/Architecture/Domains/cosmos_sb2#IPAddressAssignment SB2].
    7178{{{#!td
    72    SB1
     79   Before
    7380   {{{#!shell
    7481root@srv1-lg1:~# ifconfig DATA1
     
    9097   }}}
    9198}}}
     99
     100{{{#!td
     101   SB2
     102   {{{#!shell
     103root@srv1-lg1:~# ./eth_config.sh
     104root@srv1-lg1:~# ifconfig eno1
     105eno1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 9000
     106        inet 10.117.1.1  netmask 255.255.0.0  broadcast 10.117.255.255
     107        inet6 fe80::1e34:daff:fe42:d4c  prefixlen 64  scopeid 0x20<link>
     108        ether 1c:34:da:42:0d:4c  txqueuelen 1000  (Ethernet)
     109        RX packets 254  bytes 20924 (20.9 KB)
     110        RX errors 0  dropped 185  overruns 0  frame 0
     111        TX packets 25  bytes 4642 (4.6 KB)
     112        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
     113root@srv1-lg1:~# ifconfig eno2
     114eno2: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 9000
     115        inet 10.118.1.1  netmask 255.255.0.0  broadcast 10.118.255.255
     116        inet6 fe80::1e34:daff:fe42:d4d  prefixlen 64  scopeid 0x20<link>
     117        ether 1c:34:da:42:0d:4d  txqueuelen 1000  (Ethernet)
     118        RX packets 218  bytes 22274 (22.2 KB)
     119        RX errors 0  dropped 186  overruns 0  frame 0
     120        TX packets 25  bytes 4642 (4.6 KB)
     121        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
     122    }}}
     123}}}