Skip to content

Commit 09af21e

Browse files
committed
Upf,Pgw,etc: gate rename: filterGate -> dnPppg
The "filterGate" is actually a PPP port (hence "pppg") that connects to the Internet, or in general, to the Data Network ("dn") in 3GPP terminology.
1 parent 5bbb8e2 commit 09af21e

28 files changed

Lines changed: 31 additions & 31 deletions

emulation/extclientserver/ExtClientServerExample.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ network ExtClientServerExample
6565
@display("p=671,432;is=vl");
6666
}
6767
connections allowunconnected:
68-
router.pppg++ <--> Eth10G <--> upf.filterGate;
68+
router.pppg++ <--> Eth10G <--> upf.dnPppg;
6969
upf.pppg++ <--> Eth10G <--> gnb.ppp;
7070
}

emulation/extclientserver_bgTraffic/ExtClientServer_bgCells.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ network ExtClientServer_bgCells
7070
}
7171

7272
connections allowunconnected:
73-
router.pppg++ <--> Eth10G <--> upf.filterGate;
73+
router.pppg++ <--> Eth10G <--> upf.dnPppg;
7474
upf.pppg++ <--> Eth10G <--> gnb.ppp;
7575
}

emulation/extserver/ExtServerExample.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ network ExtServerExample
7070
@display("p=671,432;is=vl");
7171
}
7272
connections allowunconnected:
73-
router.pppg++ <--> Eth10G <--> upf.filterGate;
73+
router.pppg++ <--> Eth10G <--> upf.dnPppg;
7474
upf.pppg++ <--> Eth10G <--> gnb.ppp;
7575
}

emulation/mec/extMecApp/ExtMecAppExample.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ network ExtMecAppExample
8484

8585
//# mec
8686
mecHost1.ppp++ <--> Eth10G <--> iUpf.pppg++;
87-
upf.filterGate <--> Eth10G <--> ualcmp.ppp++;
87+
upf.dnPppg <--> Eth10G <--> ualcmp.ppp++;
8888

8989
ualcmp.toMecOrchestrator --> mecOrchestrator.fromUALCMP;
9090
ualcmp.fromMecOrchestrator <-- mecOrchestrator.toUALCMP;

emulation/mec/extUeApp/ExtUeAppExample.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ network ExtUeAppExample
8484

8585
//# mec
8686
mecHost1.ppp++ <--> Eth10G <--> iUpf.pppg++;
87-
upf.filterGate <--> Eth10G <--> ualcmp.ppp++;
87+
upf.dnPppg <--> Eth10G <--> ualcmp.ppp++;
8888

8989
ualcmp.toMecOrchestrator --> mecOrchestrator.fromUALCMP;
9090
ualcmp.fromMecOrchestrator <-- mecOrchestrator.toUALCMP;

emulation/mec/extUeAppMecApp/ExtUeAppMecAppExample.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ network ExtUeAppMecAppExample
8484

8585
//# mec
8686
mecHost1.ppp++ <--> Eth10G <--> iUpf.pppg++;
87-
upf.filterGate <--> Eth10G <--> ualcmp.ppp++;
87+
upf.dnPppg <--> Eth10G <--> ualcmp.ppp++;
8888

8989
ualcmp.toMecOrchestrator --> mecOrchestrator.fromUALCMP;
9090
ualcmp.fromMecOrchestrator <-- mecOrchestrator.toUALCMP;

simulations/lte/cars/Highway.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ network Highway
7979

8080
connections allowunconnected:
8181
server.pppg++ <--> Eth10G <--> router.pppg++;
82-
router.pppg++ <--> Eth10G <--> pgw.filterGate;
82+
router.pppg++ <--> Eth10G <--> pgw.dnPppg;
8383
pgw.pppg++ <--> Eth10G <--> eNodeB1.ppp;
8484
pgw.pppg++ <--> Eth10G <--> eNodeB2.ppp;
8585

simulations/lte/networks/MultiCell.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ network MultiCell
7777
}
7878
connections:
7979
server.pppg++ <--> Eth10G <--> router.pppg++;
80-
router.pppg++ <--> Eth10G <--> pgw.filterGate;
80+
router.pppg++ <--> Eth10G <--> pgw.dnPppg;
8181
pgw.pppg++ <--> Eth10G <--> eNodeB1.ppp;
8282
pgw.pppg++ <--> Eth10G <--> eNodeB2.ppp;
8383

simulations/lte/networks/MultiCell_D2DMultihop.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ network MultiCell_D2DMultihop
121121
router3.pppg++ <--> Eth10G <--> pgw.pppg++;
122122
router4.pppg++ <--> Eth10G <--> pgw.pppg++;
123123
router5.pppg++ <--> Eth10G <--> pgw.pppg++;
124-
router.pppg++ <--> Eth10G <--> pgw.filterGate;
124+
router.pppg++ <--> Eth10G <--> pgw.dnPppg;
125125
server.pppg++ <--> Eth10G <--> router.pppg++;
126126
}

simulations/lte/networks/MultiCell_X2Mesh.ned

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ network MultiCell_X2Mesh
8686
}
8787
connections:
8888

89-
server.pppg++ <--> Eth10G <--> pgw.filterGate;
89+
server.pppg++ <--> Eth10G <--> pgw.dnPppg;
9090
pgw.pppg++ <--> Eth10G <--> router1.pppg++;
9191
pgw.pppg++ <--> Eth10G <--> router2.pppg++;
9292
pgw.pppg++ <--> Eth10G <--> router3.pppg++;

0 commit comments

Comments
 (0)