Changes between Version 55 and Version 56 of Tutorials/Wireless/mmwave Paam Basics


Ignore:
Timestamp:
Apr 29, 2024, 7:01:29 PM (3 weeks ago)
Author:
Abhi Adhikari
Comment:

Legend:

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

    v55 v56  
    8181=== Experiment Execution ===
    8282==== Find and prepare USRPs  ====
     83
     84Updated eth_config.sh script:
     85   {{{#!shell
     86ipaddr_2=$(ip -o -s -4 addr show CTRL | awk '{print $4}' | cut -d/ -f1 | cut -d. --fields 2)
     87ipaddr_3_4=$(ip -o -s -4 addr show CTRL | awk '{print $4}' | cut -d/ -f1 | cut -d. --fields 3,4)
     88echo $ipaddr_3_4
     89ifconfig DATA1 10.$(($ipaddr_2 + 1)).$ipaddr_3_4 netmask 255.255.0.0 mtu 9000 up
     90ifconfig DATA2 10.$(($ipaddr_2 + 2)).$ipaddr_3_4 netmask 255.255.0.0 mtu 9000 up
     91sysctl -w net.core.rmem_max=62500000
     92sysctl -w net.core.wmem_max=62500000
     93   }}}
     94
    8395* 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].
    8496{{{#!td