Changes between Version 7 and Version 8 of Tutorials/Optical/Mininet Optical Tutorial1
- Timestamp:
- Jul 27, 2022, 1:30:23 AM (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/Optical/Mininet Optical Tutorial1
v7 v8 99 99 {{{ 100 100 1553,30 nm 193,00 with bandwidth ~[192.95;193.05] Thz 101 This corresponds to channel 3 3in Mininet-Optical's default channel grid.101 This corresponds to channel 34 in Mininet-Optical's default channel grid. 102 102 }}} 103 103 … … 319 319 192.95THz..193.05THz has a middle frequency of 193.00 THz, which corresponds to channel C32 320 320 on Mininet-Optical's default 50GHz channel grid. 321 C1's middle frequency is 191 400 GHz, so C33 is at 191400 + 32*50 = 193000 GHz.322 323 We use curl to send a REST request to ROADM4 to add/drop ch3 3:324 {{{ 325 curl "localhost:8080/connect?node=roadm4&port1=4102&port2=4201&channels=3 3"326 curl "localhost:8080/connect?node=roadm4&port1=5101&port2=5202&channels=3 3"321 C1's middle frequency is 191350 GHz, so C34 is at 191350 + 33*50 = 193000 GHz. 322 323 We use curl to send a REST request to ROADM4 to add/drop ch34: 324 {{{ 325 curl "localhost:8080/connect?node=roadm4&port1=4102&port2=4201&channels=34" 326 curl "localhost:8080/connect?node=roadm4&port1=5101&port2=5202&channels=34" 327 327 }}} 328 328 … … 333 333 8. Add Connection “Towards ToR 2” with I/O Port 5101/5202 334 334 335 We use curl to send a REST request to ROADM4 to add/drop ch3 3:336 {{{ 337 curl "localhost:8080/connect?node=roadm1&port1=4102&port2=4201&channels=3 3"338 curl "localhost:8080/connect?node=roadm1&port1=5101&port2=5202&channels=3 3"335 We use curl to send a REST request to ROADM4 to add/drop ch34: 336 {{{ 337 curl "localhost:8080/connect?node=roadm1&port1=4102&port2=4201&channels=34" 338 curl "localhost:8080/connect?node=roadm1&port1=5101&port2=5202&channels=34" 339 339 }}} 340 340 … … 347 347 4. Add Connection “Towards ToR 1” with I/O Port 5101/5202 with bandwidth [192.95;193.05] 348 348 {{{ 349 curl "localhost:8080/connect?node=roadm4&port1=4102&port2=4201&channels=3 3"350 curl "localhost:8080/connect?node=roadm4&port1=5101&port2=5202&channels=3 3"349 curl "localhost:8080/connect?node=roadm4&port1=4102&port2=4201&channels=34" 350 curl "localhost:8080/connect?node=roadm4&port1=5101&port2=5202&channels=34" 351 351 }}} 352 352 … … 357 357 8. Add Connection “Through Out” with I/O Port 5101/5201 with bandwidth [192.95;193.05] 358 358 359 This time we pass channel 3 3through ROADM1:360 {{{ 361 curl "localhost:8080/connect?node=roadm1&port1=4101&port2=4201&channels=3 3"362 curl "localhost:8080/connect?node=roadm1&port1=5101&port2=5201&channels=3 3"359 This time we pass channel 34 through ROADM1: 360 {{{ 361 curl "localhost:8080/connect?node=roadm1&port1=4101&port2=4201&channels=34" 362 curl "localhost:8080/connect?node=roadm1&port1=5101&port2=5201&channels=34" 363 363 }}} 364 364 … … 371 371 And pass through ROADM2: 372 372 {{{ 373 curl "localhost:8080/connect?node=roadm2&port1=4101&port2=4201&channels=3 3"374 curl "localhost:8080/connect?node=roadm2&port1=5101&port2=5201&channels=3 3"373 curl "localhost:8080/connect?node=roadm2&port1=4101&port2=4201&channels=34" 374 curl "localhost:8080/connect?node=roadm2&port1=5101&port2=5201&channels=34" 375 375 }}} 376 376 … … 383 383 And we drop at ROADM3: 384 384 {{{ 385 curl "localhost:8080/connect?node=roadm3&port1=4102&port2=4201&channels=3 3"386 curl "localhost:8080/connect?node=roadm3&port1=5101&port2=5202&channels=3 3"385 curl "localhost:8080/connect?node=roadm3&port1=4102&port2=4201&channels=34" 386 curl "localhost:8080/connect?node=roadm3&port1=5101&port2=5202&channels=34" 387 387 }}} 388 388 … … 407 407 408 408 {{{ 409 curl "localhost:8080/connect?node=tor1ðPort=1&wdmPort=320&wdmInPort=321&channel=3 3"410 curl "localhost:8080/connect?node=tor2ðPort=2&wdmPort=290&wdmInPort=291&channel=3 3"411 curl "localhost:8080/connect?node=tor3ðPort=3&wdmPort=310&wdmInPort=311&channel=3 3"409 curl "localhost:8080/connect?node=tor1ðPort=1&wdmPort=320&wdmInPort=321&channel=34" 410 curl "localhost:8080/connect?node=tor2ðPort=2&wdmPort=290&wdmInPort=291&channel=34" 411 curl "localhost:8080/connect?node=tor3ðPort=3&wdmPort=310&wdmInPort=311&channel=34" 412 412 }}} 413 413