Discussion:
Traffic generation in ns3
yaqoob yaghoubi
2018-12-03 02:20:59 UTC
Permalink
I am trying to simulate voip, video and http in lte network, I want to ask
is it necessary to use an application such as onoff or bulk? when I use
onoff application and try to apply scheduler, the scheduler does not
working.
--
Posting to this group should follow these guidelines https://www.nsnam.org/wiki/Ns-3-users-guidelines-for-posting
---
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ns-3-users+***@googlegroups.com.
To post to this group, send email to ns-3-***@googlegroups.com.
Visit this group at https://groups.google.com/group/ns-3-users.
For more options, visit https://groups.google.com/d/optout.
'pdbarnes' via ns-3-users
2018-12-03 16:22:30 UTC
Permalink
Please read the listing guidelines. You haven’t provided enough information for anyone to understand your situation much less make a helpful suggestion. Also, please don’t cross post. One topic per thread helps everyone.

Peter
--
Posting to this group should follow these guidelines https://www.nsnam.org/wiki/Ns-3-users-guidelines-for-posting
---
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ns-3-users+***@googlegroups.com.
To post to this group, send email to ns-3-***@googlegroups.com.
Visit this group at https://groups.google.com/group/ns-3-users.
For more options, visit https://groups.google.com/d/optout.
yaqoob yaghoubi
2018-12-05 05:35:56 UTC
Permalink
thanks peter for ur comment. for instance the code bellow is a part of my
simulation which i am running. there is no application, only bearer
activation, but i get output. so is there any application running in ns3
background?


for(uint16_t i=0; i<30; i++){
enum EpsBearer::Qci q1 = EpsBearer::GBR_CONV_VOICE;
EpsBearer bearer1 (q1);
lteHelper->ActivateDataRadioBearer (ueDevices.Get(i), bearer1);

enum EpsBearer::Qci q2 = EpsBearer::GBR_CONV_VIDEO;
EpsBearer bearer2 (q2);
lteHelper->ActivateDataRadioBearer (ueDevices.Get(i), bearer2);

enum EpsBearer::Qci q3 = EpsBearer::GBR_GAMING;
EpsBearer bearer3 (q3);
lteHelper->ActivateDataRadioBearer (ueDevices.Get(i), bearer3);
}
Post by yaqoob yaghoubi
I am trying to simulate voip, video and http in lte network, I want to ask
is it necessary to use an application such as onoff or bulk? when I use
onoff application and try to apply scheduler, the scheduler does not
working.
--
Posting to this group should follow these guidelines https://www.nsnam.org/wiki/Ns-3-users-guidelines-for-posting
---
You received this message because you are subscribed to the Google Groups "ns-3-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ns-3-users+***@googlegroups.com.
To post to this group, send email to ns-3-***@googlegroups.com.
Visit this group at https://groups.google.com/group/ns-3-users.
For more options, visit https://groups.google.com/d/optout.
Loading...