Skip to content

Commit

Permalink
add localhost to whilelist and comment out agents from release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jupeti10 committed Nov 13, 2017
1 parent 41328b1 commit bfc1e7c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion O-MI Node/html/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0
0.10.0
34 changes: 17 additions & 17 deletions O-MI Node/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -99,16 +99,16 @@ omi-service {
# (Response for receiving a subscription.)
# Static IP configuration for the listed is recommended for security reasons.
input-whitelist-ips=[
#"127.0.0.1",
#"0:0:0:0:0:0:0:1"
"127.0.0.1",
"0:0:0:0:0:0:0:1"
]

# Allow a whole subnet for writing new data
input-whitelist-subnets= [
# Format:
#network ip/mask's length
"127.0.0.0/8",
"0:0:0:0:0:0:0:0/48"
#network ip/mask's length
#"127.0.0.0/8",
#"0:0:0:0:0:0:0:0/48"
]

# Federation login based authorization (SAML)
Expand Down Expand Up @@ -145,18 +145,18 @@ agent-system {
# "Objects/Service/Greeter" = "c"
# }
#}
{
name = "ParkingAgent"
class = "agents.parkingService.ParkingAgent"
language = "scala"
responsible = {
"Objects/ParkingService" = "w"
"Objects/ParkingService/FindParking" = "wc"
}
servicePath = "Objects/ParkingService"
parkingFacilitiesPath = "Objects/ParkingService/ParkingFacilities"
initialStateFile = "./configs/ParkingServiceOdf.xml"
}
#{
# name = "ParkingAgent"
# class = "agents.parkingService.ParkingAgent"
# language = "scala"
# responsible = {
# "Objects/ParkingService" = "w"
# "Objects/ParkingService/FindParking" = "wc"
# }
# servicePath = "Objects/ParkingService"
# parkingFacilitiesPath = "Objects/ParkingService/ParkingFacilities"
# initialStateFile = "./configs/ParkingServiceOdf.xml"
#}

# Writes random generated values to target path on every interval.
# Test this agent if you are developing your own agents.
Expand Down

0 comments on commit bfc1e7c

Please sign in to comment.