TCS Confidential


Hi Bruno/Team,

 

Tried with different options but still facing issues with ssh to VM, not able to communicate through the Horizon clients also.

Kubernetes services also not working in VM.

 

Bruno,

Python script was still on when VM is up and login was success, script is not exited, kubelet services configuration is failed.

Can you suggest some work around here, we are also trying to resolve the issue.

 

Thanks & Regards,

Prashanthi.M

 

 

 

 

From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Sent: Thursday, May 4, 2023 7:29 PM
To: Chandu Vangala <v.chandu@tcs.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>
Subject: Re: Need support for starlingX 8 setup bring up.

 

TCS Confidential

 

"External email. Open with Caution"

I'm asking this question because I started a VM that I created with the script and it started the Kubelet services just fine. 

 

I wonder if this is a step in the middle of the config script where the service is not yet properly configured.

 

 

Regards, 

Bruno.


From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Sent: Thursday, May 4, 2023 10:56
To: Chandu Vangala <v.chandu@tcs.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>
Subject: Re: Need support for starlingX 8 setup bring up.

 

Hello, Chandu.

 

At this point, is the Python script already finished? What's its output at the end?

 

Regards,

Bruno.


From: Chandu Vangala <v.chandu@tcs.com>
Sent: Thursday, May 4, 2023 09:28
To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>
Subject: Re: Need support for starlingX 8 setup bring up.

 

External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe.

TCS Confidential

 

Hi Bruno,



We have followed your script https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/.  and able to create VM VirtualBox. But Kubernet services are not running.

Attached the error screenshot below. Could you please check and help on this.

Image

 

Thanks & Regards,

V.Chandu.


From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Sent: Tuesday, May 2, 2023 9:18 PM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com>
Subject: Re: Need support for starlingX 8 setup bring up.

 

TCS Confidential

 

"External email. Open with Caution"

Hello, Prashanthi. 

 

Answers in red:

 

  1. Do we need to create VMs and then run your script or your script itself will create VMs also?
    1. The script itself creates the VM
  1. Do we need to create 3 VMS (storage, control, worker) or only one VM is enough?
    1. Our current under-review version of the script only works for the AIO-SX (All-In-One Simplex) setup. This setup doesn't include storage. 
    2. Since what we have so far is still not merged to the main branch, you need to check out the patchset we have under review. I'll send the instructions again (see below). 
    3. Again, I reinstate the importance of understanding that this is a WIP effort under review by the community that already got my team several working installations of StarlingX  under VirtualBox that developers can use to get to know and do small tests with it.
    4. I only share this because you seem to be having similar problems that I saw recently in my team, so a mostly automated setup can be helpful for the developers that plan to work with the solution.

 

Below are the steps that I sent in another thread. These are for a Debian-based operating system, tested in Ubuntu and Pop!_OS:

 

# Install dependencies
sudo apt install virtualbox git rsync sshpass openssh-client python3-pip python3-venv

 

# Set up NAT Network to be used in VirtualBox
VBoxManage natnetwork add --netname NatNetwork --network 10.10.10.0/24 --dhcp off --ipv6 on

 

# Creating port forward for 8080 since for 22 it's created by the Python script currently
VBoxManage natnetwork modify --netname NatNetwork --port-forward-4 http-8080:tcp:[]:8080:[10.10.10.3]:8080

 

# Clone /tools repo to help with the installation
mkdir -p starlingx
cd starlingx
git clone --depth 1 https://opendev.org/starlingx/tools.git

 

# Downloads patchset that contains the scripts under review by the community
cd tools
git fetch https://review.opendev.org/starlingx/tools refs/changes/70/880870/11 && git checkout FETCH_HEAD

 

# Configure Python's virtual environment
cd deployment/virtualbox/pybox
python3 -m venv venv
source ./venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt

 

