Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
demx8as6 committed Dec 6, 2016
1 parent 166066d commit 244423d
Show file tree
Hide file tree
Showing 768 changed files with 310,209 additions and 1 deletion.
2 changes: 2 additions & 0 deletions 01-MWTN-PoC/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# CENTENNIAL
Microwave PoC Applications
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
# CENTENNIAL
Microwave PoC Applications
Microwave and Millimeterwave PoC Applications

## 03-WTP-PoC
Repository for the 3. ONF wireless transport project (WTP) proof of concept (PoC).

The PoC is sponsored by AT&T and hosed by a university in New York end of October 2016.

## Scope
The ONF Wireless Transport project group creates a Microwave/mmWave Transport Network extension to the ONF Core Model 1.1.
Such extension shall be implemented by an open source SDN Controller and microwave/millimeterwave devices and/or mediators between SDN-Controller and network elements.

The PoC will support the creation of an ONF Technical Recommendation (TR).
11 changes: 11 additions & 0 deletions code/Base_Mediator/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
*.D
*.o
*.so
*.a
*.project
*.cproject
dependencies
*.mk
*.d
.settings
.*.md.html
61 changes: 61 additions & 0 deletions code/Base_Mediator/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Makefile for SIL library top directory
#
# very top SIL directory

##################### LIBRARIES ########################
#
# DIRS:
# This is an ordered list
# Put only the directories that build object files in the list

# make all targets
DIRS = YUMA_modules/MicrowaveModel-ObjectClasses-AirInterface \
YUMA_modules/CoreModel-CoreNetworkModule-ObjectClasses \
YUMA_modules/MicrowaveModel-ObjectClasses-EthernetContainer \
YUMA_modules/MicrowaveModel-ObjectClasses-PureEthernetStructure \
YUMA_modules/MicrowaveModel-Notifications

#################### PLATFORM DEFINITIONS ############

all: silall

################################ MAKE RULES #################################
#

clean: silclean

superclean: silsuperclean

install: silinstall

silall: silclean
for dir in $(DIRS); do\
cd $$dir && $(MAKE) && cd ../..;\
done

silclean:
for dir in $(DIRS); do\
cd $$dir && $(MAKE) clean && cd ../..;\
done

silsuperclean:
for dir in $(DIRS); do\
cd $$dir && $(MAKE) superclean && cd ../..;\
done

silinstall:
for dir in $(DIRS); do\
cd $$dir && $(MAKE) install && cd ../..;\
done


.PHONY: all clean superclean install \
silall silclean silsuperclean silinstall


# prevent the make program from choking on all the symbols
# that get generated from autogenerated make rules
.NOEXPORT:



166 changes: 166 additions & 0 deletions code/Base_Mediator/POSTMAN_Scripts/Postman_collection_ToRegister.json

Large diffs are not rendered by default.

40 changes: 40 additions & 0 deletions code/Base_Mediator/POSTMAN_Scripts/Postman_environment.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"id": "1bb73b01-e475-98df-a9c2-e05e1d6299ce",
"name": "03-WTP-PoC",
"values": [
{
"key": "ODL_IP",
"value": "sendateodl",
"type": "text",
"enabled": true
},
{
"key": "ODL_Base_Mediator_Name",
"value": "base-mediator3",
"type": "text",
"enabled": true
},
{
"key": "Base_Mediator_IP",
"value": "192.168.2.125",
"type": "text",
"enabled": true
},
{
"key": "Base_Mediator_User",
"value": "compila",
"type": "text",
"enabled": true
},
{
"key": "Base_Mediator_UserPassword",
"value": "compila+",
"type": "text",
"enabled": true
}
],
"timestamp": 1475772604122,
"_postman_variable_scope": "environment",
"_postman_exported_at": "2016-10-06T16:52:06.415Z",
"_postman_exported_using": "Postman/4.7.2"
}

0 comments on commit 244423d

Please sign in to comment.