12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package inet.examples.ospfv2.simpletest;
- import inet.common.lifecycle.LifecycleController;
- import inet.common.misc.ThruputMeteringChannel;
- import inet.common.scenario.ScenarioManager;
- import inet.linklayer.ethernet.EtherHub;
- import inet.networklayer.configurator.ipv4.IPv4NetworkConfigurator;
- import inet.node.inet.StandardHost;
- import inet.node.ospfv2.OSPFRouter;
- network SimpleTest
- {
- parameters:
- @display("p=10,10;b=712,152");
- types:
- channel C extends ThruputMeteringChannel
- {
- delay = 0.1us;
- datarate = 100Mbps;
- thruputDisplayFormat = "#N";
- }
- submodules:
- H1: StandardHost {
- parameters:
- @display("p=56,92;i=device/laptop");
- gates:
- ethg[1];
- }
- N1: EtherHub {
- parameters:
- @display("p=184,92");
- gates:
- ethg[2];
- }
- R1: OSPFRouter {
- parameters:
- @display("p=296,92");
- hasStatus = true;
- gates:
- ethg[2];
- }
- R2: OSPFRouter {
- parameters:
- @display("p=416,92");
- hasStatus = true;
- gates:
- ethg[2];
- }
- N2: EtherHub {
- parameters:
- @display("p=532,92");
- gates:
- ethg[2];
- }
- H2: StandardHost {
- parameters:
- @display("p=660,92;i=device/laptop");
- gates:
- ethg[1];
- }
- configurator: IPv4NetworkConfigurator {
- parameters:
- config = xml("<config>"+
- "<interface among='H1 R1' address='192.168.1.x' netmask='255.255.255.0' />"+
- "<interface among='H2 R2' address='192.168.2.x' netmask='255.255.255.0' />"+
- "<interface among='R1 R2' address='192.168.60.x' netmask='255.255.255.0' />"+
- "<route hosts='H1 H2' destination='*' netmask='0.0.0.0' interface='eth0' />"+
- "</config>");
- addStaticRoutes = false;
- addDefaultRoutes = false;
- @display("p=75,43");
- }
- scenarioManager: ScenarioManager {
- @display("p=75,43");
- }
- lifecycleController: LifecycleController {
- @display("p=208,43");
- }
- connections:
- H1.ethg[0] <--> C <--> N1.ethg[0];
- N1.ethg[1] <--> C <--> R1.ethg[0];
- R1.ethg[1] <--> C <--> R2.ethg[0];
- R2.ethg[1] <--> C <--> N2.ethg[0];
- N2.ethg[1] <--> C <--> H2.ethg[0];
- }
|