# Start the installation
python3 ./install_vbox.py --setup-type AIO-SX \
    --iso-location "./stx-8.iso" \
    --labname Prashanthi --install-mode serial \
    --config-files-dir ./configs/aio-sx/ \
    --config-controller-ini ./configs/aio-sx/stx_config.ini_centos \
    --ansible-controller-config ./configs/aio-sx/localhost.yml \
    --vboxnet-type nat \
    --vboxnet-name NatNetwork \
    --nat-controller0-local-ssh-port 3122 \
    --controller0-ip 10.10.10.3 \
    --ini-oam-cidr '10.10.10.0/24'

 

Notice on this last command that the --setup-type​ is equal to AIO-SX​. This is the only installation type that our branch/patchset currently supports. Our idea is to bring these scripts back to a working state since people haven't touched then in about 4 years now.

 

In this link, you find the script with all the steps above that you can download and run standalone: https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. But it's important to understand each step above so you can debug eventual problems easier.

 

Regards, 

Bruno.

 


From: Prashanthi Moligi <prashanthi.moligi@tcs.com>
Sent: Tuesday, May 2, 2023 12:09
To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>; Chandu Vangala <v.chandu@tcs.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe.

TCS Confidential

 

Hi Bruno,

 

Today we started working on VM installation also, but bootimage.iso  not cloned with tools.git image and GUI starting step is failing.

 

  1. Do we need to create VMs and then run your script or your script itself will create VMs also?
  2. Do we need to create 3 VMS (storage, control, worker) or only one VM is enough?

 

We are done with host machine setup but facing issue with VM setup, if you join tomorrow call , can we discuss VM environment issues also?

 

Thanks&Regards,

Prashanthi.

 

From: Prashanthi Moligi
Sent: Monday, May 1, 2023 11:22 PM
To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Meghana S <s.meghana10@tcs.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

Hi Bruno,

 

I agree to continuing with half the installation of Bare metal, so I asked for sync up call with Greg tomorrow.

 

If it doesn’t work tomorrow, then I want to start VM starlingX installation with your automation scripts, we will start that day after tomorrow morning, can you syncup on Wednesday evening, for the issues if we face any.

 

If installation with Greg help is successful, then we do not take it up, I will inform the status tomorrow evening time.

 

Thanks&Regards,

Prashanthi.M

 

From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Sent: Thursday, April 27, 2023 8:35 PM
To: Waines, Greg <Greg.Waines@windriver.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>; Gao, Litao <Litao.Gao@windriver.com>
Subject: Re: Need support for starlingX 8 setup bring up.

 

TCS Confidential

 

"External email. Open with Caution"

Prashanthi,

 

I agree, Litao and Greg are on the right track here. It looks like a problem in the config and if you answer what Greg is asking we should be able to quickly figure out what exactly is wrong.

 

Answers in red for the questions you asked:

  • Can I use same baremetal ISO for VM environment also
    • Yes
  • Will below scripts automate only VM environment, not bare metal?
    • VM environments (especifically VirtualBox) are what we're working on right now, yes.
  • I am currently working with latest StarlingX 8 version, is it stable or can we switch starlingX7?
    • The latest version (8) is stable. You can use it, yes.

 

I don't want to get in the way of "debugging" your current bare metal installation, but I want to give you options and you decide if they make your life easier or not. I made a script for myself that is simultaneously kind of a "short version" of this installation guide and also something that you can just run on a Debian-based Linux box. I personally tested/used it on 2 different Ubuntu 20.04 boxes several times already.

 

The script is here: https://paste.opendev.org/show/bciA9x0pZbsPmkgT5URs/. Feel free to reach me on IRC (you can find me, brunomuniz, on the StarlingX channel) if you want more synchronous help with it.

 

Regards,

Bruno.

 

 

 


From: Waines, Greg <Greg.Waines@windriver.com>
Sent: Thursday, April 27, 2023 11:15
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Gao, Litao <Litao.Gao@windriver.com>
Cc: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe.

Apologies Prashanthi … I was out-of-office for a few days.

 

I suspect Litao is on the right track … it doesn’t seem like 10.10.10.1 is a valid IP Address for your next hop gateway router.

 

Can you provide the following info

  • AFTER you do the INITIAL USB SOFTWARE INSTALL
    • AND AFTER YOU login for the first time as sysadmin/sysadmin … and change the password
      • AND AFTER YOU RUN ‘sudo dhclient <ifname>’ in order to get your initial IP Address
        • Can you run the following and send me the outputs
          • ip link
          • ip addr
          • ping 8.8.8.8
  • can you also send me the contents of the /home/sysadmin/localhost.yml
    that you are using ?

 

 

 

thanks

Greg.

 

From: Gao, Litao <Litao.Gao@windriver.com>
Sent: Thursday, April 27, 2023 4:05 AM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Bruno Drugowick Muniz <Bruno.Muniz@encora.com>; Waines, Greg <Greg.Waines@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

Hi Prashanthi,

 

Checked your log. Are you sure ‘10.10.10.1’ is the valid gateway ip address in your environment?

 

Best Regards,

Litao


Wind River

 

 

From: Prashanthi Moligi <prashanthi.moligi@tcs.com>
Sent: Thursday, April 27, 2023 2:39 PM
To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>; Waines, Greg <Greg.Waines@windriver.com>; Gao, Litao <Litao.Gao@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

CAUTION: This email comes from a non Wind River email account!
Do not click links or open attachments unless you recognize the sender and know the content is safe.

TCS Confidential

 

Hi Bruno,

 

FYI

 

I am trying to install  “starlingX kubernetes on VM/Bare metal” not for openstack version.

 

Thanks & Regards,

Prashanthi.M

 

From: Prashanthi Moligi
Sent: Thursday, April 27, 2023 11:28 AM
To: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>; Waines, Greg <Greg.Waines@windriver.com>; Gao, Litao <Litao.Gao@windriver.com>; Schwager, Udi <Udi.Schwager@windriver.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

Hi Bruno,

I am tyring to install “Virtual All-in-one Simplex Installation” on baremetal, I understood that you are automating installation process for same deployment config on Virtual environment. Can you please help me for below points.

  • Can I use same baremetal ISO for VM environment also
  • Will below scripts automate only VM environment, not bare metal?
  • I am currently working with latest StarlingX 8 version, is it stable or can we switch starlingX7?

I want to bring up starlingX setup ASAP either on bare metal or on VM,  your automation script helps me for that, please share your script and process to run.

Eagerly waiting for your response.

Thanks,

Prashanthi.

 

 

From: Bruno Drugowick Muniz <Bruno.Muniz@encora.com>
Sent: Thursday, April 27, 2023 3:48 AM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Waines, Greg <Greg.Waines@windriver.com>; Gao, Litao <Litao.Gao@windriver.com>; Schwager, Udi <Udi.Schwager@windriver.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>
Subject: Re: Need support for starlingX 8 setup bring up.

 

TCS Confidential

 

"External email. Open with Caution"

Hi, Prashanthi.

 

Currently, my team is working on changing some existing Python/Shell scripts, and with our changes so far you can get an installation of StarlingX AIO-SX in VirtualBox from a Debian box without too much trouble (almost 100% automated). For reference:

  • AIO: Al-In-One, means that the same machine (vm) will have more than one responsibility (controller and worker in this case)
  • SX: Simplex, means that only a single controller will be used.

I don't know if this is enough for the PoC that you want to do, but in case this helps, our changes are currently under review here: https://review.opendev.org/c/starlingx/tools/+/880870.

 

Let me know if this is helpful and I can put a quick Shell script together that will get you the code with our changes and perform the installation for you.

 

Regards,

Bruno.

 


From: Prashanthi Moligi <prashanthi.moligi@tcs.com>
Sent: Wednesday, April 26, 2023 14:53
To: Waines, Greg <Greg.Waines@windriver.com>; Gao, Litao <Litao.Gao@windriver.com>; Schwager, Udi <Udi.Schwager@windriver.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>
Subject: Re: [Starlingx-discuss] Need support for starlingX 8 setup bring up.

 

External Mail: Do not click links or open attachments unless you recognize the sender and know the content is safe.

TCS Confidential

 

Hi Greg/Litao,

 

               We could able to proceed further in ansible playbook execution, but some of the steps failing and also we have doubts in parameter configuration of localhost.yml file, Attaching ansible log can please verify and guide us to bring up the starlingX controller.

 

Greg,

 

As we discussed in last meeting can you please give one Point of contact, who can help us in setup bring up, it will be great help if you provide some POC ASAP.

 

Thanks & Regards,

Prashanthi.M

 

From: Waines, Greg <Greg.Waines@windriver.com>
Sent: Wednesday, April 19, 2023 8:29 PM
To: Gao, Litao <Litao.Gao@windriver.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>; Schwager, Udi <Udi.Schwager@windriver.com>; StarlingX ML <starlingx-discuss@lists.starlingx.io>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

TCS Confidential

 

"External email. Open with Caution"

+ starlingx-discuss

 

From: Gao, Litao <Litao.Gao@windriver.com>
Sent: Wednesday, April 19, 2023 5:25 AM
To: Waines, Greg <Greg.Waines@windriver.com>; Prashanthi Moligi <prashanthi.moligi@tcs.com>; Schwager, Udi <Udi.Schwager@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

Hi Prashanthi,

 

MEC services/app is supposed to be run as a standard k8s workload in pod (deployment, service, etc), you can launch your via kubectl, helmchart, or other ways available on k8s.

And the GPU, High speed NIC, or accelerator support are available in StarlingX which may be used by MEC application.

 

As I know, there is no publicly announced MEC applications running on StarlingX, but as I can see it is capable to carry the MEC workload you mentioned.

 

And as Greg pointed, we have many commercial solutions for 5G vRAN solutions.

 

Best Regards,

Litao


Wind River

 

 

From: Waines, Greg <Greg.Waines@windriver.com>
Sent: Tuesday, April 18, 2023 7:03 PM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Gao, Litao <Litao.Gao@windriver.com>; Schwager, Udi <Udi.Schwager@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

+ Udi as well … he might be the proper contact for ORAN on StarlingX.

Greg.

 

From: Waines, Greg
Sent: Tuesday, April 18, 2023 7:03 AM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Gao, Litao <Litao.Gao@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>; Geary, Stephen (Steve) <Steve.Geary@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

There are commercial solutions for 5G RAN solutions from companies like Samsung that can run on StarlingX.

 

There is also work on open ran ORAN solutions running on StarlingX.

I have added Litao Gao to TO list.  He may be able to provide pointers to you on how to get and run ORAN on StarlingX.

 

Greg.

 

From: Prashanthi Moligi <prashanthi.moligi@tcs.com>
Sent: Tuesday, April 18, 2023 12:03 AM
To: Waines, Greg <Greg.Waines@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

CAUTION: This email comes from a non Wind River email account!
Do not click links or open attachments unless you recognize the sender and know the content is safe.

TCS Confidential

 

Hi Greg,

 

Thanks for quick reply.

 

Yes Greg, MEC I meant “computing capabilities at the edge of the mobile network, within the Radio Access Network (RAN) and in close proximity to mobile subscribers.”

 

Dose starlingX platform supports to run MEC services or applications?

Do we have any MEC applications available with starlingX, like we have in Akarino blueprints (Ex: 5G cloud Gaming, HD video, Live broadcasting)?

If yes, I want to bring up starlingX platform ASAP, for that I need your support, if possible can we have one teams call and discuss about bring up issues.

 

 

Thanks,

Prashanthi.

 

From: Waines, Greg <Greg.Waines@windriver.com>
Sent: Monday, April 17, 2023 4:25 PM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

TCS Confidential

 

"External email. Open with Caution"

See in-lined responses below,

Greg.

 

From: Prashanthi Moligi <prashanthi.moligi@tcs.com>
Sent: Monday, April 17, 2023 1:57 AM
To: Waines, Greg <Greg.Waines@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

CAUTION: This email comes from a non Wind River email account!
Do not click links or open attachments unless you recognize the sender and know the content is safe.

TCS Confidential

 

Hi  Greg,

 

Yes, we were able to get internet connectivity by running DHCP client command, IP is also getting allocate.

Thanks for your support and working on further configurations.

 

Have few doubts about that:

 

  1. Are all the configurations mandatory, For example I want to run my containers on Kubernetes, is openstack configurations has to be done or optional??
    [Greg]  OpenStack is optional.
                  There are many users of StarlingX that only use the base StarlingX Kubernetes Platform.
  2. After completing all setting, if I want run MEC services/applications how to run those containers in this server, do you have any applications available along with starlingX?
  3. Please share document, if you have any to configure MEC.
    [Greg] Are you referring to ? …   “MEC or Mobile edge Computing provides an IT service environment and cloud-computing capabilities at the edge of the mobile network, within the Radio Access Network (RAN) and in close proximity to mobile subscribers.”

    Greg.

 

Thanks,

Prashanthi.M

 

From: Waines, Greg <Greg.Waines@windriver.com>
Sent: Sunday, April 16, 2023 6:25 PM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

TCS Confidential

 

"External email. Open with Caution"

Any luck ?

Greg.

 

From: Waines, Greg
Sent: Thursday, April 13, 2023 9:07 AM
To: Prashanthi Moligi <prashanthi.moligi@tcs.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>; Khalil, Ghada <Ghada.Khalil@windriver.com>; Thothadri, Ram <Ram.Thothadri@windriver.com>
Subject: RE: Need support for starlingX 8 setup bring up.

 

Hey Prashanthi,

 

Before I try to find someone to work closely with you on this … can you try the following solutions.

 

 

So, you say that your ISO install completes and you are able to login as ‘sysadmin’  (initial password is ‘sysadmin’ and you are forced to change it).

But then you have no IP connectivity.

 

So I learned that automatic DHCP does not seem to be working with our DEBIAN loads (STX 8.0)

 

So two options for you to try:

 

  • Run ‘dhclient’ manually
    • RUN THE FOLLOWING:
      • sudo dhclient <ifname>
      •  
      • WHERE <ifname> is the linux interface name of the interface that is physically cabled to a router that gives you internet access
  • OR
  • Configure IP Address and Default IP Route manually
    • RUN THE FOLLOWING:
      • sudo ip address add <IP-ADDRESS>/<SUBNET-LENGTH> dev <PORT>
      • sudo ip link set up dev <PORT>
      • sudo ip route add default via <GATEWAY-IP-ADDRESS> dev <PORT>
      • ping 8.8.8.8
      •  
      • WHERE <PORT> is the linux interface name of the interface that is physically cabled to a router that gives you internet accdess
                      <IP-ADDRESS>/<SUBNET-LENGTH> is the IP ADDRESS for your server (i.e. StarlingX controller-0) based on your local addressing plan
                      <GATEWAY-IP-ADDRESS> is the IP ADDRESS of your adjacent router.

 

Let me know if that works first,

Greg.

 

 

 

From: Prashanthi Moligi <prashanthi.moligi@tcs.com>
Sent: Thursday, April 13, 2023 2:17 AM
To: Waines, Greg <Greg.Waines@windriver.com>; Subramanian, Ramaswamy <Ramaswamy.Subramanian@windriver.com>
Cc: Nidhi Tomar <nidhi.tomar1@tcs.com>; Meghana S <s.meghana10@tcs.com>; Naga Sushma Gandrothu <g.nagasushma@tcs.com>
Subject: Need support for starlingX 8 setup bring up.

 

CAUTION: This email comes from a non Wind River email account!
Do not click links or open attachments unless you recognize the sender and know the content is safe.

TCS Confidential

 

Hi Greg,

 

       Thanks for your suggestion in yesterday’s meeting.

       As we discussed in meeting can you please give me one POC name who can help me to bring up StarlingX 8 in my internal PC. I got struck at IP assignment part from long time, I want to bring this up setup ASAP, so your quick support will be helpful.

 

Thanks & Regards,

Prashanthi.

 

TCS Confidential

=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain
confidential or privileged information. If you are
not the intended recipient, any dissemination, use,
review, distribution, printing or copying of the
information contained in this e-mail message
and/or attachments to it are strictly prohibited. If
you have received this communication in error,
please notify us by reply e-mail or telephone and
immediately and permanently delete the message
and any attachments. Thank you

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential

 

TCS Confidential


TCS Confidential