content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
#!/usr/bin/python
#
# Copyright 2018-2021 Polyaxon, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
CREATED = "created"
UPDATED = "updated"
DELETED = "deleted"
PROMOTED = "promoted"
VIEWED = "viewed"
STATS = "stats"
CLONED = "cloned"
RESUMED = "resumed"
STARTED = "started"
RESTARTED = "restarted"
COPIED = "copied"
SUCCEEDED = "succeeded"
FAILED = "failed"
DONE = "done"
STOPPED = "stopped"
APPROVED = "approved"
INVALIDATED = "invalidated"
SKIPPED = "skipped"
SETTINGS = "settings"
BILLING = "billing"
NEW_STATUS = "new_status"
NEW_STAGE = "new_stage"
NEW_ARTIFACTS = "new_artifacts"
WRITE_ACTIONS = [
CREATED,
UPDATED,
DELETED,
RESUMED,
COPIED,
CLONED,
STOPPED,
APPROVED,
SETTINGS,
PROMOTED,
]
| created = 'created'
updated = 'updated'
deleted = 'deleted'
promoted = 'promoted'
viewed = 'viewed'
stats = 'stats'
cloned = 'cloned'
resumed = 'resumed'
started = 'started'
restarted = 'restarted'
copied = 'copied'
succeeded = 'succeeded'
failed = 'failed'
done = 'done'
stopped = 'stopped'
approved = 'approved'
invalidated = 'invalidated'
skipped = 'skipped'
settings = 'settings'
billing = 'billing'
new_status = 'new_status'
new_stage = 'new_stage'
new_artifacts = 'new_artifacts'
write_actions = [CREATED, UPDATED, DELETED, RESUMED, COPIED, CLONED, STOPPED, APPROVED, SETTINGS, PROMOTED] |
'''
09 - Facetting multiple regressions
lmplot() allows us to facet the data across multiple rows and columns.
In the previous plot, the multiple lines were difficult to read in one
plot. We can try creating multiple plots by Region to see if that is a
more useful visualization.
Instructions
- Use lmplot() to look at the relationship between insurance_losses and premiums.
- Create a plot for each Region of the country.
- Display the plots across multiple rows.
'''
# Create a regression plot with multiple rows
sns.lmplot(data=df,
x="insurance_losses",
y="premiums",
row="Region")
# Show the plot
plt.show()
| """
09 - Facetting multiple regressions
lmplot() allows us to facet the data across multiple rows and columns.
In the previous plot, the multiple lines were difficult to read in one
plot. We can try creating multiple plots by Region to see if that is a
more useful visualization.
Instructions
- Use lmplot() to look at the relationship between insurance_losses and premiums.
- Create a plot for each Region of the country.
- Display the plots across multiple rows.
"""
sns.lmplot(data=df, x='insurance_losses', y='premiums', row='Region')
plt.show() |
def get_context_vars():
return {"entity_type": "user", "date": "2018-10-20", "batch_size": "daily"}
def get_metadata():
return {
"extractor": {"params": {"input_path": "user/p_year=2018/p_month=10/p_day=20"}, "name": "JSONExtractor"},
"transformers": [
{"params": {"exploded_elem_name": "friends_element", "path_to_array": "friends"}, "name": "Exploder"},
{"params": {"filter_expression": "average_stars >= 2.5"}, "name": "Sieve"},
{
"params": {"filter_expression": 'isnotnull(friends_element) and friends_element <> "None"'},
"name": "Sieve",
},
{
"params": {
"mapping": [
["user_id", "user_id", "StringType"],
["review_count", "review_count", "LongType"],
["average_stars", "average_stars", "DoubleType"],
["elite_years", "elite", "json_string"],
["friend", "friends_element", "StringType"],
]
},
"name": "Mapper",
},
{"params": {"thresholds": {"average_stars": {"max": 5, "min": 1}}}, "name": "ThresholdCleaner"},
{"params": {"group_by": ["user_id", "friend"], "order_by": ["review_count"]}, "name": "NewestByGroup"},
],
"context_variables": {
"pipeline_type": "batch",
"entity_type": "user",
"value_ranges": {"average_stars": {"max": 5, "min": 1}},
"level_of_detail": "std",
"level_of_detail_int": 5,
"mapping": [
{
"target_type": "StringType",
"triviality": 1,
"name": "user_id",
"desc": "22 character unique user id, maps to the user in user.json",
},
{
"path": "name",
"target_type": "StringType",
"has_pii": "yes",
"name": "first_name",
"desc": "the user's first name - anonymized",
},
{
"target_type": "LongType",
"triviality": 1,
"name": "review_count",
"desc": "the number of reviews they've written",
},
{
"target_type": "StringType",
"name": "yelping_since",
"desc": "when the user joined Yelp, formatted like YYYY-MM-DD",
},
{
"target_type": "DoubleType",
"triviality": 1,
"name": "average_stars",
"desc": "average rating of all reviews",
},
{
"path": "elite",
"target_type": "json_string",
"triviality": 5,
"name": "elite_years",
"desc": "the years the user was elite",
},
{
"path": "friends_element",
"target_type": "StringType",
"triviality": 1,
"name": "friend",
"desc": "the user's friend as user_ids",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "useful",
"desc": "number of useful votes sent by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "funny",
"desc": "number of funny votes sent by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "cool",
"desc": "number of cool votes sent by the user",
},
{"target_type": "LongType", "name": "fans", "desc": "number of fans the user has"},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_hot",
"desc": "number of hot compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_more",
"desc": "number of more compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_profile",
"desc": "number of profile compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_cute",
"desc": "number of cute compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_list",
"desc": "number of list compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_note",
"desc": "number of note compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_plain",
"desc": "number of plain compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_cool",
"desc": "number of cool compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_funny",
"desc": "number of funny compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_writer",
"desc": "number of writer compliments received by the user",
},
{
"target_type": "LongType",
"triviality": 10,
"name": "compliment_photos",
"desc": "number of photo compliments received by the user",
},
],
"batch_size": "daily",
"time_range": "last_day",
"filter_expressions": ["average_stars >= 2.5", 'isnotnull(friends_element) and friends_element <> "None"'],
"output": {
"partition_definitions": [
{"column_name": "p_year"},
{"column_name": "p_month"},
{"column_name": "p_day"},
],
"locality": "internal",
"repartition_size": 10,
"format": "table",
},
"date": "2018-10-20",
"input": {"locality": "internal", "container": "text", "base_path": "user", "format": "json"},
"schema": {
"arrays_to_explode": ["friends"],
"grouping_keys": ["user_id", "friend"],
"needs_deduplication": "yes",
"sorting_keys": ["review_count"],
},
},
"loader": {
"params": {
"auto_create_table": True,
"partition_definitions": [
{"default_value": 2018, "column_type": "IntegerType", "column_name": "p_year"},
{"default_value": 10, "column_type": "IntegerType", "column_name": "p_month"},
{"default_value": 20, "column_type": "IntegerType", "column_name": "p_day"},
],
"overwrite_partition_value": True,
"repartition_size": 10,
"clear_partition": True,
"db_name": "user",
"table_name": "users_daily_partitions",
},
"name": "HiveLoader",
},
}
| def get_context_vars():
return {'entity_type': 'user', 'date': '2018-10-20', 'batch_size': 'daily'}
def get_metadata():
return {'extractor': {'params': {'input_path': 'user/p_year=2018/p_month=10/p_day=20'}, 'name': 'JSONExtractor'}, 'transformers': [{'params': {'exploded_elem_name': 'friends_element', 'path_to_array': 'friends'}, 'name': 'Exploder'}, {'params': {'filter_expression': 'average_stars >= 2.5'}, 'name': 'Sieve'}, {'params': {'filter_expression': 'isnotnull(friends_element) and friends_element <> "None"'}, 'name': 'Sieve'}, {'params': {'mapping': [['user_id', 'user_id', 'StringType'], ['review_count', 'review_count', 'LongType'], ['average_stars', 'average_stars', 'DoubleType'], ['elite_years', 'elite', 'json_string'], ['friend', 'friends_element', 'StringType']]}, 'name': 'Mapper'}, {'params': {'thresholds': {'average_stars': {'max': 5, 'min': 1}}}, 'name': 'ThresholdCleaner'}, {'params': {'group_by': ['user_id', 'friend'], 'order_by': ['review_count']}, 'name': 'NewestByGroup'}], 'context_variables': {'pipeline_type': 'batch', 'entity_type': 'user', 'value_ranges': {'average_stars': {'max': 5, 'min': 1}}, 'level_of_detail': 'std', 'level_of_detail_int': 5, 'mapping': [{'target_type': 'StringType', 'triviality': 1, 'name': 'user_id', 'desc': '22 character unique user id, maps to the user in user.json'}, {'path': 'name', 'target_type': 'StringType', 'has_pii': 'yes', 'name': 'first_name', 'desc': "the user's first name - anonymized"}, {'target_type': 'LongType', 'triviality': 1, 'name': 'review_count', 'desc': "the number of reviews they've written"}, {'target_type': 'StringType', 'name': 'yelping_since', 'desc': 'when the user joined Yelp, formatted like YYYY-MM-DD'}, {'target_type': 'DoubleType', 'triviality': 1, 'name': 'average_stars', 'desc': 'average rating of all reviews'}, {'path': 'elite', 'target_type': 'json_string', 'triviality': 5, 'name': 'elite_years', 'desc': 'the years the user was elite'}, {'path': 'friends_element', 'target_type': 'StringType', 'triviality': 1, 'name': 'friend', 'desc': "the user's friend as user_ids"}, {'target_type': 'LongType', 'triviality': 10, 'name': 'useful', 'desc': 'number of useful votes sent by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'funny', 'desc': 'number of funny votes sent by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'cool', 'desc': 'number of cool votes sent by the user'}, {'target_type': 'LongType', 'name': 'fans', 'desc': 'number of fans the user has'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_hot', 'desc': 'number of hot compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_more', 'desc': 'number of more compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_profile', 'desc': 'number of profile compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_cute', 'desc': 'number of cute compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_list', 'desc': 'number of list compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_note', 'desc': 'number of note compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_plain', 'desc': 'number of plain compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_cool', 'desc': 'number of cool compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_funny', 'desc': 'number of funny compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_writer', 'desc': 'number of writer compliments received by the user'}, {'target_type': 'LongType', 'triviality': 10, 'name': 'compliment_photos', 'desc': 'number of photo compliments received by the user'}], 'batch_size': 'daily', 'time_range': 'last_day', 'filter_expressions': ['average_stars >= 2.5', 'isnotnull(friends_element) and friends_element <> "None"'], 'output': {'partition_definitions': [{'column_name': 'p_year'}, {'column_name': 'p_month'}, {'column_name': 'p_day'}], 'locality': 'internal', 'repartition_size': 10, 'format': 'table'}, 'date': '2018-10-20', 'input': {'locality': 'internal', 'container': 'text', 'base_path': 'user', 'format': 'json'}, 'schema': {'arrays_to_explode': ['friends'], 'grouping_keys': ['user_id', 'friend'], 'needs_deduplication': 'yes', 'sorting_keys': ['review_count']}}, 'loader': {'params': {'auto_create_table': True, 'partition_definitions': [{'default_value': 2018, 'column_type': 'IntegerType', 'column_name': 'p_year'}, {'default_value': 10, 'column_type': 'IntegerType', 'column_name': 'p_month'}, {'default_value': 20, 'column_type': 'IntegerType', 'column_name': 'p_day'}], 'overwrite_partition_value': True, 'repartition_size': 10, 'clear_partition': True, 'db_name': 'user', 'table_name': 'users_daily_partitions'}, 'name': 'HiveLoader'}} |
# ------------------------------------
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# ------------------------------------
VERSION = "11.1.1" # type: str
SDK_MONIKER = "search-documents/{}".format(VERSION) # type: str
| version = '11.1.1'
sdk_moniker = 'search-documents/{}'.format(VERSION) |
class Solution:
def lastStoneWeight(self, stones: List[int]) -> int:
stones.sort()
while len(stones) > 1:
first = stones.pop()
second = stones.pop()
if first == second:
continue
else:
diff = first - second
done = True
for i in range(len(stones)):
if diff <= stones[i]:
stones.insert(i, diff)
done = False
break
if done:
stones.append(diff)
return len(stones) == 1 and stones[0] or 0
| class Solution:
def last_stone_weight(self, stones: List[int]) -> int:
stones.sort()
while len(stones) > 1:
first = stones.pop()
second = stones.pop()
if first == second:
continue
else:
diff = first - second
done = True
for i in range(len(stones)):
if diff <= stones[i]:
stones.insert(i, diff)
done = False
break
if done:
stones.append(diff)
return len(stones) == 1 and stones[0] or 0 |
B = [['m', 'm', '_', '_', '_'],
['m', 'm', '_', '_', '_'],
['_', '_', 'm', '_', '_']]
M = len(B); N = len(B[0])
answer = []
for row in range(M):
new_row = []
for column in range(N):
if B[row][column]=='m':
new_row.append('m')
else:
mine_number=0
if row>0 and B[row-1][column]=='m': #N
mine_number+=1
if row<(M-1) and B[row+1][column]=='m': #S
mine_number+=1
if column<(N-1) and B[row][column+1]=='m': #E
mine_number+=1
if column>0 and B[row][column-1]=='m': #W
mine_number+=1
new_row.append(mine_number)
answer.append(new_row)
print(answer)
| b = [['m', 'm', '_', '_', '_'], ['m', 'm', '_', '_', '_'], ['_', '_', 'm', '_', '_']]
m = len(B)
n = len(B[0])
answer = []
for row in range(M):
new_row = []
for column in range(N):
if B[row][column] == 'm':
new_row.append('m')
else:
mine_number = 0
if row > 0 and B[row - 1][column] == 'm':
mine_number += 1
if row < M - 1 and B[row + 1][column] == 'm':
mine_number += 1
if column < N - 1 and B[row][column + 1] == 'm':
mine_number += 1
if column > 0 and B[row][column - 1] == 'm':
mine_number += 1
new_row.append(mine_number)
answer.append(new_row)
print(answer) |
# DUNDER METHODS IS METHODS WITH __example___
class Number:
def __init__(self, num):
self.num = num
def __add__(self, num2):
print("lets add")
return self.num + num2.num
def __mul__(self, num2):
print("lets multiply")
return self.num * num2.num
def __str__(self):
return f"Decimal Number: {self.num}"
def __len__(self):
return 1
n1 = Number(4)
n2 = Number(6)
sum = n1 + n2
mul = n1 * n2
print(sum)
print(mul)
# OTHER DUNDER METHODS LIKE STR
n= Number(9)
print(n)
print("the len is ", len(n)) | class Number:
def __init__(self, num):
self.num = num
def __add__(self, num2):
print('lets add')
return self.num + num2.num
def __mul__(self, num2):
print('lets multiply')
return self.num * num2.num
def __str__(self):
return f'Decimal Number: {self.num}'
def __len__(self):
return 1
n1 = number(4)
n2 = number(6)
sum = n1 + n2
mul = n1 * n2
print(sum)
print(mul)
n = number(9)
print(n)
print('the len is ', len(n)) |
def dfs(i):
if visited[i]:
return
visited[i] = 1
for nbr in graph[i]:
dfs(nbr)
n,e = map(int,input().split())
graph = dict()
visited = [0 for i in range(n+1)]
for i in range(1,n+1):
graph[i] = []
for i in range(e):
u,v = map(int,input().split())
graph[u].append(v)
graph[v].append(u)
components = 1
for i in range(1,n+1):
if not visited[i]:
components += 1
dfs(i)
print(components)
| def dfs(i):
if visited[i]:
return
visited[i] = 1
for nbr in graph[i]:
dfs(nbr)
(n, e) = map(int, input().split())
graph = dict()
visited = [0 for i in range(n + 1)]
for i in range(1, n + 1):
graph[i] = []
for i in range(e):
(u, v) = map(int, input().split())
graph[u].append(v)
graph[v].append(u)
components = 1
for i in range(1, n + 1):
if not visited[i]:
components += 1
dfs(i)
print(components) |
class Repeater:
def __init__(self, value):
self.value = value
def __iter__(self):
return RepeaterIterator(self)
class RepeaterIterator:
def __init__(self, source):
self.source = source
def __next__(self):
return self.source.value
| class Repeater:
def __init__(self, value):
self.value = value
def __iter__(self):
return repeater_iterator(self)
class Repeateriterator:
def __init__(self, source):
self.source = source
def __next__(self):
return self.source.value |
#### Init
service_domain = data.get('service_domain')
service = data.get('service')
service_data_increase = data.get('service_data_increase')
service_data_decrease = data.get('service_data_decrease')
# fan speed data
speed = data.get('fan_speed')
speed_count = data.get('fan_speed_count')
fan_speed_entity = hass.states.get(data.get('fan_speed_entity_id'))
fan_entity = hass.states.get(data.get('fan_entity_id'))
logger.debug('<fan_speed_control> fan state ({})'.format(fan_entity.state))
logger.debug('<fan_speed_control> Received fan speed from ({}) to ({})'.format(fan_speed_entity.state, speed))
### def
def check_speed(logger, speed):
if speed is None:
logger.warning('<fan_speed_control> Received fan speed is invalid (None)')
return False
if fan_entity.state is 'off':
logger.warning('<fan_speed_control> can not change speed when fan is off')
return False
return True
### Run
if check_speed(logger, speed):
speed_step = 100 // speed_count
target_speed = int(speed) // speed_step
last_speed = int(fan_speed_entity.state) // speed_step if fan_speed_entity.state else 1
speed_max = speed_count
if target_speed > last_speed:
increase_loop = target_speed - last_speed
decrease_loop = last_speed + speed_max - target_speed
else:
increase_loop = target_speed + speed_max - last_speed
decrease_loop = last_speed - target_speed
# check use increase or decrease
if decrease_loop < increase_loop:
loop = decrease_loop
service_data = service_data_decrease
else:
loop = increase_loop
service_data = service_data_increase
# update speed state
hass.states.set(data.get('fan_speed_entity_id'), speed)
# Call service
if data.get('support_num_repeats', False):
service_data['num_repeats'] = loop
logger.debug('<fan_speed_control> call service ({}.{}) {}'.format(service_domain, service, service_data))
hass.services.call(service_domain, service, service_data)
else:
for i in range(loop):
logger.debug('<fan_speed_control> call service ({}.{}) {}'.format(service_domain, service, service_data))
result = hass.services.call(service_domain, service, service_data)
time.sleep(0.75)
elif fan_entity.state is not 'off' and speed == 'off':
logger.debug('<fan_speed_control> call fan off')
hass.services.call('fan', 'turn_off', {
'entity_id': data.get('fan_entity_id')
})
| service_domain = data.get('service_domain')
service = data.get('service')
service_data_increase = data.get('service_data_increase')
service_data_decrease = data.get('service_data_decrease')
speed = data.get('fan_speed')
speed_count = data.get('fan_speed_count')
fan_speed_entity = hass.states.get(data.get('fan_speed_entity_id'))
fan_entity = hass.states.get(data.get('fan_entity_id'))
logger.debug('<fan_speed_control> fan state ({})'.format(fan_entity.state))
logger.debug('<fan_speed_control> Received fan speed from ({}) to ({})'.format(fan_speed_entity.state, speed))
def check_speed(logger, speed):
if speed is None:
logger.warning('<fan_speed_control> Received fan speed is invalid (None)')
return False
if fan_entity.state is 'off':
logger.warning('<fan_speed_control> can not change speed when fan is off')
return False
return True
if check_speed(logger, speed):
speed_step = 100 // speed_count
target_speed = int(speed) // speed_step
last_speed = int(fan_speed_entity.state) // speed_step if fan_speed_entity.state else 1
speed_max = speed_count
if target_speed > last_speed:
increase_loop = target_speed - last_speed
decrease_loop = last_speed + speed_max - target_speed
else:
increase_loop = target_speed + speed_max - last_speed
decrease_loop = last_speed - target_speed
if decrease_loop < increase_loop:
loop = decrease_loop
service_data = service_data_decrease
else:
loop = increase_loop
service_data = service_data_increase
hass.states.set(data.get('fan_speed_entity_id'), speed)
if data.get('support_num_repeats', False):
service_data['num_repeats'] = loop
logger.debug('<fan_speed_control> call service ({}.{}) {}'.format(service_domain, service, service_data))
hass.services.call(service_domain, service, service_data)
else:
for i in range(loop):
logger.debug('<fan_speed_control> call service ({}.{}) {}'.format(service_domain, service, service_data))
result = hass.services.call(service_domain, service, service_data)
time.sleep(0.75)
elif fan_entity.state is not 'off' and speed == 'off':
logger.debug('<fan_speed_control> call fan off')
hass.services.call('fan', 'turn_off', {'entity_id': data.get('fan_entity_id')}) |
word = input()
while word != "Stop":
print(word)
word = input() | word = input()
while word != 'Stop':
print(word)
word = input() |
# -*- coding: utf-8 -*-
'''
File name: code\number_mind\sol_185.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
'''
# Solution to Project Euler Problem #185 :: Number Mind
#
# For more information see:
# https://projecteuler.net/problem=185
# Problem Statement
'''
The game Number Mind is a variant of the well known game Master Mind.
Instead of coloured pegs, you have to guess a secret sequence of digits. After each guess you're only told in how many places you've guessed the correct digit. So, if the sequence was 1234 and you guessed 2036, you'd be told that you have one correct digit; however, you would NOT be told that you also have another digit in the wrong place.
For instance, given the following guesses for a 5-digit secret sequence,
90342 ;2 correct
70794 ;0 correct
39458 ;2 correct
34109 ;1 correct
51545 ;2 correct
12531 ;1 correct
The correct sequence 39542 is unique.
Based on the following guesses,
5616185650518293 ;2 correct
3847439647293047 ;1 correct
5855462940810587 ;3 correct
9742855507068353 ;3 correct
4296849643607543 ;3 correct
3174248439465858 ;1 correct
4513559094146117 ;2 correct
7890971548908067 ;3 correct
8157356344118483 ;1 correct
2615250744386899 ;2 correct
8690095851526254 ;3 correct
6375711915077050 ;1 correct
6913859173121360 ;1 correct
6442889055042768 ;2 correct
2321386104303845 ;0 correct
2326509471271448 ;2 correct
5251583379644322 ;2 correct
1748270476758276 ;3 correct
4895722652190306 ;1 correct
3041631117224635 ;3 correct
1841236454324589 ;3 correct
2659862637316867 ;2 correct
Find the unique 16-digit secret sequence.
'''
# Solution
# Solution Approach
'''
'''
| """
File name: code
umber_mind\\sol_185.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
"""
"\nThe game Number Mind is a variant of the well known game Master Mind.\nInstead of coloured pegs, you have to guess a secret sequence of digits. After each guess you're only told in how many places you've guessed the correct digit. So, if the sequence was 1234 and you guessed 2036, you'd be told that you have one correct digit; however, you would NOT be told that you also have another digit in the wrong place.\n\nFor instance, given the following guesses for a 5-digit secret sequence,\n90342 ;2 correct\n70794 ;0 correct\n39458 ;2 correct\n34109 ;1 correct\n51545 ;2 correct\n12531 ;1 correct\nThe correct sequence 39542 is unique.\n\nBased on the following guesses,\n\n5616185650518293 ;2 correct\n3847439647293047 ;1 correct\n5855462940810587 ;3 correct\n9742855507068353 ;3 correct\n4296849643607543 ;3 correct\n3174248439465858 ;1 correct\n4513559094146117 ;2 correct\n7890971548908067 ;3 correct\n8157356344118483 ;1 correct\n2615250744386899 ;2 correct\n8690095851526254 ;3 correct\n6375711915077050 ;1 correct\n6913859173121360 ;1 correct\n6442889055042768 ;2 correct\n2321386104303845 ;0 correct\n2326509471271448 ;2 correct\n5251583379644322 ;2 correct\n1748270476758276 ;3 correct\n4895722652190306 ;1 correct\n3041631117224635 ;3 correct\n1841236454324589 ;3 correct\n2659862637316867 ;2 correct\n\nFind the unique 16-digit secret sequence.\n"
'\n' |
# Copyright 2020 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# generates fennel_rev0
revs = [0]
inas = [
('ina3221', '0x40:0', 'ppvar_sys', 7.7, 0.020, 'rem', True), # R91200
('ina3221', '0x40:1', 'vbat', 7.7, 0.020, 'rem', True), # R90819
('ina3221', '0x40:2', 'pp1800_h1', 1.8, 0.050, 'rem', True), # R90364
('ina3221', '0x41:0', 'ppvar_bl', 7.7, 0.100, 'rem', True), # R391
('ina3221', '0x41:1', 'pp1800_ec', 1.8, 0.050, 'rem', True), # R90366
('ina3221', '0x41:2', 'pp3300_ctp', 3.3, 0.020, 'rem', True), # R90475
('ina3221', '0x42:0', 'pp3300_h1', 3.3, 0.050, 'rem', True), # R90365
('ina3221', '0x42:1', 'pp3300_wlan', 3.3, 0.020, 'rem', True), # R91136
('ina3221', '0x42:2', 'pp1800_wlan', 1.8, 0.020, 'rem', True), # R91139
('ina3221', '0x43:0', 'pp3300_lcm', 3.3, 0.020, 'rem', True), # R90518
('ina3221', '0x43:1', 'pp5000_dram', 5.0, 0.020, 'rem', True), # R90649
('ina3221', '0x43:2', 'pp5000_pmic', 5.0, 0.020, 'rem', True), # R90558
('ina219', '0x44', 'pp3300_a', 3.3, 0.020, 'rem', True), # R90678
('ina219', '0x45', 'ppvar_usb_c0_vbus', 20.0, 0.020, 'rem', True), # R90538
('ina219', '0x46', 'pp1800_a', 1.8, 0.020, 'rem', True), # R90672
]
| revs = [0]
inas = [('ina3221', '0x40:0', 'ppvar_sys', 7.7, 0.02, 'rem', True), ('ina3221', '0x40:1', 'vbat', 7.7, 0.02, 'rem', True), ('ina3221', '0x40:2', 'pp1800_h1', 1.8, 0.05, 'rem', True), ('ina3221', '0x41:0', 'ppvar_bl', 7.7, 0.1, 'rem', True), ('ina3221', '0x41:1', 'pp1800_ec', 1.8, 0.05, 'rem', True), ('ina3221', '0x41:2', 'pp3300_ctp', 3.3, 0.02, 'rem', True), ('ina3221', '0x42:0', 'pp3300_h1', 3.3, 0.05, 'rem', True), ('ina3221', '0x42:1', 'pp3300_wlan', 3.3, 0.02, 'rem', True), ('ina3221', '0x42:2', 'pp1800_wlan', 1.8, 0.02, 'rem', True), ('ina3221', '0x43:0', 'pp3300_lcm', 3.3, 0.02, 'rem', True), ('ina3221', '0x43:1', 'pp5000_dram', 5.0, 0.02, 'rem', True), ('ina3221', '0x43:2', 'pp5000_pmic', 5.0, 0.02, 'rem', True), ('ina219', '0x44', 'pp3300_a', 3.3, 0.02, 'rem', True), ('ina219', '0x45', 'ppvar_usb_c0_vbus', 20.0, 0.02, 'rem', True), ('ina219', '0x46', 'pp1800_a', 1.8, 0.02, 'rem', True)] |
tx_zips = []
with open('../data/texas-zip-codes.csv', 'r') as fin:
reader = fin.readlines()
i = 0
for row in reader:
newrow = row.split(',')
state = newrow[4].strip('"')
if state == 'TX':
tx_zips.append(newrow[0].strip('"'))
i += 1
with open('tx-zips.txt', 'w') as fout:
for zipcode in tx_zips:
fout.write(zipcode + '\n')
| tx_zips = []
with open('../data/texas-zip-codes.csv', 'r') as fin:
reader = fin.readlines()
i = 0
for row in reader:
newrow = row.split(',')
state = newrow[4].strip('"')
if state == 'TX':
tx_zips.append(newrow[0].strip('"'))
i += 1
with open('tx-zips.txt', 'w') as fout:
for zipcode in tx_zips:
fout.write(zipcode + '\n') |
# Hello World program in Python
print("Python Dictionaries\n")
print("In Python dictionaries are written with curly brackets, and they have keys and values.\n")
# Create and print a dictionary:
thisdict = {
"name": "Alex",
"roll_number": "234566",
"passing_year": 1964
}
print(thisdict)
# You can access the items of a dictionary by referring to its key name:
x = thisdict["roll_number"]
print(x)
# There is also a method called get() that will give you the same result:
x = thisdict.get("roll_number")
print(x)
# You can change the value of a specific item by referring to its key name:
thisdict["passing_year"] = 2018
print(thisdict)
# You can loop through a dictionary by using a for loop.
# Print all key names in the dictionary, one by one:
for x in thisdict:
print(x)
# Print all values in the dictionary, one by one:
for x in thisdict:
print(thisdict[x])
# You can also use the values() function to return values of a dictionary:
for x in thisdict.values():
print(x)
# Loop through both keys and values, by using the items() function:
for x, y in thisdict.items():
print(x, y)
# Check if Key Exists:
if "name" in thisdict:
print("Yes, 'Name' is one of the keys in the thisdict dictionary")
# Adding an item to the dictionary is done by using a new index key and assigning a value to it:
thisdict["result"] = "70%"
print(thisdict)
# There are several methods to remove items from a dictionary:
# 1--The pop() method removes the item with the specified key name:
thisdict.pop("roll_number")
print(thisdict)
# in versions before 3.7, a random item is removed instead:
thisdict.popitem()
print(thisdict)
# 2--The del keyword removes the item with the specified key name:
del thisdict["name"]
print(thisdict)
# use the dict() constructor to make a dictionary:
thisdict = dict(name="Alex", roll_number="3456667", passing_year=1964)
print(thisdict)
| print('Python Dictionaries\n')
print('In Python dictionaries are written with curly brackets, and they have keys and values.\n')
thisdict = {'name': 'Alex', 'roll_number': '234566', 'passing_year': 1964}
print(thisdict)
x = thisdict['roll_number']
print(x)
x = thisdict.get('roll_number')
print(x)
thisdict['passing_year'] = 2018
print(thisdict)
for x in thisdict:
print(x)
for x in thisdict:
print(thisdict[x])
for x in thisdict.values():
print(x)
for (x, y) in thisdict.items():
print(x, y)
if 'name' in thisdict:
print("Yes, 'Name' is one of the keys in the thisdict dictionary")
thisdict['result'] = '70%'
print(thisdict)
thisdict.pop('roll_number')
print(thisdict)
thisdict.popitem()
print(thisdict)
del thisdict['name']
print(thisdict)
thisdict = dict(name='Alex', roll_number='3456667', passing_year=1964)
print(thisdict) |
def convert_token(token):
cursor = 0
converted_token = ''
while cursor < len(token):
if cursor > 0 and token[cursor].isupper() and token[cursor - 1] != '_':
converted_token += '_' + token[cursor].lower()
elif cursor > 0 and token[cursor - 1].isupper() and converted_token[-1].islower():
converted_token += token[cursor].lower()
else:
converted_token += token[cursor]
cursor += 1
return converted_token
filename = input('Digit input file: ')
input_file_content = open(filename).read()
output_file = open('.'.join(filename.split('.')[:-1]) + '_.' + filename.split('.')[-1], 'w')
cursor_1 = 0
cursor_2 = 0
valid = False
while cursor_2 < len(input_file_content):
if not valid and (input_file_content[cursor_2].isalpha() or input_file_content[cursor_2] == '_'):
cursor_1 = cursor_2
valid = True
elif valid and not (input_file_content[cursor_2].isalnum() or input_file_content[cursor_2] == '_'):
valid = False
token = input_file_content[cursor_1:cursor_2]
output_file.write(convert_token(token))
output_file.write(input_file_content[cursor_2])
elif not valid and not (input_file_content[cursor_2].isalpha() or input_file_content[cursor_2] == '_'):
output_file.write(input_file_content[cursor_2])
if input_file_content[cursor_2] == '\\':
cursor_2 += 1
output_file.write(input_file_content[cursor_2])
cursor_2 += 1
| def convert_token(token):
cursor = 0
converted_token = ''
while cursor < len(token):
if cursor > 0 and token[cursor].isupper() and (token[cursor - 1] != '_'):
converted_token += '_' + token[cursor].lower()
elif cursor > 0 and token[cursor - 1].isupper() and converted_token[-1].islower():
converted_token += token[cursor].lower()
else:
converted_token += token[cursor]
cursor += 1
return converted_token
filename = input('Digit input file: ')
input_file_content = open(filename).read()
output_file = open('.'.join(filename.split('.')[:-1]) + '_.' + filename.split('.')[-1], 'w')
cursor_1 = 0
cursor_2 = 0
valid = False
while cursor_2 < len(input_file_content):
if not valid and (input_file_content[cursor_2].isalpha() or input_file_content[cursor_2] == '_'):
cursor_1 = cursor_2
valid = True
elif valid and (not (input_file_content[cursor_2].isalnum() or input_file_content[cursor_2] == '_')):
valid = False
token = input_file_content[cursor_1:cursor_2]
output_file.write(convert_token(token))
output_file.write(input_file_content[cursor_2])
elif not valid and (not (input_file_content[cursor_2].isalpha() or input_file_content[cursor_2] == '_')):
output_file.write(input_file_content[cursor_2])
if input_file_content[cursor_2] == '\\':
cursor_2 += 1
output_file.write(input_file_content[cursor_2])
cursor_2 += 1 |
__author__ = 'fengyuyao'
class Template(object):
def __init__(self, source):
pass
def render(self, **kwargs):
pass
| __author__ = 'fengyuyao'
class Template(object):
def __init__(self, source):
pass
def render(self, **kwargs):
pass |
#
# PySNMP MIB module CNTAU-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CNTAU-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:09:32 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
iso, Counter64, MibIdentifier, ModuleIdentity, Counter32, Unsigned32, Integer32, Gauge32, NotificationType, enterprises, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, NotificationType, IpAddress, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "Counter64", "MibIdentifier", "ModuleIdentity", "Counter32", "Unsigned32", "Integer32", "Gauge32", "NotificationType", "enterprises", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "NotificationType", "IpAddress", "Bits")
DisplayString, PhysAddress, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "PhysAddress", "TextualConvention")
cnt = MibIdentifier((1, 3, 6, 1, 4, 1, 333))
cntau = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1))
cntsystem = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 1))
cntSysNodeAddress = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSysNodeAddress.setStatus('mandatory')
cntSysTimeofDay = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSysTimeofDay.setStatus('mandatory')
cntSysMsgTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 3), )
if mibBuilder.loadTexts: cntSysMsgTable.setStatus('mandatory')
cntMsgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1), ).setIndexNames((0, "CNTAU-MIB", "cntMsgIndex"))
if mibBuilder.loadTexts: cntMsgEntry.setStatus('mandatory')
cntMsgIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgIndex.setStatus('mandatory')
cntMsgSeverity = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("information-msg", 1), ("possible-error", 2), ("recoverable-error", 3), ("fatal-error", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgSeverity.setStatus('mandatory')
cntMsgTaskName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgTaskName.setStatus('mandatory')
cntMsgNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgNumber.setStatus('mandatory')
cntMsgCpuNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgCpuNumber.setStatus('mandatory')
cntMsgNodeNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgNodeNumber.setStatus('mandatory')
cntMsgDateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgDateTime.setStatus('mandatory')
cntMsgContent = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgContent.setStatus('mandatory')
cntMsgSeqNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMsgSeqNumber.setStatus('mandatory')
cntSysHardware = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 1, 4))
cntHwBBramType = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("bbram-6500", 1), ("bbram-6704", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwBBramType.setStatus('mandatory')
cntHwBBramStatus = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("good", 1), ("failing", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwBBramStatus.setStatus('mandatory')
cntHwFailedCpu = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("no-failure", 1), ("lcp-1", 2), ("lcp-2", 3), ("lcp-3", 4), ("lcp-4", 5), ("lcp-5", 6), ("lcp-6", 7), ("lcp-7", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwFailedCpu.setStatus('mandatory')
cntHwMonCpu = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("no-failure", 1), ("lcp-1", 2), ("lcp-2", 3), ("lcp-3", 4), ("lcp-4", 5), ("lcp-5", 6), ("lcp-6", 7), ("lcp-7", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwMonCpu.setStatus('mandatory')
cntHwFailStatus = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("not-up", 1), ("ok", 2), ("abort-switch", 3), ("abort-remote", 4), ("parity-error", 5), ("ac-failure", 6), ("system-failure", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwFailStatus.setStatus('mandatory')
cntHwMonFailStatus = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("not-up", 1), ("ok", 2), ("failed", 3), ("mdm-error", 4), ("poll-error", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwMonFailStatus.setStatus('mandatory')
cntHwFailDate = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwFailDate.setStatus('mandatory')
cntHwReset1Why = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwReset1Why.setStatus('mandatory')
cntHwReset1Date = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwReset1Date.setStatus('mandatory')
cntHwReset2Why = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 10), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwReset2Why.setStatus('mandatory')
cntHwReset2Date = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 11), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwReset2Date.setStatus('mandatory')
cntHwReset3Why = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwReset3Why.setStatus('mandatory')
cntHwReset3Date = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 13), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwReset3Date.setStatus('mandatory')
cntHwPowerSupply = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("good", 1), ("bad", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwPowerSupply.setStatus('mandatory')
cntHwCpuTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15), )
if mibBuilder.loadTexts: cntHwCpuTable.setStatus('mandatory')
cntHwCpuEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1), ).setIndexNames((0, "CNTAU-MIB", "cntCpuNum"))
if mibBuilder.loadTexts: cntHwCpuEntry.setStatus('mandatory')
cntCpuNum = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuNum.setStatus('mandatory')
cntCpuType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("no-cpu", 1), ("lcp-type1", 2), ("lcp-type2", 3), ("lcp-type3", 4), ("lcp-type4", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuType.setStatus('mandatory')
cntCpuSemCount = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuSemCount.setStatus('mandatory')
cntCpuSemLost = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuSemLost.setStatus('mandatory')
cntCpuStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("not-up", 1), ("ok", 2), ("abort-switch", 3), ("abort-remote", 4), ("parity-error", 5), ("ac-failure", 6), ("system-failure", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuStatus.setStatus('mandatory')
cntCpuMonStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("not-up", 1), ("ok", 2), ("failed", 3), ("mdm-error", 4), ("poll-error", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuMonStatus.setStatus('mandatory')
cntCpuPollStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("normal", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuPollStatus.setStatus('mandatory')
cntCpuPolls = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuPolls.setStatus('mandatory')
cntCpuResetDelayTime = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuResetDelayTime.setStatus('mandatory')
cntCpuMonBy = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuMonBy.setStatus('mandatory')
cntCpuPort = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuPort.setStatus('mandatory')
cntCpuUnclaims = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuUnclaims.setStatus('mandatory')
cntCpuXtraInts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuXtraInts.setStatus('mandatory')
cntCpuLevel7s = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuLevel7s.setStatus('mandatory')
cntCpuMsgRets = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuMsgRets.setStatus('mandatory')
cntCpuMsgHolds = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuMsgHolds.setStatus('mandatory')
cntCpuResetFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuResetFlag.setStatus('mandatory')
cntCpuUtil = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuUtil.setStatus('mandatory')
cntCpuLastFailDate = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 19), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuLastFailDate.setStatus('mandatory')
cntCpuLastChgDate = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 20), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuLastChgDate.setStatus('mandatory')
cntHwStatusLED = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntHwStatusLED.setStatus('mandatory')
cntSysBuild = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 1, 5))
cntRevDate = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntRevDate.setStatus('mandatory')
cntCustomer = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCustomer.setStatus('mandatory')
cntMachineType = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMachineType.setStatus('mandatory')
cntSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSerialNumber.setStatus('mandatory')
cntWorkOrderNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntWorkOrderNumber.setStatus('mandatory')
cntChassisNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntChassisNumber.setStatus('mandatory')
cntModelNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntModelNumber.setStatus('mandatory')
cntReleaseLevel = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntReleaseLevel.setStatus('mandatory')
cntRevEditDate = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 9), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntRevEditDate.setStatus('mandatory')
cntRevEditTime = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 10), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntRevEditTime.setStatus('mandatory')
cntFeatureTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11), )
if mibBuilder.loadTexts: cntFeatureTable.setStatus('mandatory')
cntFeatureEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1), ).setIndexNames((0, "CNTAU-MIB", "cntFeatureIndex"))
if mibBuilder.loadTexts: cntFeatureEntry.setStatus('mandatory')
cntFeatureIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFeatureIndex.setStatus('mandatory')
cntFeatureName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFeatureName.setStatus('mandatory')
cntFeatureQuantity = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFeatureQuantity.setStatus('mandatory')
cntFeatureDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFeatureDescr.setStatus('mandatory')
cntSlotTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12), )
if mibBuilder.loadTexts: cntSlotTable.setStatus('mandatory')
cntSlotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1), ).setIndexNames((0, "CNTAU-MIB", "cntSlotIndex"))
if mibBuilder.loadTexts: cntSlotEntry.setStatus('mandatory')
cntSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotIndex.setStatus('mandatory')
cntSlotName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotName.setStatus('mandatory')
cntSlotPartNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotPartNumber.setStatus('mandatory')
cntSlotSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotSerialNumber.setStatus('mandatory')
cntSlotRevLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotRevLevel.setStatus('mandatory')
cntSlotInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotInterface.setStatus('mandatory')
cntSlotCpuNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotCpuNumber.setStatus('mandatory')
cntSlotVMEbusGrant = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSlotVMEbusGrant.setStatus('mandatory')
cntIOTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13), )
if mibBuilder.loadTexts: cntIOTable.setStatus('mandatory')
cntIOEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1), ).setIndexNames((0, "CNTAU-MIB", "cntIOIndex"))
if mibBuilder.loadTexts: cntIOEntry.setStatus('mandatory')
cntIOIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIOIndex.setStatus('mandatory')
cntIOName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIOName.setStatus('mandatory')
cntIOPartNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIOPartNumber.setStatus('mandatory')
cntIOSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIOSerialNumber.setStatus('mandatory')
cntIORevLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIORevLevel.setStatus('mandatory')
cntIOInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIOInterface.setStatus('mandatory')
cntIOCpuNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIOCpuNumber.setStatus('mandatory')
cntPowerTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14), )
if mibBuilder.loadTexts: cntPowerTable.setStatus('mandatory')
cntPowerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1), ).setIndexNames((0, "CNTAU-MIB", "cntPowerIndex"))
if mibBuilder.loadTexts: cntPowerEntry.setStatus('mandatory')
cntPowerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntPowerIndex.setStatus('mandatory')
cntPowerName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntPowerName.setStatus('mandatory')
cntPowerPartNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntPowerPartNumber.setStatus('mandatory')
cntPowerSerialNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntPowerSerialNumber.setStatus('mandatory')
cntPowerRevLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntPowerRevLevel.setStatus('mandatory')
cntSCRTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15), )
if mibBuilder.loadTexts: cntSCRTable.setStatus('mandatory')
cntSCREntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15, 1), ).setIndexNames((0, "CNTAU-MIB", "cntSCRIndex"))
if mibBuilder.loadTexts: cntSCREntry.setStatus('mandatory')
cntSCRIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSCRIndex.setStatus('mandatory')
cntSCRNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSCRNumber.setStatus('mandatory')
cntSerialAlfaNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 16), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSerialAlfaNumber.setStatus('mandatory')
cntSysMemory = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 1, 6))
cntMemBBramAddress = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMemBBramAddress.setStatus('mandatory')
cntMemBBramSpace = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMemBBramSpace.setStatus('mandatory')
cntMemBBramFree = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMemBBramFree.setStatus('mandatory')
cntMemSramAddress = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMemSramAddress.setStatus('mandatory')
cntMemSramSpace = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMemSramSpace.setStatus('mandatory')
cntMemSramFree = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMemSramFree.setStatus('mandatory')
cntSysCpuTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 7), )
if mibBuilder.loadTexts: cntSysCpuTable.setStatus('mandatory')
cntSysCpuEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1), ).setIndexNames((0, "CNTAU-MIB", "cntCpuIndex"))
if mibBuilder.loadTexts: cntSysCpuEntry.setStatus('mandatory')
cntCpuIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuIndex.setStatus('mandatory')
cntCpuMemSpace = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuMemSpace.setStatus('mandatory')
cntCpuMemFree = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuMemFree.setStatus('mandatory')
cntCpuTaskTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4), )
if mibBuilder.loadTexts: cntCpuTaskTable.setStatus('mandatory')
cntCpuTaskEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4, 1), ).setIndexNames((0, "CNTAU-MIB", "cntCpuTaskIndex"))
if mibBuilder.loadTexts: cntCpuTaskEntry.setStatus('mandatory')
cntCpuTaskIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuTaskIndex.setStatus('mandatory')
cntCpuTaskName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCpuTaskName.setStatus('mandatory')
cntinterfaces = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 2))
cntifTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 2, 1), )
if mibBuilder.loadTexts: cntifTable.setStatus('mandatory')
cntifEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1), ).setIndexNames((0, "CNTAU-MIB", "cntifIndex"))
if mibBuilder.loadTexts: cntifEntry.setStatus('mandatory')
cntifIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntifIndex.setStatus('mandatory')
cntifType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63))).clone(namedValues=NamedValues(("other", 1), ("regular1822", 2), ("hdh1822", 3), ("ddn-x25", 4), ("rfc877-x25", 5), ("ethernet", 6), ("ethernet88023", 7), ("tokenBus", 8), ("tokenRing", 9), ("smds", 10), ("starLan", 11), ("proteon-10MBit", 12), ("proteon-80MBit", 13), ("hyperchannel", 14), ("fddi", 15), ("lapb", 16), ("sdlc", 17), ("t1", 18), ("cept", 19), ("basicIsdn", 20), ("primaryIsdn", 21), ("maintenance", 22), ("ppp", 23), ("sofwareLoopback", 24), ("eon", 25), ("ethernet-3Mbit", 26), ("nsip", 27), ("slip", 28), ("ultra", 29), ("ds3", 30), ("sip", 31), ("frame-relay", 32), ("hssi-dte", 33), ("fibre-trunk", 34), ("hippi", 35), ("crayfullduplex", 36), ("pt-to-pt-fiber", 37), ("channel-to-channel", 38), ("peripheral-gateway", 39), ("tape-pipelining", 40), ("tape-dasd", 41), ("hssi-dce", 42), ("ibm-channel", 43), ("dual-trunk", 44), ("teradata", 45), ("cray-hyperchannel", 46), ("scsi-target", 47), ("snmp-gateway", 48), ("ppp-async", 49), ("escon-host", 50), ("escon-peripheral", 51), ("tapecontrol-rs232", 52), ("ultra-dte", 53), ("ultra-dce", 54), ("fddi-ss", 55), ("hssi-ss", 56), ("tunneling", 57), ("stackstarter", 58), ("ethernet-geni", 59), ("tokenring-geni", 60), ("atm", 61), ("scsi-initiator", 62), ("escon-srdf", 63)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntifType.setStatus('mandatory')
cntifCpu = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntifCpu.setStatus('mandatory')
cntifSubIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntifSubIndex.setStatus('mandatory')
cntIfsState = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIfsState.setStatus('mandatory')
cnticmp = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 5))
cnticmpInDuNets = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInDuNets.setStatus('mandatory')
cnticmpInDuHosts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInDuHosts.setStatus('mandatory')
cnticmpInDuProtos = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInDuProtos.setStatus('mandatory')
cnticmpInDuPorts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInDuPorts.setStatus('mandatory')
cnticmpInDuFrags = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInDuFrags.setStatus('mandatory')
cnticmpInDuSources = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInDuSources.setStatus('mandatory')
cnticmpInTmXceeds = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInTmXceeds.setStatus('mandatory')
cnticmpInTmFrags = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInTmFrags.setStatus('mandatory')
cnticmpInReNets = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInReNets.setStatus('mandatory')
cnticmpInReHosts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInReHosts.setStatus('mandatory')
cnticmpInReServnets = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInReServnets.setStatus('mandatory')
cnticmpInReServhosts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpInReServhosts.setStatus('mandatory')
cnticmpOutDuNets = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutDuNets.setStatus('mandatory')
cnticmpOutDuHosts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutDuHosts.setStatus('mandatory')
cnticmpOutDuProtos = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutDuProtos.setStatus('mandatory')
cnticmpOutDuPorts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutDuPorts.setStatus('mandatory')
cnticmpOutDuFrags = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutDuFrags.setStatus('mandatory')
cnticmpOutDuSources = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutDuSources.setStatus('mandatory')
cnticmpOutTmXceeds = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutTmXceeds.setStatus('mandatory')
cnticmpOutTmFrags = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutTmFrags.setStatus('mandatory')
cnticmpOutReNets = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutReNets.setStatus('mandatory')
cnticmpOutReHosts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutReHosts.setStatus('mandatory')
cnticmpOutReServnets = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutReServnets.setStatus('mandatory')
cnticmpOutReServhosts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnticmpOutReServhosts.setStatus('mandatory')
cnttransmission = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 10))
cntdot3 = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 1))
cntdot3Table = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1), )
if mibBuilder.loadTexts: cntdot3Table.setStatus('mandatory')
cntdot3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1), ).setIndexNames((0, "CNTAU-MIB", "cntdot3Index"))
if mibBuilder.loadTexts: cntdot3Entry.setStatus('mandatory')
cntdot3Index = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3Index.setStatus('mandatory')
cntdot3SoftwareID = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3SoftwareID.setStatus('mandatory')
cntdot3BufsAllocated = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3BufsAllocated.setStatus('mandatory')
cntdot3BufTooManys = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3BufTooManys.setStatus('mandatory')
cntdot3BufNotAvails = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3BufNotAvails.setStatus('mandatory')
cntdot3BufPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3BufPriority.setStatus('mandatory')
cntdot3PICBusErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3PICBusErrs.setStatus('mandatory')
cntdot3PICDMAErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3PICDMAErrs.setStatus('mandatory')
cntdot3PICMemSeqErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3PICMemSeqErrs.setStatus('mandatory')
cntdot3PICMemParityErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3PICMemParityErrs.setStatus('mandatory')
cntdot3PICSpuriousInts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3PICSpuriousInts.setStatus('mandatory')
cntdot3LanceInts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LanceInts.setStatus('mandatory')
cntdot3LanceParityErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LanceParityErrs.setStatus('mandatory')
cntdot3LanceMemErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LanceMemErrs.setStatus('mandatory')
cntdot3LanceMissedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LanceMissedPkts.setStatus('mandatory')
cntdot3LanceUnderFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LanceUnderFlows.setStatus('mandatory')
cntdot3LanceOverFlows = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LanceOverFlows.setStatus('mandatory')
cntdot3LanceTxWaitQ = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LanceTxWaitQ.setStatus('mandatory')
cntdot3DMAChan1RxErr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17))).clone(namedValues=NamedValues(("no-error", 0), ("config", 1), ("operation-timing", 2), ("address-mar", 5), ("address-dar", 6), ("address-bar", 7), ("buserr-mar", 9), ("buserr-dar", 10), ("buserr-bar", 11), ("count-mtc", 13), ("count-btc", 15), ("external-abort", 16), ("external-software-abort", 17)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan1RxErr.setStatus('mandatory')
cntdot3DMAChan3RxErr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18))).clone(namedValues=NamedValues(("no-error", 1), ("config", 2), ("operation-timing", 3), ("address-mar", 6), ("address-dar", 7), ("address-bar", 8), ("buserr-mar", 10), ("buserr-dar", 11), ("buserr-bar", 12), ("count-mtc", 14), ("count-btc", 16), ("external-abort", 17), ("external-software-abort", 18)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan3RxErr.setStatus('mandatory')
cntdot3DMAChan0TxErr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18))).clone(namedValues=NamedValues(("no-error", 1), ("config", 2), ("operation-timing", 3), ("address-mar", 6), ("address-dar", 7), ("address-bar", 8), ("buserr-mar", 10), ("buserr-dar", 11), ("buserr-bar", 12), ("count-mtc", 14), ("count-btc", 16), ("external-abort", 17), ("external-software-abort", 18)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan0TxErr.setStatus('mandatory')
cntdot3DMAChan2TxErr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18))).clone(namedValues=NamedValues(("no-error", 1), ("config", 2), ("operation-timing", 3), ("address-mar", 6), ("address-dar", 7), ("address-bar", 8), ("buserr-mar", 10), ("buserr-dar", 11), ("buserr-bar", 12), ("count-mtc", 14), ("count-btc", 16), ("external-abort", 17), ("external-software-abort", 18)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan2TxErr.setStatus('mandatory')
cntdot3DMAChan1RxErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan1RxErrs.setStatus('mandatory')
cntdot3DMAChan3RxErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan3RxErrs.setStatus('mandatory')
cntdot3DMAChan0TxErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan0TxErrs.setStatus('mandatory')
cntdot3DMAChan2TxErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMAChan2TxErrs.setStatus('mandatory')
cntdot3DMARxWaitQ = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 27), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMARxWaitQ.setStatus('mandatory')
cntdot3DMATxWaitQ = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 28), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3DMATxWaitQ.setStatus('mandatory')
cntdot3LPXParityErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3LPXParityErrs.setStatus('mandatory')
cntdot3Chan1Misreads = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdot3Chan1Misreads.setStatus('mandatory')
cntfddi = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2))
cntFddiSMT = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1))
cntFddiMAC = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2))
cntFddiPATH = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3))
cntFddiPORT = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4))
cntFddiSMTNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTNumber.setStatus('mandatory')
cntFddiSMTTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2), )
if mibBuilder.loadTexts: cntFddiSMTTable.setStatus('mandatory')
cntFddiSMTEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1), ).setIndexNames((0, "CNTAU-MIB", "cntFddiSMTIndex"))
if mibBuilder.loadTexts: cntFddiSMTEntry.setStatus('mandatory')
cntFddiSMTIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTIndex.setStatus('mandatory')
cntFddiSMTManufacturerData = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTManufacturerData.setStatus('optional')
cntFddiSMTUserData = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 3), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTUserData.setStatus('optional')
cntFddiSMTReportLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTReportLimit.setStatus('optional')
cntFddiSMTMsgTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTMsgTimeStamp.setStatus('mandatory')
cntFddiSMTTransitionTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTTransitionTimeStamp.setStatus('mandatory')
cntFddiSMTSetCount = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 7), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTSetCount.setStatus('optional')
cntFddiSMTLastSetStationID = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 8), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiSMTLastSetStationID.setStatus('optional')
cntFddiMACNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACNumber.setStatus('mandatory')
cntFddiMACTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2), )
if mibBuilder.loadTexts: cntFddiMACTable.setStatus('mandatory')
cntFddiMACEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1), ).setIndexNames((0, "CNTAU-MIB", "cntFddiMACSMTIndex"))
if mibBuilder.loadTexts: cntFddiMACEntry.setStatus('mandatory')
cntFddiMACSMTIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACSMTIndex.setStatus('mandatory')
cntFddiMACIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACIndex.setStatus('mandatory')
cntFddiMACBridgeFunction = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBridgeFunction.setStatus('optional')
cntFddiMACDownstreamNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACDownstreamNbr.setStatus('optional')
cntFddiMACOldDownstreamNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACOldDownstreamNbr.setStatus('optional')
cntFddiMACRootConcentratorMac = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACRootConcentratorMac.setStatus('optional')
cntFddiMACLongAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACLongAlias.setStatus('optional')
cntFddiMACShortAlias = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACShortAlias.setStatus('optional')
cntFddiMACLongGrpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACLongGrpAddr.setStatus('optional')
cntFddiMACShortGrpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACShortGrpAddr.setStatus('optional')
cntFddiMACTPri0 = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTPri0.setStatus('optional')
cntFddiMACTPri1 = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTPri1.setStatus('optional')
cntFddiMACTPri2 = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTPri2.setStatus('optional')
cntFddiMACTPri3 = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTPri3.setStatus('optional')
cntFddiMACTPri4 = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 15), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTPri4.setStatus('optional')
cntFddiMACTPri5 = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 16), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTPri5.setStatus('optional')
cntFddiMACTPri6 = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 17), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTPri6.setStatus('optional')
cntFddiMACCopies = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACCopies.setStatus('optional')
cntFddiMACTransmits = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTransmits.setStatus('optional')
cntFddiMACTokens = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTokens.setStatus('optional')
cntFddiMACTvxExpires = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACTvxExpires.setStatus('optional')
cntFddiMACNotCopies = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACNotCopies.setStatus('optional')
cntFddiMACLates = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACLates.setStatus('optional')
cntFddiMACRingOps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACRingOps.setStatus('optional')
cntFddiMACBaseFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBaseFrames.setStatus('optional')
cntFddiMACBaseErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBaseErrs.setStatus('optional')
cntFddiMACBaseLosts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBaseLosts.setStatus('optional')
cntFddiMACBaseTimeFrameError = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 28), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBaseTimeFrameError.setStatus('optional')
cntFddiMACBaseNotCopies = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBaseNotCopies.setStatus('optional')
cntFddiMACBaseTimeNotCopied = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 30), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBaseTimeNotCopied.setStatus('optional')
cntFddiMACNotCopiedThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 31), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACNotCopiedThreshold.setStatus('optional')
cntFddiMACBaseCopies = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACBaseCopies.setStatus('optional')
cntFddiMACNotCopiedRatio = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 33), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACNotCopiedRatio.setStatus('optional')
cntFddiMACNotCopiedCondition = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 34), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACNotCopiedCondition.setStatus('optional')
cntFddiMACLLCServiceAvailable = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 35), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACLLCServiceAvailable.setStatus('optional')
cntFddiMACMasterSlaveLoopStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 36), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACMasterSlaveLoopStatus.setStatus('optional')
cntFddiMACRootMACDownStreamPORTType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 37), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACRootMACDownStreamPORTType.setStatus('optional')
cntFddiMACRootMACCurrentPath = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 38), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiMACRootMACCurrentPath.setStatus('optional')
cntFddiPATHNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHNumber.setStatus('mandatory')
cntFddiPATHTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2), )
if mibBuilder.loadTexts: cntFddiPATHTable.setStatus('mandatory')
cntFddiPATHEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1), ).setIndexNames((0, "CNTAU-MIB", "cntFddiPATHSMTIndex"))
if mibBuilder.loadTexts: cntFddiPATHEntry.setStatus('mandatory')
cntFddiPATHSMTIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHSMTIndex.setStatus('mandatory')
cntFddiPATHIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHIndex.setStatus('mandatory')
cntFddiPATHTraceMaxExpiration = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHTraceMaxExpiration.setStatus('mandatory')
cntFddiPATHTVXLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHTVXLowerBound.setStatus('optional')
cntFddiPATHTMaxLowerBound = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHTMaxLowerBound.setStatus('optional')
cntFddiPATHType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHType.setStatus('mandatory')
cntFddiPATHPORTOrder = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHPORTOrder.setStatus('mandatory')
cntFddiPATHRingLatency = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHRingLatency.setStatus('optional')
cntFddiPATHTraceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHTraceStatus.setStatus('optional')
cntFddiPATHSba = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHSba.setStatus('mandatory')
cntFddiPATHSbaOverhead = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHSbaOverhead.setStatus('mandatory')
cntFddiPATHStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHStatus.setStatus('mandatory')
cntFddiPATHTRmode = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPATHTRmode.setStatus('optional')
cntFddiPORTNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTNumber.setStatus('mandatory')
cntFddiPORTTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2), )
if mibBuilder.loadTexts: cntFddiPORTTable.setStatus('mandatory')
cntFddiPORTEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1), ).setIndexNames((0, "CNTAU-MIB", "cntFddiPORTSMTIndex"))
if mibBuilder.loadTexts: cntFddiPORTEntry.setStatus('mandatory')
cntFddiPORTSMTIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTSMTIndex.setStatus('mandatory')
cntFddiPORTIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTIndex.setStatus('mandatory')
cntFddiPORTFotxClass = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTFotxClass.setStatus('optional')
cntFddiPORTMaintLineState = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTMaintLineState.setStatus('optional')
cntFddiPORTEBErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTEBErrs.setStatus('optional')
cntFddiPORTBaseLerEstimate = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTBaseLerEstimate.setStatus('mandatory')
cntFddiPORTBaseLemRejects = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTBaseLemRejects.setStatus('mandatory')
cntFddiPORTBaseLems = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTBaseLems.setStatus('mandatory')
cntFddiPORTBaseLerTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 9), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPORTBaseLerTimeStamp.setStatus('mandatory')
cntsnmp = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 11))
cntsnmpconfig = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 1))
cntMibVersion = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMibVersion.setStatus('mandatory')
cntMibObjectCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMibObjectCount.setStatus('mandatory')
cntConfigVersion = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntConfigVersion.setStatus('mandatory')
cntProxyStatus = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("no-proxy", 1), ("proxy-agent", 2), ("proxied-node", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntProxyStatus.setStatus('mandatory')
cntProxyCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntProxyCount.setStatus('mandatory')
cntSnmpBufferCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSnmpBufferCount.setStatus('mandatory')
cntIfPollInterval = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIfPollInterval.setStatus('mandatory')
cntIfNextPoll = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntIfNextPoll.setStatus('mandatory')
cntDoDIPCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntDoDIPCount.setStatus('mandatory')
cntDot3Count = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntDot3Count.setStatus('mandatory')
cntFddiCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiCount.setStatus('mandatory')
cntFddiPortCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiPortCount.setStatus('mandatory')
cntDataLinkCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntDataLinkCount.setStatus('mandatory')
cntLLC1Count = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 14), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntLLC1Count.setStatus('mandatory')
cntCofiVersion = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 15), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCofiVersion.setStatus('mandatory')
cntsnmpstat = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 2))
cntMib2Requests = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMib2Requests.setStatus('mandatory')
cntFddiRequests = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntFddiRequests.setStatus('mandatory')
cntDot3Requests = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntDot3Requests.setStatus('mandatory')
cntCntRequests = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCntRequests.setStatus('mandatory')
cntRowAdditions = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntRowAdditions.setStatus('mandatory')
cntRowModifies = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntRowModifies.setStatus('mandatory')
cntRowDeletions = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntRowDeletions.setStatus('mandatory')
cntRowErrors = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntRowErrors.setStatus('mandatory')
cntBadVersions = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntBadVersions.setStatus('mandatory')
cntNoBuffers = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntNoBuffers.setStatus('mandatory')
cntMailTimeouts = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntMailTimeouts.setStatus('mandatory')
cntCachedResponses = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntCachedResponses.setStatus('mandatory')
cntUsedCaches = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntUsedCaches.setStatus('mandatory')
cntsnmptrap = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 3))
cntTrapDestCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntTrapDestCount.setStatus('mandatory')
cntLastTrapMsg = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntLastTrapMsg.setStatus('mandatory')
cntTrapTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3), )
if mibBuilder.loadTexts: cntTrapTable.setStatus('mandatory')
cnttrapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1), ).setIndexNames((0, "CNTAU-MIB", "cnttrapIndex"))
if mibBuilder.loadTexts: cnttrapEntry.setStatus('mandatory')
cnttrapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnttrapIndex.setStatus('mandatory')
cnttrapAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnttrapAddress.setStatus('mandatory')
cntsnmpTrapFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsnmpTrapFlags.setStatus('mandatory')
cntTrapFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntTrapFlags.setStatus('mandatory')
cnttrapIf = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnttrapIf.setStatus('mandatory')
cntsnmpproxy = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 4))
cntProxyTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1), )
if mibBuilder.loadTexts: cntProxyTable.setStatus('mandatory')
cntproxyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1), ).setIndexNames((0, "CNTAU-MIB", "cntproxyIndex"))
if mibBuilder.loadTexts: cntproxyEntry.setStatus('mandatory')
cntproxyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntproxyIndex.setStatus('mandatory')
cntproxyAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntproxyAddress.setStatus('mandatory')
cntproxyNode = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntproxyNode.setStatus('mandatory')
cntdiagnostics = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 12))
cntTraceTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 12, 1), )
if mibBuilder.loadTexts: cntTraceTable.setStatus('mandatory')
cnttraceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1), ).setIndexNames((0, "CNTAU-MIB", "cnttraceIndex"))
if mibBuilder.loadTexts: cnttraceEntry.setStatus('mandatory')
cnttraceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnttraceIndex.setStatus('mandatory')
cnttraceType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnttraceType.setStatus('mandatory')
cnttraceCpu = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnttraceCpu.setStatus('mandatory')
cnttraceData = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cnttraceData.setStatus('mandatory')
cntMailQueue = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 12, 2))
cntMDMTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1), )
if mibBuilder.loadTexts: cntMDMTable.setStatus('mandatory')
cntMDMEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1), ).setIndexNames((0, "CNTAU-MIB", "cntmdmQIndex"))
if mibBuilder.loadTexts: cntMDMEntry.setStatus('mandatory')
cntmdmQIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntmdmQIndex.setStatus('mandatory')
cntmdmQName = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntmdmQName.setStatus('mandatory')
cntmdmQProcessId = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntmdmQProcessId.setStatus('mandatory')
cntmdmQTaskId = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntmdmQTaskId.setStatus('mandatory')
cntmdmQList = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntmdmQList.setStatus('mandatory')
cntdatalink = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 13))
cntdlNumber = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 13, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlNumber.setStatus('mandatory')
cntdlTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 13, 2), )
if mibBuilder.loadTexts: cntdlTable.setStatus('mandatory')
cntdlEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1), ).setIndexNames((0, "CNTAU-MIB", "cntdlIndex"))
if mibBuilder.loadTexts: cntdlEntry.setStatus('mandatory')
cntdlIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlIndex.setStatus('mandatory')
cntdlDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlDescr.setStatus('mandatory')
cntdlType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("llc1", 1), ("llc2", 2), ("llc3", 3), ("snap", 4), ("cnet", 5), ("dnls", 6), ("strp", 7), ("ppp", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlType.setStatus('mandatory')
cntdlTypeofService = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unacked-connectionless", 1), ("connection-oriented", 2), ("acked-connectionless", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlTypeofService.setStatus('mandatory')
cntdlMtu = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlMtu.setStatus('mandatory')
cntdlPortAddrLen = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlPortAddrLen.setStatus('mandatory')
cntdlMaxPort = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlMaxPort.setStatus('mandatory')
cntdlActivePort = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlActivePort.setStatus('mandatory')
cntdlInOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlInOctets.setStatus('mandatory')
cntdlInUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlInUcastPkts.setStatus('mandatory')
cntdlInNUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlInNUcastPkts.setStatus('mandatory')
cntdlInDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlInDiscards.setStatus('mandatory')
cntdlInErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlInErrors.setStatus('mandatory')
cntdlInUnknownProtos = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlInUnknownProtos.setStatus('mandatory')
cntdlOutOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlOutOctets.setStatus('mandatory')
cntdlOutUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlOutUcastPkts.setStatus('mandatory')
cntdlOutNUcastPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlOutNUcastPkts.setStatus('mandatory')
cntdlOutDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlOutDiscards.setStatus('mandatory')
cntdlOutErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlOutErrors.setStatus('mandatory')
cntdlOutQLen = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 20), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlOutQLen.setStatus('mandatory')
cntdlPortTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21), )
if mibBuilder.loadTexts: cntdlPortTable.setStatus('mandatory')
cntdlPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1), ).setIndexNames((0, "CNTAU-MIB", "cntdlPortIndex"))
if mibBuilder.loadTexts: cntdlPortEntry.setStatus('mandatory')
cntdlPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlPortIndex.setStatus('mandatory')
cntdlState = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("connected", 1), ("data-transfer", 2), ("disconnected", 3), ("waiting-for-ack", 4), ("down", 5), ("closed", 6), ("listen", 7), ("ack-sent", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlState.setStatus('mandatory')
cntdlSourcePort = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlSourcePort.setStatus('mandatory')
cntdlDestPort = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlDestPort.setStatus('mandatory')
cntdlPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("dod-ip", 1), ("arp", 2), ("snmp", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntdlPortType.setStatus('mandatory')
cntllc1 = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 13, 3))
cntllc1ConfigTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1), )
if mibBuilder.loadTexts: cntllc1ConfigTable.setStatus('mandatory')
cntllc1ConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1), ).setIndexNames((0, "CNTAU-MIB", "cntllc1ConfigIndex"))
if mibBuilder.loadTexts: cntllc1ConfigEntry.setStatus('mandatory')
cntllc1ConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1ConfigIndex.setStatus('mandatory')
cntllc1DriverType = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("cnt-node", 1), ("fddi", 2), ("fibre-trunk", 3), ("native", 4), ("ethernet", 5), ("hippi", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1DriverType.setStatus('mandatory')
cntllc1Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 3), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1Addr.setStatus('mandatory')
cntllc1InitFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("uninitialized", 1), ("initialized", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InitFlag.setStatus('mandatory')
cntllc1TraceFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1TraceFlag.setStatus('mandatory')
cntllc1BufCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1BufCnt.setStatus('mandatory')
cntllc1BusId = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1BusId.setStatus('mandatory')
cntllc1CpuNum = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("lcp-1", 1), ("lcp-2", 2), ("lcp-3", 3), ("lcp-4", 4), ("lcp-5", 5), ("lcp-6", 6), ("lcp-7", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1CpuNum.setStatus('mandatory')
cntllc1BufPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1BufPriority.setStatus('mandatory')
cntllc1WaitTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1WaitTimeOut.setStatus('mandatory')
cntllc1StatsTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2), )
if mibBuilder.loadTexts: cntllc1StatsTable.setStatus('mandatory')
cntllc1StatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1), ).setIndexNames((0, "CNTAU-MIB", "cntllc1StatIndex"))
if mibBuilder.loadTexts: cntllc1StatsEntry.setStatus('mandatory')
cntllc1StatIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1StatIndex.setStatus('mandatory')
cntllc1InXids = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InXids.setStatus('mandatory')
cntllc1InTests = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InTests.setStatus('mandatory')
cntllc1InUIs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InUIs.setStatus('mandatory')
cntllc1InNoDsaps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InNoDsaps.setStatus('mandatory')
cntllc1InXidOks = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InXidOks.setStatus('mandatory')
cntllc1InTestOks = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InTestOks.setStatus('mandatory')
cntllc1InSnapIps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InSnapIps.setStatus('mandatory')
cntllc1InSnapArps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InSnapArps.setStatus('mandatory')
cntllc1InSnapNoProts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InSnapNoProts.setStatus('mandatory')
cntllc1InSnapNoTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InSnapNoTypes.setStatus('mandatory')
cntllc1OutSnapIps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutSnapIps.setStatus('mandatory')
cntllc1OutSnapArps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutSnapArps.setStatus('mandatory')
cntllc1OutXids = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutXids.setStatus('mandatory')
cntllc1OutXidResps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutXidResps.setStatus('mandatory')
cntllc1OutTests = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutTests.setStatus('mandatory')
cntllc1OutTestResps = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutTestResps.setStatus('mandatory')
cntllc1OutRetOks = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutRetOks.setStatus('mandatory')
cntllc1OutFragPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutFragPkts.setStatus('mandatory')
cntllc1ErrorTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3), )
if mibBuilder.loadTexts: cntllc1ErrorTable.setStatus('mandatory')
cntllc1ErrorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1), ).setIndexNames((0, "CNTAU-MIB", "cntllc1ErrorIndex"))
if mibBuilder.loadTexts: cntllc1ErrorEntry.setStatus('mandatory')
cntllc1ErrorIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1ErrorIndex.setStatus('mandatory')
cntllc1ArpMailErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1ArpMailErrs.setStatus('mandatory')
cntllc1IpMailErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1IpMailErrs.setStatus('mandatory')
cntllc1OutXmitErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutXmitErrs.setStatus('mandatory')
cntllc1OutMcastErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutMcastErrs.setStatus('mandatory')
cntllc1XidErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1XidErrs.setStatus('mandatory')
cntllc1TestErrs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1TestErrs.setStatus('mandatory')
cntllc1InBadTypes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InBadTypes.setStatus('mandatory')
cntllc1OutMismIpSizes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutMismIpSizes.setStatus('mandatory')
cntllc1OutBadIpSizes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutBadIpSizes.setStatus('mandatory')
cntllc1InMismIpSizes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InMismIpSizes.setStatus('mandatory')
cntllc1InBadIpSizes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InBadIpSizes.setStatus('mandatory')
cntllc1InLateXids = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InLateXids.setStatus('mandatory')
cntllc1InLateTests = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1InLateTests.setStatus('mandatory')
cntllc1OutTooBigs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutTooBigs.setStatus('mandatory')
cntllc1OutNoRooms = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutNoRooms.setStatus('mandatory')
cntllc1OutRetBads = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntllc1OutRetBads.setStatus('mandatory')
cntlua = MibIdentifier((1, 3, 6, 1, 4, 1, 333, 1, 14))
cntLuaCount = MibScalar((1, 3, 6, 1, 4, 1, 333, 1, 14, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntLuaCount.setStatus('mandatory')
cntLuaTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 14, 2), )
if mibBuilder.loadTexts: cntLuaTable.setStatus('mandatory')
cntluaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1), ).setIndexNames((0, "CNTAU-MIB", "cntluaIf"))
if mibBuilder.loadTexts: cntluaEntry.setStatus('mandatory')
cntluaIf = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntluaIf.setStatus('mandatory')
cntluaNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntluaNumber.setStatus('mandatory')
cntSubChanCount = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntSubChanCount.setStatus('mandatory')
cntSubChanTable = MibTable((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4), )
if mibBuilder.loadTexts: cntSubChanTable.setStatus('mandatory')
cntsubchanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1), ).setIndexNames((0, "CNTAU-MIB", "cntsctIndex"))
if mibBuilder.loadTexts: cntsubchanEntry.setStatus('mandatory')
cntsctIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctIndex.setStatus('mandatory')
cntsctNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctNumber.setStatus('mandatory')
cntsctTxStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctTxStatus.setStatus('mandatory')
cntsctRxStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctRxStatus.setStatus('mandatory')
cntsctSubChanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctSubChanStatus.setStatus('mandatory')
cntsctState = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctState.setStatus('mandatory')
cntsctRxCredit = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctRxCredit.setStatus('mandatory')
cntsctRxMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctRxMsgs.setStatus('mandatory')
cntsctRxMsgBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctRxMsgBytes.setStatus('mandatory')
cntsctRxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctRxDataBytes.setStatus('mandatory')
cntsctTxMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctTxMsgs.setStatus('mandatory')
cntsctTxMsgBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctTxMsgBytes.setStatus('mandatory')
cntsctTxDataBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctTxDataBytes.setStatus('mandatory')
cntsctTxErrMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctTxErrMsgs.setStatus('mandatory')
cntsctTotalBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctTotalBytes.setStatus('mandatory')
cntsctDrecPid = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 16), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctDrecPid.setStatus('mandatory')
cntsctDrecTask = MibTableColumn((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 17), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cntsctDrecTask.setStatus('mandatory')
cntInformationalMsg = NotificationType((1, 3, 6, 1, 4, 1, 333, 1) + (0,1)).setObjects(("CNTAU-MIB", "cntMsgTaskName"), ("CNTAU-MIB", "cntMsgNumber"), ("CNTAU-MIB", "cntMsgCpuNumber"), ("CNTAU-MIB", "cntMsgNodeNumber"), ("CNTAU-MIB", "cntMsgDateTime"), ("CNTAU-MIB", "cntMsgContent"))
cntPossibleErrMsg = NotificationType((1, 3, 6, 1, 4, 1, 333, 1) + (0,2)).setObjects(("CNTAU-MIB", "cntMsgTaskName"), ("CNTAU-MIB", "cntMsgNumber"), ("CNTAU-MIB", "cntMsgCpuNumber"), ("CNTAU-MIB", "cntMsgNodeNumber"), ("CNTAU-MIB", "cntMsgDateTime"), ("CNTAU-MIB", "cntMsgContent"))
cntSevereErrMsg = NotificationType((1, 3, 6, 1, 4, 1, 333, 1) + (0,3)).setObjects(("CNTAU-MIB", "cntMsgTaskName"), ("CNTAU-MIB", "cntMsgNumber"), ("CNTAU-MIB", "cntMsgCpuNumber"), ("CNTAU-MIB", "cntMsgNodeNumber"), ("CNTAU-MIB", "cntMsgDateTime"), ("CNTAU-MIB", "cntMsgContent"))
cntCriticalErrMsg = NotificationType((1, 3, 6, 1, 4, 1, 333, 1) + (0,4)).setObjects(("CNTAU-MIB", "cntMsgTaskName"), ("CNTAU-MIB", "cntMsgNumber"), ("CNTAU-MIB", "cntMsgCpuNumber"), ("CNTAU-MIB", "cntMsgNodeNumber"), ("CNTAU-MIB", "cntMsgDateTime"), ("CNTAU-MIB", "cntMsgContent"))
mibBuilder.exportSymbols("CNTAU-MIB", cntFeatureEntry=cntFeatureEntry, cntsystem=cntsystem, cntsctTxMsgs=cntsctTxMsgs, cntFddiPORTFotxClass=cntFddiPORTFotxClass, cntdot3PICDMAErrs=cntdot3PICDMAErrs, cntBadVersions=cntBadVersions, cntFddiMACLLCServiceAvailable=cntFddiMACLLCServiceAvailable, cntmdmQList=cntmdmQList, cntIfNextPoll=cntIfNextPoll, cntSysTimeofDay=cntSysTimeofDay, cntFddiPATHTable=cntFddiPATHTable, cntllc1OutSnapArps=cntllc1OutSnapArps, cntMachineType=cntMachineType, cnticmpInTmXceeds=cnticmpInTmXceeds, cntdlEntry=cntdlEntry, cntMDMEntry=cntMDMEntry, cntHwFailedCpu=cntHwFailedCpu, cntMsgIndex=cntMsgIndex, cntdatalink=cntdatalink, cntdot3Index=cntdot3Index, cntllc1CpuNum=cntllc1CpuNum, cntRowAdditions=cntRowAdditions, cntFddiSMTReportLimit=cntFddiSMTReportLimit, cntCpuMsgHolds=cntCpuMsgHolds, cntFddiMACBaseNotCopies=cntFddiMACBaseNotCopies, cntsctRxStatus=cntsctRxStatus, cntllc1OutMismIpSizes=cntllc1OutMismIpSizes, cntFddiPORTBaseLems=cntFddiPORTBaseLems, cntdlPortEntry=cntdlPortEntry, cntSysMemory=cntSysMemory, cntMemSramAddress=cntMemSramAddress, cntFddiPATHTVXLowerBound=cntFddiPATHTVXLowerBound, cntFddiPORTEBErrs=cntFddiPORTEBErrs, cntHwBBramStatus=cntHwBBramStatus, cntHwBBramType=cntHwBBramType, cntIOPartNumber=cntIOPartNumber, cntFddiMACRootMACDownStreamPORTType=cntFddiMACRootMACDownStreamPORTType, cntsnmpstat=cntsnmpstat, cntllc1ErrorTable=cntllc1ErrorTable, cntllc1XidErrs=cntllc1XidErrs, cntCpuPort=cntCpuPort, cntReleaseLevel=cntReleaseLevel, cnttransmission=cnttransmission, cntllc1OutFragPkts=cntllc1OutFragPkts, cntLuaTable=cntLuaTable, cnticmpInDuProtos=cnticmpInDuProtos, cntllc1InXidOks=cntllc1InXidOks, cntCpuMemSpace=cntCpuMemSpace, cntllc1WaitTimeOut=cntllc1WaitTimeOut, cntPossibleErrMsg=cntPossibleErrMsg, cntFddiMACTPri4=cntFddiMACTPri4, cntDataLinkCount=cntDataLinkCount, cntlua=cntlua, cntCpuMonBy=cntCpuMonBy, cntllc1TraceFlag=cntllc1TraceFlag, cntproxyEntry=cntproxyEntry, cntdot3DMAChan1RxErrs=cntdot3DMAChan1RxErrs, cntFddiMACNotCopiedCondition=cntFddiMACNotCopiedCondition, cntRevEditDate=cntRevEditDate, cntFddiPATHRingLatency=cntFddiPATHRingLatency, cntCpuPollStatus=cntCpuPollStatus, cntHwMonFailStatus=cntHwMonFailStatus, cntMemBBramAddress=cntMemBBramAddress, cntsctIndex=cntsctIndex, cntsnmpconfig=cntsnmpconfig, cntsctRxDataBytes=cntsctRxDataBytes, cntFddiSMTTable=cntFddiSMTTable, cntdlOutDiscards=cntdlOutDiscards, cntSCRTable=cntSCRTable, cntMibVersion=cntMibVersion, cntFddiPATHStatus=cntFddiPATHStatus, cntllc1OutRetBads=cntllc1OutRetBads, cntModelNumber=cntModelNumber, cntdot3DMAChan3RxErrs=cntdot3DMAChan3RxErrs, cntsctNumber=cntsctNumber, cntFddiPATHEntry=cntFddiPATHEntry, cntmdmQIndex=cntmdmQIndex, cntProxyStatus=cntProxyStatus, cntSCRIndex=cntSCRIndex, cntdlMtu=cntdlMtu, cntllc1DriverType=cntllc1DriverType, cntllc1ConfigTable=cntllc1ConfigTable, cntdot3LPXParityErrs=cntdot3LPXParityErrs, cntFddiMACNotCopiedThreshold=cntFddiMACNotCopiedThreshold, cntTrapDestCount=cntTrapDestCount, cntSysMsgTable=cntSysMsgTable, cntCpuPolls=cntCpuPolls, cnticmp=cnticmp, cntllc1BufCnt=cntllc1BufCnt, cntdot3LanceInts=cntdot3LanceInts, cntSysCpuEntry=cntSysCpuEntry, cntDot3Count=cntDot3Count, cntmdmQTaskId=cntmdmQTaskId, cntdlOutOctets=cntdlOutOctets, cntdot3DMARxWaitQ=cntdot3DMARxWaitQ, cnticmpInDuNets=cnticmpInDuNets, cntdlInNUcastPkts=cntdlInNUcastPkts, cntCpuSemLost=cntCpuSemLost, cntllc1=cntllc1, cnticmpInDuSources=cnticmpInDuSources, cntFddiPORT=cntFddiPORT, cntifCpu=cntifCpu, cntFddiPATHSba=cntFddiPATHSba, cntdlInOctets=cntdlInOctets, cntsctTxStatus=cntsctTxStatus, cntCpuStatus=cntCpuStatus, cntFddiMACDownstreamNbr=cntFddiMACDownstreamNbr, cntdot3LanceParityErrs=cntdot3LanceParityErrs, cnticmpOutDuProtos=cnticmpOutDuProtos, cntFeatureDescr=cntFeatureDescr, cntdlPortIndex=cntdlPortIndex, cntdlInUcastPkts=cntdlInUcastPkts, cntmdmQProcessId=cntmdmQProcessId, cntdlType=cntdlType, cntFeatureQuantity=cntFeatureQuantity, cntFddiMACTPri3=cntFddiMACTPri3, cntsubchanEntry=cntsubchanEntry, cntIOTable=cntIOTable, cntSlotCpuNumber=cntSlotCpuNumber, cntllc1InBadIpSizes=cntllc1InBadIpSizes, cntCpuTaskIndex=cntCpuTaskIndex, cntFddiMACNumber=cntFddiMACNumber, cntdot3DMAChan2TxErrs=cntdot3DMAChan2TxErrs, cntinterfaces=cntinterfaces, cntConfigVersion=cntConfigVersion, cntdot3DMAChan2TxErr=cntdot3DMAChan2TxErr, cntCpuSemCount=cntCpuSemCount, cntFddiPATHTMaxLowerBound=cntFddiPATHTMaxLowerBound, cntFddiMACRingOps=cntFddiMACRingOps, cntdot3PICSpuriousInts=cntdot3PICSpuriousInts, cntLuaCount=cntLuaCount, cnt=cnt, cnttraceType=cnttraceType, cntCpuLastFailDate=cntCpuLastFailDate, cntllc1BufPriority=cntllc1BufPriority, cntdlPortTable=cntdlPortTable, cntllc1InTestOks=cntllc1InTestOks, cntllc1InTests=cntllc1InTests, cntdot3LanceUnderFlows=cntdot3LanceUnderFlows, cntdlOutNUcastPkts=cntdlOutNUcastPkts, cnttrapIf=cnttrapIf, cntHwReset1Date=cntHwReset1Date, cntMsgDateTime=cntMsgDateTime, cntFddiSMTNumber=cntFddiSMTNumber, cntifIndex=cntifIndex, cntifSubIndex=cntifSubIndex, cntFddiSMTLastSetStationID=cntFddiSMTLastSetStationID, cntsctState=cntsctState, cntCachedResponses=cntCachedResponses, cntHwFailStatus=cntHwFailStatus, cntFddiPATHSMTIndex=cntFddiPATHSMTIndex, cntPowerPartNumber=cntPowerPartNumber, cntCpuLastChgDate=cntCpuLastChgDate, cntSysHardware=cntSysHardware, cntllc1ArpMailErrs=cntllc1ArpMailErrs, cntllc1StatIndex=cntllc1StatIndex, cnticmpInTmFrags=cnticmpInTmFrags, cntllc1OutSnapIps=cntllc1OutSnapIps, cntFddiMAC=cntFddiMAC, cntdot3PICBusErrs=cntdot3PICBusErrs, cntluaIf=cntluaIf, cnticmpInReHosts=cnticmpInReHosts, cntSlotEntry=cntSlotEntry, cntdlPortAddrLen=cntdlPortAddrLen, cntPowerName=cntPowerName, cntFddiMACTPri0=cntFddiMACTPri0, cntFddiPATH=cntFddiPATH, cntFeatureIndex=cntFeatureIndex, cntFddiPORTTable=cntFddiPORTTable, cntSnmpBufferCount=cntSnmpBufferCount, cntsctDrecPid=cntsctDrecPid, cnticmpInDuPorts=cnticmpInDuPorts, cntFddiMACTokens=cntFddiMACTokens, cnticmpOutReServhosts=cnticmpOutReServhosts, cntMemSramSpace=cntMemSramSpace, cntdot3LanceTxWaitQ=cntdot3LanceTxWaitQ, cntRowErrors=cntRowErrors, cntFddiPATHType=cntFddiPATHType, cntCpuType=cntCpuType, cntdot3BufPriority=cntdot3BufPriority, cntPowerSerialNumber=cntPowerSerialNumber, cntFddiPORTEntry=cntFddiPORTEntry, cntFddiMACRootMACCurrentPath=cntFddiMACRootMACCurrentPath, cntTrapTable=cntTrapTable, cntFddiPORTBaseLerTimeStamp=cntFddiPORTBaseLerTimeStamp, cntsctTotalBytes=cntsctTotalBytes, cnticmpOutDuNets=cnticmpOutDuNets, cntHwCpuEntry=cntHwCpuEntry, cntMailQueue=cntMailQueue, cntllc1ErrorIndex=cntllc1ErrorIndex, cntCntRequests=cntCntRequests, cntCpuMonStatus=cntCpuMonStatus, cntllc1OutNoRooms=cntllc1OutNoRooms, cntdot3BufsAllocated=cntdot3BufsAllocated, cntHwFailDate=cntHwFailDate, cntIOIndex=cntIOIndex, cnticmpInReNets=cnticmpInReNets, cntCofiVersion=cntCofiVersion, cnticmpOutReHosts=cnticmpOutReHosts, cntMsgSeqNumber=cntMsgSeqNumber, cntllc1ConfigEntry=cntllc1ConfigEntry, cntdot3LanceMemErrs=cntdot3LanceMemErrs, cntFddiMACNotCopies=cntFddiMACNotCopies, cntdot3BufTooManys=cntdot3BufTooManys, cntFddiMACTable=cntFddiMACTable, cntMsgNumber=cntMsgNumber, cntFddiPATHIndex=cntFddiPATHIndex, cntFddiMACCopies=cntFddiMACCopies, cntdlTypeofService=cntdlTypeofService, cntproxyNode=cntproxyNode, cntllc1InSnapIps=cntllc1InSnapIps, cntMsgTaskName=cntMsgTaskName, cntNoBuffers=cntNoBuffers, cntHwPowerSupply=cntHwPowerSupply, cntPowerRevLevel=cntPowerRevLevel, cntsctTxMsgBytes=cntsctTxMsgBytes, cntSysNodeAddress=cntSysNodeAddress, cntFddiMACLates=cntFddiMACLates, cntSlotIndex=cntSlotIndex, cntProxyCount=cntProxyCount, cntLLC1Count=cntLLC1Count, cntMsgEntry=cntMsgEntry, cntdot3LanceOverFlows=cntdot3LanceOverFlows, cntMib2Requests=cntMib2Requests, cntCpuUnclaims=cntCpuUnclaims, cntSubChanTable=cntSubChanTable, cntFddiMACShortGrpAddr=cntFddiMACShortGrpAddr, cntMsgCpuNumber=cntMsgCpuNumber, cnticmpOutDuSources=cnticmpOutDuSources, cntFddiPATHPORTOrder=cntFddiPATHPORTOrder, cntdiagnostics=cntdiagnostics, cntFddiMACBaseTimeNotCopied=cntFddiMACBaseTimeNotCopied, cntdot3Table=cntdot3Table, cntFddiPORTSMTIndex=cntFddiPORTSMTIndex, cntSlotTable=cntSlotTable, cntHwMonCpu=cntHwMonCpu, cntMemBBramSpace=cntMemBBramSpace, cntdot3BufNotAvails=cntdot3BufNotAvails, cntFddiPORTMaintLineState=cntFddiPORTMaintLineState, cntmdmQName=cntmdmQName, cntCpuTaskEntry=cntCpuTaskEntry, cntFddiMACIndex=cntFddiMACIndex, cntSubChanCount=cntSubChanCount, cntllc1ConfigIndex=cntllc1ConfigIndex, cntFddiCount=cntFddiCount, cntdlNumber=cntdlNumber, cntFddiSMTManufacturerData=cntFddiSMTManufacturerData, cntRowDeletions=cntRowDeletions, cntFddiPATHNumber=cntFddiPATHNumber, cntdot3LanceMissedPkts=cntdot3LanceMissedPkts, cntSlotSerialNumber=cntSlotSerialNumber, cntFddiPORTNumber=cntFddiPORTNumber, cntCpuUtil=cntCpuUtil, cntPowerEntry=cntPowerEntry)
mibBuilder.exportSymbols("CNTAU-MIB", cntRevEditTime=cntRevEditTime, cntllc1InNoDsaps=cntllc1InNoDsaps, cntFddiPATHTraceStatus=cntFddiPATHTraceStatus, cntproxyAddress=cntproxyAddress, cntllc1InMismIpSizes=cntllc1InMismIpSizes, cntifType=cntifType, cntifTable=cntifTable, cnttrapEntry=cnttrapEntry, cntdlOutUcastPkts=cntdlOutUcastPkts, cntdlOutErrors=cntdlOutErrors, cntWorkOrderNumber=cntWorkOrderNumber, cntSCRNumber=cntSCRNumber, cntdlTable=cntdlTable, cntChassisNumber=cntChassisNumber, cntCpuMsgRets=cntCpuMsgRets, cntllc1Addr=cntllc1Addr, cntllc1InLateTests=cntllc1InLateTests, cntdot3DMAChan1RxErr=cntdot3DMAChan1RxErr, cntdlIndex=cntdlIndex, cntCpuNum=cntCpuNum, cntllc1IpMailErrs=cntllc1IpMailErrs, cnttraceEntry=cnttraceEntry, cntllc1OutMcastErrs=cntllc1OutMcastErrs, cntFddiMACBaseErrs=cntFddiMACBaseErrs, cntSlotName=cntSlotName, cntllc1InBadTypes=cntllc1InBadTypes, cntFddiPORTBaseLemRejects=cntFddiPORTBaseLemRejects, cnticmpInReServnets=cnticmpInReServnets, cntRevDate=cntRevDate, cntFddiSMTMsgTimeStamp=cntFddiSMTMsgTimeStamp, cnticmpInDuHosts=cnticmpInDuHosts, cntSlotPartNumber=cntSlotPartNumber, cntFddiPATHTraceMaxExpiration=cntFddiPATHTraceMaxExpiration, cntllc1TestErrs=cntllc1TestErrs, cntsnmpproxy=cntsnmpproxy, cntCpuResetDelayTime=cntCpuResetDelayTime, cntluaNumber=cntluaNumber, cntMDMTable=cntMDMTable, cntdlPortType=cntdlPortType, cntFeatureTable=cntFeatureTable, cntIOName=cntIOName, cntFddiMACLongAlias=cntFddiMACLongAlias, cntllc1StatsTable=cntllc1StatsTable, cntSevereErrMsg=cntSevereErrMsg, cntdlOutQLen=cntdlOutQLen, cntdot3DMATxWaitQ=cntdot3DMATxWaitQ, cntFddiSMTEntry=cntFddiSMTEntry, cnticmpOutDuPorts=cnticmpOutDuPorts, cntdot3PICMemSeqErrs=cntdot3PICMemSeqErrs, cntMemSramFree=cntMemSramFree, cntFddiMACTPri2=cntFddiMACTPri2, cntIOInterface=cntIOInterface, cntsctRxMsgBytes=cntsctRxMsgBytes, cntSerialNumber=cntSerialNumber, cntSysBuild=cntSysBuild, cnticmpInDuFrags=cnticmpInDuFrags, cntFddiSMTIndex=cntFddiSMTIndex, cntFddiPORTIndex=cntFddiPORTIndex, cntMemBBramFree=cntMemBBramFree, cntllc1OutXids=cntllc1OutXids, cntSerialAlfaNumber=cntSerialAlfaNumber, cntdot3=cntdot3, cntSlotVMEbusGrant=cntSlotVMEbusGrant, cntSlotRevLevel=cntSlotRevLevel, cntFddiSMTTransitionTimeStamp=cntFddiSMTTransitionTimeStamp, cntCpuTaskName=cntCpuTaskName, cntsctTxErrMsgs=cntsctTxErrMsgs, cntllc1InLateXids=cntllc1InLateXids, cntSCREntry=cntSCREntry, cntFddiMACSMTIndex=cntFddiMACSMTIndex, cntFddiMACBridgeFunction=cntFddiMACBridgeFunction, cntPowerTable=cntPowerTable, cntsctRxMsgs=cntsctRxMsgs, cntdot3SoftwareID=cntdot3SoftwareID, cntllc1InSnapNoProts=cntllc1InSnapNoProts, cntdlActivePort=cntdlActivePort, cnticmpOutTmXceeds=cnticmpOutTmXceeds, cntDot3Requests=cntDot3Requests, cntProxyTable=cntProxyTable, cntllc1OutRetOks=cntllc1OutRetOks, cntFddiMACOldDownstreamNbr=cntFddiMACOldDownstreamNbr, cntHwReset2Why=cntHwReset2Why, cntllc1OutTestResps=cntllc1OutTestResps, cnticmpOutDuFrags=cnticmpOutDuFrags, cntllc1OutXidResps=cntllc1OutXidResps, cntFddiMACBaseLosts=cntFddiMACBaseLosts, cntsctDrecTask=cntsctDrecTask, cntHwCpuTable=cntHwCpuTable, cntau=cntau, cntFddiMACBaseCopies=cntFddiMACBaseCopies, cntFddiRequests=cntFddiRequests, cntdot3Entry=cntdot3Entry, cntdlInDiscards=cntdlInDiscards, cntFddiMACTPri5=cntFddiMACTPri5, cntfddi=cntfddi, cntFddiPortCount=cntFddiPortCount, cntluaEntry=cntluaEntry, cntllc1InXids=cntllc1InXids, cnticmpOutDuHosts=cnticmpOutDuHosts, cntFddiMACTvxExpires=cntFddiMACTvxExpires, cntHwReset2Date=cntHwReset2Date, cntFddiMACMasterSlaveLoopStatus=cntFddiMACMasterSlaveLoopStatus, cntIOCpuNumber=cntIOCpuNumber, cntllc1InSnapNoTypes=cntllc1InSnapNoTypes, cntdlInUnknownProtos=cntdlInUnknownProtos, cntCpuXtraInts=cntCpuXtraInts, cnttraceCpu=cnttraceCpu, cntMsgSeverity=cntMsgSeverity, cnticmpOutReServnets=cnticmpOutReServnets, cntTrapFlags=cntTrapFlags, cnttraceIndex=cnttraceIndex, cntllc1InSnapArps=cntllc1InSnapArps, cntCustomer=cntCustomer, cntSlotInterface=cntSlotInterface, cntFddiMACRootConcentratorMac=cntFddiMACRootConcentratorMac, cntFddiSMT=cntFddiSMT, cntllc1StatsEntry=cntllc1StatsEntry, cntdlMaxPort=cntdlMaxPort, cntdlDescr=cntdlDescr, cntLastTrapMsg=cntLastTrapMsg, cntUsedCaches=cntUsedCaches, cntsctTxDataBytes=cntsctTxDataBytes, cnttrapAddress=cnttrapAddress, cntFddiMACLongGrpAddr=cntFddiMACLongGrpAddr, cntdot3DMAChan3RxErr=cntdot3DMAChan3RxErr, cntdot3PICMemParityErrs=cntdot3PICMemParityErrs, cntHwReset3Date=cntHwReset3Date, cntdot3DMAChan0TxErrs=cntdot3DMAChan0TxErrs, cntFddiMACTPri1=cntFddiMACTPri1, cntCpuIndex=cntCpuIndex, cntCpuResetFlag=cntCpuResetFlag, cntFddiPATHTRmode=cntFddiPATHTRmode, cntPowerIndex=cntPowerIndex, cntCpuTaskTable=cntCpuTaskTable, cntMibObjectCount=cntMibObjectCount, cntHwReset3Why=cntHwReset3Why, cntFddiSMTSetCount=cntFddiSMTSetCount, cntHwStatusLED=cntHwStatusLED, cntFddiMACTPri6=cntFddiMACTPri6, cntCriticalErrMsg=cntCriticalErrMsg, cnticmpOutReNets=cnticmpOutReNets, cntIfPollInterval=cntIfPollInterval, cntllc1OutXmitErrs=cntllc1OutXmitErrs, cntFddiMACShortAlias=cntFddiMACShortAlias, cntFddiPORTBaseLerEstimate=cntFddiPORTBaseLerEstimate, cntCpuLevel7s=cntCpuLevel7s, cntFddiPATHSbaOverhead=cntFddiPATHSbaOverhead, cntHwReset1Why=cntHwReset1Why, cntInformationalMsg=cntInformationalMsg, cntIOEntry=cntIOEntry, cnttraceData=cnttraceData, cntdlState=cntdlState, cntFddiMACNotCopiedRatio=cntFddiMACNotCopiedRatio, cntsnmp=cntsnmp, cntMsgNodeNumber=cntMsgNodeNumber, cntRowModifies=cntRowModifies, cntllc1OutTooBigs=cntllc1OutTooBigs, cntsnmpTrapFlags=cntsnmpTrapFlags, cnttrapIndex=cnttrapIndex, cntifEntry=cntifEntry, cntdot3Chan1Misreads=cntdot3Chan1Misreads, cntMsgContent=cntMsgContent, cntFddiMACBaseTimeFrameError=cntFddiMACBaseTimeFrameError, cntTraceTable=cntTraceTable, cntFddiMACTransmits=cntFddiMACTransmits, cntllc1OutBadIpSizes=cntllc1OutBadIpSizes, cntllc1OutTests=cntllc1OutTests, cnticmpOutTmFrags=cnticmpOutTmFrags, cntIORevLevel=cntIORevLevel, cntllc1InitFlag=cntllc1InitFlag, cntdlSourcePort=cntdlSourcePort, cntFeatureName=cntFeatureName, cntMailTimeouts=cntMailTimeouts, cntFddiMACEntry=cntFddiMACEntry, cntIfsState=cntIfsState, cntSysCpuTable=cntSysCpuTable, cntdlDestPort=cntdlDestPort, cntCpuMemFree=cntCpuMemFree, cntDoDIPCount=cntDoDIPCount, cntsctRxCredit=cntsctRxCredit, cntllc1InUIs=cntllc1InUIs, cntFddiMACBaseFrames=cntFddiMACBaseFrames, cntproxyIndex=cntproxyIndex, cntsnmptrap=cntsnmptrap, cntdot3DMAChan0TxErr=cntdot3DMAChan0TxErr, cntllc1BusId=cntllc1BusId, cntIOSerialNumber=cntIOSerialNumber, cntFddiSMTUserData=cntFddiSMTUserData, cntdlInErrors=cntdlInErrors, cntsctSubChanStatus=cntsctSubChanStatus, cnticmpInReServhosts=cnticmpInReServhosts, cntllc1ErrorEntry=cntllc1ErrorEntry)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, constraints_union, single_value_constraint, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(iso, counter64, mib_identifier, module_identity, counter32, unsigned32, integer32, gauge32, notification_type, enterprises, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, notification_type, ip_address, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'Counter64', 'MibIdentifier', 'ModuleIdentity', 'Counter32', 'Unsigned32', 'Integer32', 'Gauge32', 'NotificationType', 'enterprises', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'NotificationType', 'IpAddress', 'Bits')
(display_string, phys_address, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'PhysAddress', 'TextualConvention')
cnt = mib_identifier((1, 3, 6, 1, 4, 1, 333))
cntau = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1))
cntsystem = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 1))
cnt_sys_node_address = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSysNodeAddress.setStatus('mandatory')
cnt_sys_timeof_day = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSysTimeofDay.setStatus('mandatory')
cnt_sys_msg_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 3))
if mibBuilder.loadTexts:
cntSysMsgTable.setStatus('mandatory')
cnt_msg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntMsgIndex'))
if mibBuilder.loadTexts:
cntMsgEntry.setStatus('mandatory')
cnt_msg_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgIndex.setStatus('mandatory')
cnt_msg_severity = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('information-msg', 1), ('possible-error', 2), ('recoverable-error', 3), ('fatal-error', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgSeverity.setStatus('mandatory')
cnt_msg_task_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgTaskName.setStatus('mandatory')
cnt_msg_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgNumber.setStatus('mandatory')
cnt_msg_cpu_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgCpuNumber.setStatus('mandatory')
cnt_msg_node_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgNodeNumber.setStatus('mandatory')
cnt_msg_date_time = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgDateTime.setStatus('mandatory')
cnt_msg_content = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgContent.setStatus('mandatory')
cnt_msg_seq_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 3, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMsgSeqNumber.setStatus('mandatory')
cnt_sys_hardware = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 1, 4))
cnt_hw_b_bram_type = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('bbram-6500', 1), ('bbram-6704', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwBBramType.setStatus('mandatory')
cnt_hw_b_bram_status = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('good', 1), ('failing', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwBBramStatus.setStatus('mandatory')
cnt_hw_failed_cpu = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('no-failure', 1), ('lcp-1', 2), ('lcp-2', 3), ('lcp-3', 4), ('lcp-4', 5), ('lcp-5', 6), ('lcp-6', 7), ('lcp-7', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwFailedCpu.setStatus('mandatory')
cnt_hw_mon_cpu = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('no-failure', 1), ('lcp-1', 2), ('lcp-2', 3), ('lcp-3', 4), ('lcp-4', 5), ('lcp-5', 6), ('lcp-6', 7), ('lcp-7', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwMonCpu.setStatus('mandatory')
cnt_hw_fail_status = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('not-up', 1), ('ok', 2), ('abort-switch', 3), ('abort-remote', 4), ('parity-error', 5), ('ac-failure', 6), ('system-failure', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwFailStatus.setStatus('mandatory')
cnt_hw_mon_fail_status = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('not-up', 1), ('ok', 2), ('failed', 3), ('mdm-error', 4), ('poll-error', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwMonFailStatus.setStatus('mandatory')
cnt_hw_fail_date = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwFailDate.setStatus('mandatory')
cnt_hw_reset1_why = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwReset1Why.setStatus('mandatory')
cnt_hw_reset1_date = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwReset1Date.setStatus('mandatory')
cnt_hw_reset2_why = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 10), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwReset2Why.setStatus('mandatory')
cnt_hw_reset2_date = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 11), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwReset2Date.setStatus('mandatory')
cnt_hw_reset3_why = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwReset3Why.setStatus('mandatory')
cnt_hw_reset3_date = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 13), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwReset3Date.setStatus('mandatory')
cnt_hw_power_supply = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('good', 1), ('bad', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwPowerSupply.setStatus('mandatory')
cnt_hw_cpu_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15))
if mibBuilder.loadTexts:
cntHwCpuTable.setStatus('mandatory')
cnt_hw_cpu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntCpuNum'))
if mibBuilder.loadTexts:
cntHwCpuEntry.setStatus('mandatory')
cnt_cpu_num = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuNum.setStatus('mandatory')
cnt_cpu_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('no-cpu', 1), ('lcp-type1', 2), ('lcp-type2', 3), ('lcp-type3', 4), ('lcp-type4', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuType.setStatus('mandatory')
cnt_cpu_sem_count = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuSemCount.setStatus('mandatory')
cnt_cpu_sem_lost = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuSemLost.setStatus('mandatory')
cnt_cpu_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('not-up', 1), ('ok', 2), ('abort-switch', 3), ('abort-remote', 4), ('parity-error', 5), ('ac-failure', 6), ('system-failure', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuStatus.setStatus('mandatory')
cnt_cpu_mon_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('not-up', 1), ('ok', 2), ('failed', 3), ('mdm-error', 4), ('poll-error', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuMonStatus.setStatus('mandatory')
cnt_cpu_poll_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('normal', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuPollStatus.setStatus('mandatory')
cnt_cpu_polls = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuPolls.setStatus('mandatory')
cnt_cpu_reset_delay_time = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuResetDelayTime.setStatus('mandatory')
cnt_cpu_mon_by = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuMonBy.setStatus('mandatory')
cnt_cpu_port = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuPort.setStatus('mandatory')
cnt_cpu_unclaims = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuUnclaims.setStatus('mandatory')
cnt_cpu_xtra_ints = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuXtraInts.setStatus('mandatory')
cnt_cpu_level7s = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuLevel7s.setStatus('mandatory')
cnt_cpu_msg_rets = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuMsgRets.setStatus('mandatory')
cnt_cpu_msg_holds = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuMsgHolds.setStatus('mandatory')
cnt_cpu_reset_flag = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuResetFlag.setStatus('mandatory')
cnt_cpu_util = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuUtil.setStatus('mandatory')
cnt_cpu_last_fail_date = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 19), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuLastFailDate.setStatus('mandatory')
cnt_cpu_last_chg_date = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 15, 1, 20), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuLastChgDate.setStatus('mandatory')
cnt_hw_status_led = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 4, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntHwStatusLED.setStatus('mandatory')
cnt_sys_build = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 1, 5))
cnt_rev_date = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntRevDate.setStatus('mandatory')
cnt_customer = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCustomer.setStatus('mandatory')
cnt_machine_type = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMachineType.setStatus('mandatory')
cnt_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSerialNumber.setStatus('mandatory')
cnt_work_order_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntWorkOrderNumber.setStatus('mandatory')
cnt_chassis_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntChassisNumber.setStatus('mandatory')
cnt_model_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntModelNumber.setStatus('mandatory')
cnt_release_level = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntReleaseLevel.setStatus('mandatory')
cnt_rev_edit_date = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 9), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntRevEditDate.setStatus('mandatory')
cnt_rev_edit_time = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 10), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntRevEditTime.setStatus('mandatory')
cnt_feature_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11))
if mibBuilder.loadTexts:
cntFeatureTable.setStatus('mandatory')
cnt_feature_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntFeatureIndex'))
if mibBuilder.loadTexts:
cntFeatureEntry.setStatus('mandatory')
cnt_feature_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFeatureIndex.setStatus('mandatory')
cnt_feature_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFeatureName.setStatus('mandatory')
cnt_feature_quantity = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFeatureQuantity.setStatus('mandatory')
cnt_feature_descr = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 11, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFeatureDescr.setStatus('mandatory')
cnt_slot_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12))
if mibBuilder.loadTexts:
cntSlotTable.setStatus('mandatory')
cnt_slot_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntSlotIndex'))
if mibBuilder.loadTexts:
cntSlotEntry.setStatus('mandatory')
cnt_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotIndex.setStatus('mandatory')
cnt_slot_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotName.setStatus('mandatory')
cnt_slot_part_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotPartNumber.setStatus('mandatory')
cnt_slot_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotSerialNumber.setStatus('mandatory')
cnt_slot_rev_level = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotRevLevel.setStatus('mandatory')
cnt_slot_interface = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotInterface.setStatus('mandatory')
cnt_slot_cpu_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotCpuNumber.setStatus('mandatory')
cnt_slot_vm_ebus_grant = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 12, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSlotVMEbusGrant.setStatus('mandatory')
cnt_io_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13))
if mibBuilder.loadTexts:
cntIOTable.setStatus('mandatory')
cnt_io_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntIOIndex'))
if mibBuilder.loadTexts:
cntIOEntry.setStatus('mandatory')
cnt_io_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIOIndex.setStatus('mandatory')
cnt_io_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIOName.setStatus('mandatory')
cnt_io_part_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIOPartNumber.setStatus('mandatory')
cnt_io_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIOSerialNumber.setStatus('mandatory')
cnt_io_rev_level = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIORevLevel.setStatus('mandatory')
cnt_io_interface = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIOInterface.setStatus('mandatory')
cnt_io_cpu_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 13, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIOCpuNumber.setStatus('mandatory')
cnt_power_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14))
if mibBuilder.loadTexts:
cntPowerTable.setStatus('mandatory')
cnt_power_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntPowerIndex'))
if mibBuilder.loadTexts:
cntPowerEntry.setStatus('mandatory')
cnt_power_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntPowerIndex.setStatus('mandatory')
cnt_power_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntPowerName.setStatus('mandatory')
cnt_power_part_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntPowerPartNumber.setStatus('mandatory')
cnt_power_serial_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntPowerSerialNumber.setStatus('mandatory')
cnt_power_rev_level = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 14, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntPowerRevLevel.setStatus('mandatory')
cnt_scr_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15))
if mibBuilder.loadTexts:
cntSCRTable.setStatus('mandatory')
cnt_scr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntSCRIndex'))
if mibBuilder.loadTexts:
cntSCREntry.setStatus('mandatory')
cnt_scr_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSCRIndex.setStatus('mandatory')
cnt_scr_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 15, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSCRNumber.setStatus('mandatory')
cnt_serial_alfa_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 5, 16), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSerialAlfaNumber.setStatus('mandatory')
cnt_sys_memory = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 1, 6))
cnt_mem_b_bram_address = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMemBBramAddress.setStatus('mandatory')
cnt_mem_b_bram_space = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMemBBramSpace.setStatus('mandatory')
cnt_mem_b_bram_free = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMemBBramFree.setStatus('mandatory')
cnt_mem_sram_address = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMemSramAddress.setStatus('mandatory')
cnt_mem_sram_space = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMemSramSpace.setStatus('mandatory')
cnt_mem_sram_free = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 1, 6, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMemSramFree.setStatus('mandatory')
cnt_sys_cpu_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 7))
if mibBuilder.loadTexts:
cntSysCpuTable.setStatus('mandatory')
cnt_sys_cpu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntCpuIndex'))
if mibBuilder.loadTexts:
cntSysCpuEntry.setStatus('mandatory')
cnt_cpu_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuIndex.setStatus('mandatory')
cnt_cpu_mem_space = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuMemSpace.setStatus('mandatory')
cnt_cpu_mem_free = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuMemFree.setStatus('mandatory')
cnt_cpu_task_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4))
if mibBuilder.loadTexts:
cntCpuTaskTable.setStatus('mandatory')
cnt_cpu_task_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntCpuTaskIndex'))
if mibBuilder.loadTexts:
cntCpuTaskEntry.setStatus('mandatory')
cnt_cpu_task_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuTaskIndex.setStatus('mandatory')
cnt_cpu_task_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 1, 7, 1, 4, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCpuTaskName.setStatus('mandatory')
cntinterfaces = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 2))
cntif_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 2, 1))
if mibBuilder.loadTexts:
cntifTable.setStatus('mandatory')
cntif_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntifIndex'))
if mibBuilder.loadTexts:
cntifEntry.setStatus('mandatory')
cntif_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntifIndex.setStatus('mandatory')
cntif_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63))).clone(namedValues=named_values(('other', 1), ('regular1822', 2), ('hdh1822', 3), ('ddn-x25', 4), ('rfc877-x25', 5), ('ethernet', 6), ('ethernet88023', 7), ('tokenBus', 8), ('tokenRing', 9), ('smds', 10), ('starLan', 11), ('proteon-10MBit', 12), ('proteon-80MBit', 13), ('hyperchannel', 14), ('fddi', 15), ('lapb', 16), ('sdlc', 17), ('t1', 18), ('cept', 19), ('basicIsdn', 20), ('primaryIsdn', 21), ('maintenance', 22), ('ppp', 23), ('sofwareLoopback', 24), ('eon', 25), ('ethernet-3Mbit', 26), ('nsip', 27), ('slip', 28), ('ultra', 29), ('ds3', 30), ('sip', 31), ('frame-relay', 32), ('hssi-dte', 33), ('fibre-trunk', 34), ('hippi', 35), ('crayfullduplex', 36), ('pt-to-pt-fiber', 37), ('channel-to-channel', 38), ('peripheral-gateway', 39), ('tape-pipelining', 40), ('tape-dasd', 41), ('hssi-dce', 42), ('ibm-channel', 43), ('dual-trunk', 44), ('teradata', 45), ('cray-hyperchannel', 46), ('scsi-target', 47), ('snmp-gateway', 48), ('ppp-async', 49), ('escon-host', 50), ('escon-peripheral', 51), ('tapecontrol-rs232', 52), ('ultra-dte', 53), ('ultra-dce', 54), ('fddi-ss', 55), ('hssi-ss', 56), ('tunneling', 57), ('stackstarter', 58), ('ethernet-geni', 59), ('tokenring-geni', 60), ('atm', 61), ('scsi-initiator', 62), ('escon-srdf', 63)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntifType.setStatus('mandatory')
cntif_cpu = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntifCpu.setStatus('mandatory')
cntif_sub_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntifSubIndex.setStatus('mandatory')
cnt_ifs_state = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIfsState.setStatus('mandatory')
cnticmp = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 5))
cnticmp_in_du_nets = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInDuNets.setStatus('mandatory')
cnticmp_in_du_hosts = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInDuHosts.setStatus('mandatory')
cnticmp_in_du_protos = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInDuProtos.setStatus('mandatory')
cnticmp_in_du_ports = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInDuPorts.setStatus('mandatory')
cnticmp_in_du_frags = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInDuFrags.setStatus('mandatory')
cnticmp_in_du_sources = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInDuSources.setStatus('mandatory')
cnticmp_in_tm_xceeds = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInTmXceeds.setStatus('mandatory')
cnticmp_in_tm_frags = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInTmFrags.setStatus('mandatory')
cnticmp_in_re_nets = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInReNets.setStatus('mandatory')
cnticmp_in_re_hosts = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInReHosts.setStatus('mandatory')
cnticmp_in_re_servnets = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInReServnets.setStatus('mandatory')
cnticmp_in_re_servhosts = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpInReServhosts.setStatus('mandatory')
cnticmp_out_du_nets = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutDuNets.setStatus('mandatory')
cnticmp_out_du_hosts = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutDuHosts.setStatus('mandatory')
cnticmp_out_du_protos = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutDuProtos.setStatus('mandatory')
cnticmp_out_du_ports = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutDuPorts.setStatus('mandatory')
cnticmp_out_du_frags = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutDuFrags.setStatus('mandatory')
cnticmp_out_du_sources = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutDuSources.setStatus('mandatory')
cnticmp_out_tm_xceeds = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutTmXceeds.setStatus('mandatory')
cnticmp_out_tm_frags = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutTmFrags.setStatus('mandatory')
cnticmp_out_re_nets = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutReNets.setStatus('mandatory')
cnticmp_out_re_hosts = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutReHosts.setStatus('mandatory')
cnticmp_out_re_servnets = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutReServnets.setStatus('mandatory')
cnticmp_out_re_servhosts = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 5, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnticmpOutReServhosts.setStatus('mandatory')
cnttransmission = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 10))
cntdot3 = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 1))
cntdot3_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1))
if mibBuilder.loadTexts:
cntdot3Table.setStatus('mandatory')
cntdot3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntdot3Index'))
if mibBuilder.loadTexts:
cntdot3Entry.setStatus('mandatory')
cntdot3_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3Index.setStatus('mandatory')
cntdot3_software_id = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3SoftwareID.setStatus('mandatory')
cntdot3_bufs_allocated = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3BufsAllocated.setStatus('mandatory')
cntdot3_buf_too_manys = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3BufTooManys.setStatus('mandatory')
cntdot3_buf_not_avails = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3BufNotAvails.setStatus('mandatory')
cntdot3_buf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3BufPriority.setStatus('mandatory')
cntdot3_pic_bus_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3PICBusErrs.setStatus('mandatory')
cntdot3_picdma_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3PICDMAErrs.setStatus('mandatory')
cntdot3_pic_mem_seq_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3PICMemSeqErrs.setStatus('mandatory')
cntdot3_pic_mem_parity_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3PICMemParityErrs.setStatus('mandatory')
cntdot3_pic_spurious_ints = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3PICSpuriousInts.setStatus('mandatory')
cntdot3_lance_ints = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LanceInts.setStatus('mandatory')
cntdot3_lance_parity_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LanceParityErrs.setStatus('mandatory')
cntdot3_lance_mem_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LanceMemErrs.setStatus('mandatory')
cntdot3_lance_missed_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LanceMissedPkts.setStatus('mandatory')
cntdot3_lance_under_flows = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LanceUnderFlows.setStatus('mandatory')
cntdot3_lance_over_flows = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LanceOverFlows.setStatus('mandatory')
cntdot3_lance_tx_wait_q = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LanceTxWaitQ.setStatus('mandatory')
cntdot3_dma_chan1_rx_err = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 5, 6, 7, 9, 10, 11, 13, 15, 16, 17))).clone(namedValues=named_values(('no-error', 0), ('config', 1), ('operation-timing', 2), ('address-mar', 5), ('address-dar', 6), ('address-bar', 7), ('buserr-mar', 9), ('buserr-dar', 10), ('buserr-bar', 11), ('count-mtc', 13), ('count-btc', 15), ('external-abort', 16), ('external-software-abort', 17)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan1RxErr.setStatus('mandatory')
cntdot3_dma_chan3_rx_err = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18))).clone(namedValues=named_values(('no-error', 1), ('config', 2), ('operation-timing', 3), ('address-mar', 6), ('address-dar', 7), ('address-bar', 8), ('buserr-mar', 10), ('buserr-dar', 11), ('buserr-bar', 12), ('count-mtc', 14), ('count-btc', 16), ('external-abort', 17), ('external-software-abort', 18)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan3RxErr.setStatus('mandatory')
cntdot3_dma_chan0_tx_err = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18))).clone(namedValues=named_values(('no-error', 1), ('config', 2), ('operation-timing', 3), ('address-mar', 6), ('address-dar', 7), ('address-bar', 8), ('buserr-mar', 10), ('buserr-dar', 11), ('buserr-bar', 12), ('count-mtc', 14), ('count-btc', 16), ('external-abort', 17), ('external-software-abort', 18)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan0TxErr.setStatus('mandatory')
cntdot3_dma_chan2_tx_err = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 6, 7, 8, 10, 11, 12, 14, 16, 17, 18))).clone(namedValues=named_values(('no-error', 1), ('config', 2), ('operation-timing', 3), ('address-mar', 6), ('address-dar', 7), ('address-bar', 8), ('buserr-mar', 10), ('buserr-dar', 11), ('buserr-bar', 12), ('count-mtc', 14), ('count-btc', 16), ('external-abort', 17), ('external-software-abort', 18)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan2TxErr.setStatus('mandatory')
cntdot3_dma_chan1_rx_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan1RxErrs.setStatus('mandatory')
cntdot3_dma_chan3_rx_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan3RxErrs.setStatus('mandatory')
cntdot3_dma_chan0_tx_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan0TxErrs.setStatus('mandatory')
cntdot3_dma_chan2_tx_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMAChan2TxErrs.setStatus('mandatory')
cntdot3_dma_rx_wait_q = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 27), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMARxWaitQ.setStatus('mandatory')
cntdot3_dma_tx_wait_q = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 28), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3DMATxWaitQ.setStatus('mandatory')
cntdot3_lpx_parity_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3LPXParityErrs.setStatus('mandatory')
cntdot3_chan1_misreads = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 1, 1, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdot3Chan1Misreads.setStatus('mandatory')
cntfddi = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2))
cnt_fddi_smt = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1))
cnt_fddi_mac = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2))
cnt_fddi_path = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3))
cnt_fddi_port = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4))
cnt_fddi_smt_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTNumber.setStatus('mandatory')
cnt_fddi_smt_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2))
if mibBuilder.loadTexts:
cntFddiSMTTable.setStatus('mandatory')
cnt_fddi_smt_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntFddiSMTIndex'))
if mibBuilder.loadTexts:
cntFddiSMTEntry.setStatus('mandatory')
cnt_fddi_smt_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTIndex.setStatus('mandatory')
cnt_fddi_smt_manufacturer_data = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTManufacturerData.setStatus('optional')
cnt_fddi_smt_user_data = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 3), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTUserData.setStatus('optional')
cnt_fddi_smt_report_limit = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTReportLimit.setStatus('optional')
cnt_fddi_smt_msg_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTMsgTimeStamp.setStatus('mandatory')
cnt_fddi_smt_transition_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTTransitionTimeStamp.setStatus('mandatory')
cnt_fddi_smt_set_count = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 7), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTSetCount.setStatus('optional')
cnt_fddi_smt_last_set_station_id = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 1, 2, 1, 8), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiSMTLastSetStationID.setStatus('optional')
cnt_fddi_mac_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACNumber.setStatus('mandatory')
cnt_fddi_mac_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2))
if mibBuilder.loadTexts:
cntFddiMACTable.setStatus('mandatory')
cnt_fddi_mac_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntFddiMACSMTIndex'))
if mibBuilder.loadTexts:
cntFddiMACEntry.setStatus('mandatory')
cnt_fddi_macsmt_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACSMTIndex.setStatus('mandatory')
cnt_fddi_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACIndex.setStatus('mandatory')
cnt_fddi_mac_bridge_function = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBridgeFunction.setStatus('optional')
cnt_fddi_mac_downstream_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACDownstreamNbr.setStatus('optional')
cnt_fddi_mac_old_downstream_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACOldDownstreamNbr.setStatus('optional')
cnt_fddi_mac_root_concentrator_mac = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACRootConcentratorMac.setStatus('optional')
cnt_fddi_mac_long_alias = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACLongAlias.setStatus('optional')
cnt_fddi_mac_short_alias = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACShortAlias.setStatus('optional')
cnt_fddi_mac_long_grp_addr = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACLongGrpAddr.setStatus('optional')
cnt_fddi_mac_short_grp_addr = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACShortGrpAddr.setStatus('optional')
cnt_fddi_mact_pri0 = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTPri0.setStatus('optional')
cnt_fddi_mact_pri1 = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTPri1.setStatus('optional')
cnt_fddi_mact_pri2 = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTPri2.setStatus('optional')
cnt_fddi_mact_pri3 = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTPri3.setStatus('optional')
cnt_fddi_mact_pri4 = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 15), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTPri4.setStatus('optional')
cnt_fddi_mact_pri5 = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 16), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTPri5.setStatus('optional')
cnt_fddi_mact_pri6 = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 17), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTPri6.setStatus('optional')
cnt_fddi_mac_copies = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACCopies.setStatus('optional')
cnt_fddi_mac_transmits = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTransmits.setStatus('optional')
cnt_fddi_mac_tokens = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTokens.setStatus('optional')
cnt_fddi_mac_tvx_expires = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACTvxExpires.setStatus('optional')
cnt_fddi_mac_not_copies = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACNotCopies.setStatus('optional')
cnt_fddi_mac_lates = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACLates.setStatus('optional')
cnt_fddi_mac_ring_ops = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACRingOps.setStatus('optional')
cnt_fddi_mac_base_frames = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBaseFrames.setStatus('optional')
cnt_fddi_mac_base_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBaseErrs.setStatus('optional')
cnt_fddi_mac_base_losts = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBaseLosts.setStatus('optional')
cnt_fddi_mac_base_time_frame_error = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 28), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBaseTimeFrameError.setStatus('optional')
cnt_fddi_mac_base_not_copies = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBaseNotCopies.setStatus('optional')
cnt_fddi_mac_base_time_not_copied = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 30), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBaseTimeNotCopied.setStatus('optional')
cnt_fddi_mac_not_copied_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 31), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACNotCopiedThreshold.setStatus('optional')
cnt_fddi_mac_base_copies = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACBaseCopies.setStatus('optional')
cnt_fddi_mac_not_copied_ratio = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 33), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACNotCopiedRatio.setStatus('optional')
cnt_fddi_mac_not_copied_condition = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 34), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACNotCopiedCondition.setStatus('optional')
cnt_fddi_macllc_service_available = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 35), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACLLCServiceAvailable.setStatus('optional')
cnt_fddi_mac_master_slave_loop_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 36), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACMasterSlaveLoopStatus.setStatus('optional')
cnt_fddi_mac_root_mac_down_stream_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 37), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACRootMACDownStreamPORTType.setStatus('optional')
cnt_fddi_mac_root_mac_current_path = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 2, 2, 1, 38), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiMACRootMACCurrentPath.setStatus('optional')
cnt_fddi_path_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHNumber.setStatus('mandatory')
cnt_fddi_path_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2))
if mibBuilder.loadTexts:
cntFddiPATHTable.setStatus('mandatory')
cnt_fddi_path_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntFddiPATHSMTIndex'))
if mibBuilder.loadTexts:
cntFddiPATHEntry.setStatus('mandatory')
cnt_fddi_pathsmt_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHSMTIndex.setStatus('mandatory')
cnt_fddi_path_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHIndex.setStatus('mandatory')
cnt_fddi_path_trace_max_expiration = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHTraceMaxExpiration.setStatus('mandatory')
cnt_fddi_pathtvx_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHTVXLowerBound.setStatus('optional')
cnt_fddi_patht_max_lower_bound = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHTMaxLowerBound.setStatus('optional')
cnt_fddi_path_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHType.setStatus('mandatory')
cnt_fddi_pathport_order = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHPORTOrder.setStatus('mandatory')
cnt_fddi_path_ring_latency = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHRingLatency.setStatus('optional')
cnt_fddi_path_trace_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHTraceStatus.setStatus('optional')
cnt_fddi_path_sba = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHSba.setStatus('mandatory')
cnt_fddi_path_sba_overhead = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHSbaOverhead.setStatus('mandatory')
cnt_fddi_path_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHStatus.setStatus('mandatory')
cnt_fddi_patht_rmode = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 3, 2, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPATHTRmode.setStatus('optional')
cnt_fddi_port_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTNumber.setStatus('mandatory')
cnt_fddi_port_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2))
if mibBuilder.loadTexts:
cntFddiPORTTable.setStatus('mandatory')
cnt_fddi_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntFddiPORTSMTIndex'))
if mibBuilder.loadTexts:
cntFddiPORTEntry.setStatus('mandatory')
cnt_fddi_portsmt_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTSMTIndex.setStatus('mandatory')
cnt_fddi_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTIndex.setStatus('mandatory')
cnt_fddi_port_fotx_class = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTFotxClass.setStatus('optional')
cnt_fddi_port_maint_line_state = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTMaintLineState.setStatus('optional')
cnt_fddi_porteb_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTEBErrs.setStatus('optional')
cnt_fddi_port_base_ler_estimate = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTBaseLerEstimate.setStatus('mandatory')
cnt_fddi_port_base_lem_rejects = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTBaseLemRejects.setStatus('mandatory')
cnt_fddi_port_base_lems = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTBaseLems.setStatus('mandatory')
cnt_fddi_port_base_ler_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 10, 2, 4, 2, 1, 9), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPORTBaseLerTimeStamp.setStatus('mandatory')
cntsnmp = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 11))
cntsnmpconfig = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 1))
cnt_mib_version = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMibVersion.setStatus('mandatory')
cnt_mib_object_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMibObjectCount.setStatus('mandatory')
cnt_config_version = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntConfigVersion.setStatus('mandatory')
cnt_proxy_status = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('no-proxy', 1), ('proxy-agent', 2), ('proxied-node', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntProxyStatus.setStatus('mandatory')
cnt_proxy_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntProxyCount.setStatus('mandatory')
cnt_snmp_buffer_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSnmpBufferCount.setStatus('mandatory')
cnt_if_poll_interval = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIfPollInterval.setStatus('mandatory')
cnt_if_next_poll = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntIfNextPoll.setStatus('mandatory')
cnt_do_dip_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntDoDIPCount.setStatus('mandatory')
cnt_dot3_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntDot3Count.setStatus('mandatory')
cnt_fddi_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiCount.setStatus('mandatory')
cnt_fddi_port_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiPortCount.setStatus('mandatory')
cnt_data_link_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntDataLinkCount.setStatus('mandatory')
cnt_llc1_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 14), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntLLC1Count.setStatus('mandatory')
cnt_cofi_version = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 1, 15), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCofiVersion.setStatus('mandatory')
cntsnmpstat = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 2))
cnt_mib2_requests = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMib2Requests.setStatus('mandatory')
cnt_fddi_requests = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntFddiRequests.setStatus('mandatory')
cnt_dot3_requests = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntDot3Requests.setStatus('mandatory')
cnt_cnt_requests = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCntRequests.setStatus('mandatory')
cnt_row_additions = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntRowAdditions.setStatus('mandatory')
cnt_row_modifies = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntRowModifies.setStatus('mandatory')
cnt_row_deletions = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntRowDeletions.setStatus('mandatory')
cnt_row_errors = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntRowErrors.setStatus('mandatory')
cnt_bad_versions = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntBadVersions.setStatus('mandatory')
cnt_no_buffers = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntNoBuffers.setStatus('mandatory')
cnt_mail_timeouts = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntMailTimeouts.setStatus('mandatory')
cnt_cached_responses = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntCachedResponses.setStatus('mandatory')
cnt_used_caches = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 2, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntUsedCaches.setStatus('mandatory')
cntsnmptrap = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 3))
cnt_trap_dest_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntTrapDestCount.setStatus('mandatory')
cnt_last_trap_msg = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntLastTrapMsg.setStatus('mandatory')
cnt_trap_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3))
if mibBuilder.loadTexts:
cntTrapTable.setStatus('mandatory')
cnttrap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1)).setIndexNames((0, 'CNTAU-MIB', 'cnttrapIndex'))
if mibBuilder.loadTexts:
cnttrapEntry.setStatus('mandatory')
cnttrap_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnttrapIndex.setStatus('mandatory')
cnttrap_address = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnttrapAddress.setStatus('mandatory')
cntsnmp_trap_flags = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsnmpTrapFlags.setStatus('mandatory')
cnt_trap_flags = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntTrapFlags.setStatus('mandatory')
cnttrap_if = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 3, 3, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnttrapIf.setStatus('mandatory')
cntsnmpproxy = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 11, 4))
cnt_proxy_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1))
if mibBuilder.loadTexts:
cntProxyTable.setStatus('mandatory')
cntproxy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntproxyIndex'))
if mibBuilder.loadTexts:
cntproxyEntry.setStatus('mandatory')
cntproxy_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntproxyIndex.setStatus('mandatory')
cntproxy_address = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntproxyAddress.setStatus('mandatory')
cntproxy_node = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 11, 4, 1, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntproxyNode.setStatus('mandatory')
cntdiagnostics = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 12))
cnt_trace_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 12, 1))
if mibBuilder.loadTexts:
cntTraceTable.setStatus('mandatory')
cnttrace_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1)).setIndexNames((0, 'CNTAU-MIB', 'cnttraceIndex'))
if mibBuilder.loadTexts:
cnttraceEntry.setStatus('mandatory')
cnttrace_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnttraceIndex.setStatus('mandatory')
cnttrace_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnttraceType.setStatus('mandatory')
cnttrace_cpu = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnttraceCpu.setStatus('mandatory')
cnttrace_data = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 1, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cnttraceData.setStatus('mandatory')
cnt_mail_queue = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 12, 2))
cnt_mdm_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1))
if mibBuilder.loadTexts:
cntMDMTable.setStatus('mandatory')
cnt_mdm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntmdmQIndex'))
if mibBuilder.loadTexts:
cntMDMEntry.setStatus('mandatory')
cntmdm_q_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntmdmQIndex.setStatus('mandatory')
cntmdm_q_name = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntmdmQName.setStatus('mandatory')
cntmdm_q_process_id = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntmdmQProcessId.setStatus('mandatory')
cntmdm_q_task_id = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntmdmQTaskId.setStatus('mandatory')
cntmdm_q_list = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 12, 2, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntmdmQList.setStatus('mandatory')
cntdatalink = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 13))
cntdl_number = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 13, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlNumber.setStatus('mandatory')
cntdl_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 13, 2))
if mibBuilder.loadTexts:
cntdlTable.setStatus('mandatory')
cntdl_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntdlIndex'))
if mibBuilder.loadTexts:
cntdlEntry.setStatus('mandatory')
cntdl_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlIndex.setStatus('mandatory')
cntdl_descr = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlDescr.setStatus('mandatory')
cntdl_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('llc1', 1), ('llc2', 2), ('llc3', 3), ('snap', 4), ('cnet', 5), ('dnls', 6), ('strp', 7), ('ppp', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlType.setStatus('mandatory')
cntdl_typeof_service = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unacked-connectionless', 1), ('connection-oriented', 2), ('acked-connectionless', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlTypeofService.setStatus('mandatory')
cntdl_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlMtu.setStatus('mandatory')
cntdl_port_addr_len = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlPortAddrLen.setStatus('mandatory')
cntdl_max_port = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlMaxPort.setStatus('mandatory')
cntdl_active_port = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlActivePort.setStatus('mandatory')
cntdl_in_octets = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlInOctets.setStatus('mandatory')
cntdl_in_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlInUcastPkts.setStatus('mandatory')
cntdl_in_n_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlInNUcastPkts.setStatus('mandatory')
cntdl_in_discards = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlInDiscards.setStatus('mandatory')
cntdl_in_errors = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlInErrors.setStatus('mandatory')
cntdl_in_unknown_protos = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlInUnknownProtos.setStatus('mandatory')
cntdl_out_octets = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlOutOctets.setStatus('mandatory')
cntdl_out_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlOutUcastPkts.setStatus('mandatory')
cntdl_out_n_ucast_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlOutNUcastPkts.setStatus('mandatory')
cntdl_out_discards = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlOutDiscards.setStatus('mandatory')
cntdl_out_errors = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlOutErrors.setStatus('mandatory')
cntdl_out_q_len = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 20), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlOutQLen.setStatus('mandatory')
cntdl_port_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21))
if mibBuilder.loadTexts:
cntdlPortTable.setStatus('mandatory')
cntdl_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntdlPortIndex'))
if mibBuilder.loadTexts:
cntdlPortEntry.setStatus('mandatory')
cntdl_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlPortIndex.setStatus('mandatory')
cntdl_state = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('connected', 1), ('data-transfer', 2), ('disconnected', 3), ('waiting-for-ack', 4), ('down', 5), ('closed', 6), ('listen', 7), ('ack-sent', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlState.setStatus('mandatory')
cntdl_source_port = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlSourcePort.setStatus('mandatory')
cntdl_dest_port = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlDestPort.setStatus('mandatory')
cntdl_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 2, 1, 21, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('dod-ip', 1), ('arp', 2), ('snmp', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntdlPortType.setStatus('mandatory')
cntllc1 = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 13, 3))
cntllc1_config_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1))
if mibBuilder.loadTexts:
cntllc1ConfigTable.setStatus('mandatory')
cntllc1_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntllc1ConfigIndex'))
if mibBuilder.loadTexts:
cntllc1ConfigEntry.setStatus('mandatory')
cntllc1_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1ConfigIndex.setStatus('mandatory')
cntllc1_driver_type = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('cnt-node', 1), ('fddi', 2), ('fibre-trunk', 3), ('native', 4), ('ethernet', 5), ('hippi', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1DriverType.setStatus('mandatory')
cntllc1_addr = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 3), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1Addr.setStatus('mandatory')
cntllc1_init_flag = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('uninitialized', 1), ('initialized', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InitFlag.setStatus('mandatory')
cntllc1_trace_flag = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1TraceFlag.setStatus('mandatory')
cntllc1_buf_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1BufCnt.setStatus('mandatory')
cntllc1_bus_id = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1BusId.setStatus('mandatory')
cntllc1_cpu_num = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('lcp-1', 1), ('lcp-2', 2), ('lcp-3', 3), ('lcp-4', 4), ('lcp-5', 5), ('lcp-6', 6), ('lcp-7', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1CpuNum.setStatus('mandatory')
cntllc1_buf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1BufPriority.setStatus('mandatory')
cntllc1_wait_time_out = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1WaitTimeOut.setStatus('mandatory')
cntllc1_stats_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2))
if mibBuilder.loadTexts:
cntllc1StatsTable.setStatus('mandatory')
cntllc1_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntllc1StatIndex'))
if mibBuilder.loadTexts:
cntllc1StatsEntry.setStatus('mandatory')
cntllc1_stat_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1StatIndex.setStatus('mandatory')
cntllc1_in_xids = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InXids.setStatus('mandatory')
cntllc1_in_tests = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InTests.setStatus('mandatory')
cntllc1_in_u_is = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InUIs.setStatus('mandatory')
cntllc1_in_no_dsaps = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InNoDsaps.setStatus('mandatory')
cntllc1_in_xid_oks = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InXidOks.setStatus('mandatory')
cntllc1_in_test_oks = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InTestOks.setStatus('mandatory')
cntllc1_in_snap_ips = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InSnapIps.setStatus('mandatory')
cntllc1_in_snap_arps = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InSnapArps.setStatus('mandatory')
cntllc1_in_snap_no_prots = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InSnapNoProts.setStatus('mandatory')
cntllc1_in_snap_no_types = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InSnapNoTypes.setStatus('mandatory')
cntllc1_out_snap_ips = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutSnapIps.setStatus('mandatory')
cntllc1_out_snap_arps = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutSnapArps.setStatus('mandatory')
cntllc1_out_xids = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutXids.setStatus('mandatory')
cntllc1_out_xid_resps = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutXidResps.setStatus('mandatory')
cntllc1_out_tests = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutTests.setStatus('mandatory')
cntllc1_out_test_resps = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutTestResps.setStatus('mandatory')
cntllc1_out_ret_oks = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutRetOks.setStatus('mandatory')
cntllc1_out_frag_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 2, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutFragPkts.setStatus('mandatory')
cntllc1_error_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3))
if mibBuilder.loadTexts:
cntllc1ErrorTable.setStatus('mandatory')
cntllc1_error_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntllc1ErrorIndex'))
if mibBuilder.loadTexts:
cntllc1ErrorEntry.setStatus('mandatory')
cntllc1_error_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1ErrorIndex.setStatus('mandatory')
cntllc1_arp_mail_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1ArpMailErrs.setStatus('mandatory')
cntllc1_ip_mail_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1IpMailErrs.setStatus('mandatory')
cntllc1_out_xmit_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutXmitErrs.setStatus('mandatory')
cntllc1_out_mcast_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutMcastErrs.setStatus('mandatory')
cntllc1_xid_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1XidErrs.setStatus('mandatory')
cntllc1_test_errs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1TestErrs.setStatus('mandatory')
cntllc1_in_bad_types = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InBadTypes.setStatus('mandatory')
cntllc1_out_mism_ip_sizes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutMismIpSizes.setStatus('mandatory')
cntllc1_out_bad_ip_sizes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutBadIpSizes.setStatus('mandatory')
cntllc1_in_mism_ip_sizes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InMismIpSizes.setStatus('mandatory')
cntllc1_in_bad_ip_sizes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InBadIpSizes.setStatus('mandatory')
cntllc1_in_late_xids = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InLateXids.setStatus('mandatory')
cntllc1_in_late_tests = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1InLateTests.setStatus('mandatory')
cntllc1_out_too_bigs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutTooBigs.setStatus('mandatory')
cntllc1_out_no_rooms = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutNoRooms.setStatus('mandatory')
cntllc1_out_ret_bads = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 13, 3, 3, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntllc1OutRetBads.setStatus('mandatory')
cntlua = mib_identifier((1, 3, 6, 1, 4, 1, 333, 1, 14))
cnt_lua_count = mib_scalar((1, 3, 6, 1, 4, 1, 333, 1, 14, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntLuaCount.setStatus('mandatory')
cnt_lua_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 14, 2))
if mibBuilder.loadTexts:
cntLuaTable.setStatus('mandatory')
cntlua_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntluaIf'))
if mibBuilder.loadTexts:
cntluaEntry.setStatus('mandatory')
cntlua_if = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntluaIf.setStatus('mandatory')
cntlua_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntluaNumber.setStatus('mandatory')
cnt_sub_chan_count = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntSubChanCount.setStatus('mandatory')
cnt_sub_chan_table = mib_table((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4))
if mibBuilder.loadTexts:
cntSubChanTable.setStatus('mandatory')
cntsubchan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1)).setIndexNames((0, 'CNTAU-MIB', 'cntsctIndex'))
if mibBuilder.loadTexts:
cntsubchanEntry.setStatus('mandatory')
cntsct_index = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctIndex.setStatus('mandatory')
cntsct_number = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctNumber.setStatus('mandatory')
cntsct_tx_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctTxStatus.setStatus('mandatory')
cntsct_rx_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctRxStatus.setStatus('mandatory')
cntsct_sub_chan_status = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctSubChanStatus.setStatus('mandatory')
cntsct_state = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctState.setStatus('mandatory')
cntsct_rx_credit = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctRxCredit.setStatus('mandatory')
cntsct_rx_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctRxMsgs.setStatus('mandatory')
cntsct_rx_msg_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctRxMsgBytes.setStatus('mandatory')
cntsct_rx_data_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctRxDataBytes.setStatus('mandatory')
cntsct_tx_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctTxMsgs.setStatus('mandatory')
cntsct_tx_msg_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctTxMsgBytes.setStatus('mandatory')
cntsct_tx_data_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctTxDataBytes.setStatus('mandatory')
cntsct_tx_err_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctTxErrMsgs.setStatus('mandatory')
cntsct_total_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctTotalBytes.setStatus('mandatory')
cntsct_drec_pid = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 16), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctDrecPid.setStatus('mandatory')
cntsct_drec_task = mib_table_column((1, 3, 6, 1, 4, 1, 333, 1, 14, 2, 1, 4, 1, 17), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cntsctDrecTask.setStatus('mandatory')
cnt_informational_msg = notification_type((1, 3, 6, 1, 4, 1, 333, 1) + (0, 1)).setObjects(('CNTAU-MIB', 'cntMsgTaskName'), ('CNTAU-MIB', 'cntMsgNumber'), ('CNTAU-MIB', 'cntMsgCpuNumber'), ('CNTAU-MIB', 'cntMsgNodeNumber'), ('CNTAU-MIB', 'cntMsgDateTime'), ('CNTAU-MIB', 'cntMsgContent'))
cnt_possible_err_msg = notification_type((1, 3, 6, 1, 4, 1, 333, 1) + (0, 2)).setObjects(('CNTAU-MIB', 'cntMsgTaskName'), ('CNTAU-MIB', 'cntMsgNumber'), ('CNTAU-MIB', 'cntMsgCpuNumber'), ('CNTAU-MIB', 'cntMsgNodeNumber'), ('CNTAU-MIB', 'cntMsgDateTime'), ('CNTAU-MIB', 'cntMsgContent'))
cnt_severe_err_msg = notification_type((1, 3, 6, 1, 4, 1, 333, 1) + (0, 3)).setObjects(('CNTAU-MIB', 'cntMsgTaskName'), ('CNTAU-MIB', 'cntMsgNumber'), ('CNTAU-MIB', 'cntMsgCpuNumber'), ('CNTAU-MIB', 'cntMsgNodeNumber'), ('CNTAU-MIB', 'cntMsgDateTime'), ('CNTAU-MIB', 'cntMsgContent'))
cnt_critical_err_msg = notification_type((1, 3, 6, 1, 4, 1, 333, 1) + (0, 4)).setObjects(('CNTAU-MIB', 'cntMsgTaskName'), ('CNTAU-MIB', 'cntMsgNumber'), ('CNTAU-MIB', 'cntMsgCpuNumber'), ('CNTAU-MIB', 'cntMsgNodeNumber'), ('CNTAU-MIB', 'cntMsgDateTime'), ('CNTAU-MIB', 'cntMsgContent'))
mibBuilder.exportSymbols('CNTAU-MIB', cntFeatureEntry=cntFeatureEntry, cntsystem=cntsystem, cntsctTxMsgs=cntsctTxMsgs, cntFddiPORTFotxClass=cntFddiPORTFotxClass, cntdot3PICDMAErrs=cntdot3PICDMAErrs, cntBadVersions=cntBadVersions, cntFddiMACLLCServiceAvailable=cntFddiMACLLCServiceAvailable, cntmdmQList=cntmdmQList, cntIfNextPoll=cntIfNextPoll, cntSysTimeofDay=cntSysTimeofDay, cntFddiPATHTable=cntFddiPATHTable, cntllc1OutSnapArps=cntllc1OutSnapArps, cntMachineType=cntMachineType, cnticmpInTmXceeds=cnticmpInTmXceeds, cntdlEntry=cntdlEntry, cntMDMEntry=cntMDMEntry, cntHwFailedCpu=cntHwFailedCpu, cntMsgIndex=cntMsgIndex, cntdatalink=cntdatalink, cntdot3Index=cntdot3Index, cntllc1CpuNum=cntllc1CpuNum, cntRowAdditions=cntRowAdditions, cntFddiSMTReportLimit=cntFddiSMTReportLimit, cntCpuMsgHolds=cntCpuMsgHolds, cntFddiMACBaseNotCopies=cntFddiMACBaseNotCopies, cntsctRxStatus=cntsctRxStatus, cntllc1OutMismIpSizes=cntllc1OutMismIpSizes, cntFddiPORTBaseLems=cntFddiPORTBaseLems, cntdlPortEntry=cntdlPortEntry, cntSysMemory=cntSysMemory, cntMemSramAddress=cntMemSramAddress, cntFddiPATHTVXLowerBound=cntFddiPATHTVXLowerBound, cntFddiPORTEBErrs=cntFddiPORTEBErrs, cntHwBBramStatus=cntHwBBramStatus, cntHwBBramType=cntHwBBramType, cntIOPartNumber=cntIOPartNumber, cntFddiMACRootMACDownStreamPORTType=cntFddiMACRootMACDownStreamPORTType, cntsnmpstat=cntsnmpstat, cntllc1ErrorTable=cntllc1ErrorTable, cntllc1XidErrs=cntllc1XidErrs, cntCpuPort=cntCpuPort, cntReleaseLevel=cntReleaseLevel, cnttransmission=cnttransmission, cntllc1OutFragPkts=cntllc1OutFragPkts, cntLuaTable=cntLuaTable, cnticmpInDuProtos=cnticmpInDuProtos, cntllc1InXidOks=cntllc1InXidOks, cntCpuMemSpace=cntCpuMemSpace, cntllc1WaitTimeOut=cntllc1WaitTimeOut, cntPossibleErrMsg=cntPossibleErrMsg, cntFddiMACTPri4=cntFddiMACTPri4, cntDataLinkCount=cntDataLinkCount, cntlua=cntlua, cntCpuMonBy=cntCpuMonBy, cntllc1TraceFlag=cntllc1TraceFlag, cntproxyEntry=cntproxyEntry, cntdot3DMAChan1RxErrs=cntdot3DMAChan1RxErrs, cntFddiMACNotCopiedCondition=cntFddiMACNotCopiedCondition, cntRevEditDate=cntRevEditDate, cntFddiPATHRingLatency=cntFddiPATHRingLatency, cntCpuPollStatus=cntCpuPollStatus, cntHwMonFailStatus=cntHwMonFailStatus, cntMemBBramAddress=cntMemBBramAddress, cntsctIndex=cntsctIndex, cntsnmpconfig=cntsnmpconfig, cntsctRxDataBytes=cntsctRxDataBytes, cntFddiSMTTable=cntFddiSMTTable, cntdlOutDiscards=cntdlOutDiscards, cntSCRTable=cntSCRTable, cntMibVersion=cntMibVersion, cntFddiPATHStatus=cntFddiPATHStatus, cntllc1OutRetBads=cntllc1OutRetBads, cntModelNumber=cntModelNumber, cntdot3DMAChan3RxErrs=cntdot3DMAChan3RxErrs, cntsctNumber=cntsctNumber, cntFddiPATHEntry=cntFddiPATHEntry, cntmdmQIndex=cntmdmQIndex, cntProxyStatus=cntProxyStatus, cntSCRIndex=cntSCRIndex, cntdlMtu=cntdlMtu, cntllc1DriverType=cntllc1DriverType, cntllc1ConfigTable=cntllc1ConfigTable, cntdot3LPXParityErrs=cntdot3LPXParityErrs, cntFddiMACNotCopiedThreshold=cntFddiMACNotCopiedThreshold, cntTrapDestCount=cntTrapDestCount, cntSysMsgTable=cntSysMsgTable, cntCpuPolls=cntCpuPolls, cnticmp=cnticmp, cntllc1BufCnt=cntllc1BufCnt, cntdot3LanceInts=cntdot3LanceInts, cntSysCpuEntry=cntSysCpuEntry, cntDot3Count=cntDot3Count, cntmdmQTaskId=cntmdmQTaskId, cntdlOutOctets=cntdlOutOctets, cntdot3DMARxWaitQ=cntdot3DMARxWaitQ, cnticmpInDuNets=cnticmpInDuNets, cntdlInNUcastPkts=cntdlInNUcastPkts, cntCpuSemLost=cntCpuSemLost, cntllc1=cntllc1, cnticmpInDuSources=cnticmpInDuSources, cntFddiPORT=cntFddiPORT, cntifCpu=cntifCpu, cntFddiPATHSba=cntFddiPATHSba, cntdlInOctets=cntdlInOctets, cntsctTxStatus=cntsctTxStatus, cntCpuStatus=cntCpuStatus, cntFddiMACDownstreamNbr=cntFddiMACDownstreamNbr, cntdot3LanceParityErrs=cntdot3LanceParityErrs, cnticmpOutDuProtos=cnticmpOutDuProtos, cntFeatureDescr=cntFeatureDescr, cntdlPortIndex=cntdlPortIndex, cntdlInUcastPkts=cntdlInUcastPkts, cntmdmQProcessId=cntmdmQProcessId, cntdlType=cntdlType, cntFeatureQuantity=cntFeatureQuantity, cntFddiMACTPri3=cntFddiMACTPri3, cntsubchanEntry=cntsubchanEntry, cntIOTable=cntIOTable, cntSlotCpuNumber=cntSlotCpuNumber, cntllc1InBadIpSizes=cntllc1InBadIpSizes, cntCpuTaskIndex=cntCpuTaskIndex, cntFddiMACNumber=cntFddiMACNumber, cntdot3DMAChan2TxErrs=cntdot3DMAChan2TxErrs, cntinterfaces=cntinterfaces, cntConfigVersion=cntConfigVersion, cntdot3DMAChan2TxErr=cntdot3DMAChan2TxErr, cntCpuSemCount=cntCpuSemCount, cntFddiPATHTMaxLowerBound=cntFddiPATHTMaxLowerBound, cntFddiMACRingOps=cntFddiMACRingOps, cntdot3PICSpuriousInts=cntdot3PICSpuriousInts, cntLuaCount=cntLuaCount, cnt=cnt, cnttraceType=cnttraceType, cntCpuLastFailDate=cntCpuLastFailDate, cntllc1BufPriority=cntllc1BufPriority, cntdlPortTable=cntdlPortTable, cntllc1InTestOks=cntllc1InTestOks, cntllc1InTests=cntllc1InTests, cntdot3LanceUnderFlows=cntdot3LanceUnderFlows, cntdlOutNUcastPkts=cntdlOutNUcastPkts, cnttrapIf=cnttrapIf, cntHwReset1Date=cntHwReset1Date, cntMsgDateTime=cntMsgDateTime, cntFddiSMTNumber=cntFddiSMTNumber, cntifIndex=cntifIndex, cntifSubIndex=cntifSubIndex, cntFddiSMTLastSetStationID=cntFddiSMTLastSetStationID, cntsctState=cntsctState, cntCachedResponses=cntCachedResponses, cntHwFailStatus=cntHwFailStatus, cntFddiPATHSMTIndex=cntFddiPATHSMTIndex, cntPowerPartNumber=cntPowerPartNumber, cntCpuLastChgDate=cntCpuLastChgDate, cntSysHardware=cntSysHardware, cntllc1ArpMailErrs=cntllc1ArpMailErrs, cntllc1StatIndex=cntllc1StatIndex, cnticmpInTmFrags=cnticmpInTmFrags, cntllc1OutSnapIps=cntllc1OutSnapIps, cntFddiMAC=cntFddiMAC, cntdot3PICBusErrs=cntdot3PICBusErrs, cntluaIf=cntluaIf, cnticmpInReHosts=cnticmpInReHosts, cntSlotEntry=cntSlotEntry, cntdlPortAddrLen=cntdlPortAddrLen, cntPowerName=cntPowerName, cntFddiMACTPri0=cntFddiMACTPri0, cntFddiPATH=cntFddiPATH, cntFeatureIndex=cntFeatureIndex, cntFddiPORTTable=cntFddiPORTTable, cntSnmpBufferCount=cntSnmpBufferCount, cntsctDrecPid=cntsctDrecPid, cnticmpInDuPorts=cnticmpInDuPorts, cntFddiMACTokens=cntFddiMACTokens, cnticmpOutReServhosts=cnticmpOutReServhosts, cntMemSramSpace=cntMemSramSpace, cntdot3LanceTxWaitQ=cntdot3LanceTxWaitQ, cntRowErrors=cntRowErrors, cntFddiPATHType=cntFddiPATHType, cntCpuType=cntCpuType, cntdot3BufPriority=cntdot3BufPriority, cntPowerSerialNumber=cntPowerSerialNumber, cntFddiPORTEntry=cntFddiPORTEntry, cntFddiMACRootMACCurrentPath=cntFddiMACRootMACCurrentPath, cntTrapTable=cntTrapTable, cntFddiPORTBaseLerTimeStamp=cntFddiPORTBaseLerTimeStamp, cntsctTotalBytes=cntsctTotalBytes, cnticmpOutDuNets=cnticmpOutDuNets, cntHwCpuEntry=cntHwCpuEntry, cntMailQueue=cntMailQueue, cntllc1ErrorIndex=cntllc1ErrorIndex, cntCntRequests=cntCntRequests, cntCpuMonStatus=cntCpuMonStatus, cntllc1OutNoRooms=cntllc1OutNoRooms, cntdot3BufsAllocated=cntdot3BufsAllocated, cntHwFailDate=cntHwFailDate, cntIOIndex=cntIOIndex, cnticmpInReNets=cnticmpInReNets, cntCofiVersion=cntCofiVersion, cnticmpOutReHosts=cnticmpOutReHosts, cntMsgSeqNumber=cntMsgSeqNumber, cntllc1ConfigEntry=cntllc1ConfigEntry, cntdot3LanceMemErrs=cntdot3LanceMemErrs, cntFddiMACNotCopies=cntFddiMACNotCopies, cntdot3BufTooManys=cntdot3BufTooManys, cntFddiMACTable=cntFddiMACTable, cntMsgNumber=cntMsgNumber, cntFddiPATHIndex=cntFddiPATHIndex, cntFddiMACCopies=cntFddiMACCopies, cntdlTypeofService=cntdlTypeofService, cntproxyNode=cntproxyNode, cntllc1InSnapIps=cntllc1InSnapIps, cntMsgTaskName=cntMsgTaskName, cntNoBuffers=cntNoBuffers, cntHwPowerSupply=cntHwPowerSupply, cntPowerRevLevel=cntPowerRevLevel, cntsctTxMsgBytes=cntsctTxMsgBytes, cntSysNodeAddress=cntSysNodeAddress, cntFddiMACLates=cntFddiMACLates, cntSlotIndex=cntSlotIndex, cntProxyCount=cntProxyCount, cntLLC1Count=cntLLC1Count, cntMsgEntry=cntMsgEntry, cntdot3LanceOverFlows=cntdot3LanceOverFlows, cntMib2Requests=cntMib2Requests, cntCpuUnclaims=cntCpuUnclaims, cntSubChanTable=cntSubChanTable, cntFddiMACShortGrpAddr=cntFddiMACShortGrpAddr, cntMsgCpuNumber=cntMsgCpuNumber, cnticmpOutDuSources=cnticmpOutDuSources, cntFddiPATHPORTOrder=cntFddiPATHPORTOrder, cntdiagnostics=cntdiagnostics, cntFddiMACBaseTimeNotCopied=cntFddiMACBaseTimeNotCopied, cntdot3Table=cntdot3Table, cntFddiPORTSMTIndex=cntFddiPORTSMTIndex, cntSlotTable=cntSlotTable, cntHwMonCpu=cntHwMonCpu, cntMemBBramSpace=cntMemBBramSpace, cntdot3BufNotAvails=cntdot3BufNotAvails, cntFddiPORTMaintLineState=cntFddiPORTMaintLineState, cntmdmQName=cntmdmQName, cntCpuTaskEntry=cntCpuTaskEntry, cntFddiMACIndex=cntFddiMACIndex, cntSubChanCount=cntSubChanCount, cntllc1ConfigIndex=cntllc1ConfigIndex, cntFddiCount=cntFddiCount, cntdlNumber=cntdlNumber, cntFddiSMTManufacturerData=cntFddiSMTManufacturerData, cntRowDeletions=cntRowDeletions, cntFddiPATHNumber=cntFddiPATHNumber, cntdot3LanceMissedPkts=cntdot3LanceMissedPkts, cntSlotSerialNumber=cntSlotSerialNumber, cntFddiPORTNumber=cntFddiPORTNumber, cntCpuUtil=cntCpuUtil, cntPowerEntry=cntPowerEntry)
mibBuilder.exportSymbols('CNTAU-MIB', cntRevEditTime=cntRevEditTime, cntllc1InNoDsaps=cntllc1InNoDsaps, cntFddiPATHTraceStatus=cntFddiPATHTraceStatus, cntproxyAddress=cntproxyAddress, cntllc1InMismIpSizes=cntllc1InMismIpSizes, cntifType=cntifType, cntifTable=cntifTable, cnttrapEntry=cnttrapEntry, cntdlOutUcastPkts=cntdlOutUcastPkts, cntdlOutErrors=cntdlOutErrors, cntWorkOrderNumber=cntWorkOrderNumber, cntSCRNumber=cntSCRNumber, cntdlTable=cntdlTable, cntChassisNumber=cntChassisNumber, cntCpuMsgRets=cntCpuMsgRets, cntllc1Addr=cntllc1Addr, cntllc1InLateTests=cntllc1InLateTests, cntdot3DMAChan1RxErr=cntdot3DMAChan1RxErr, cntdlIndex=cntdlIndex, cntCpuNum=cntCpuNum, cntllc1IpMailErrs=cntllc1IpMailErrs, cnttraceEntry=cnttraceEntry, cntllc1OutMcastErrs=cntllc1OutMcastErrs, cntFddiMACBaseErrs=cntFddiMACBaseErrs, cntSlotName=cntSlotName, cntllc1InBadTypes=cntllc1InBadTypes, cntFddiPORTBaseLemRejects=cntFddiPORTBaseLemRejects, cnticmpInReServnets=cnticmpInReServnets, cntRevDate=cntRevDate, cntFddiSMTMsgTimeStamp=cntFddiSMTMsgTimeStamp, cnticmpInDuHosts=cnticmpInDuHosts, cntSlotPartNumber=cntSlotPartNumber, cntFddiPATHTraceMaxExpiration=cntFddiPATHTraceMaxExpiration, cntllc1TestErrs=cntllc1TestErrs, cntsnmpproxy=cntsnmpproxy, cntCpuResetDelayTime=cntCpuResetDelayTime, cntluaNumber=cntluaNumber, cntMDMTable=cntMDMTable, cntdlPortType=cntdlPortType, cntFeatureTable=cntFeatureTable, cntIOName=cntIOName, cntFddiMACLongAlias=cntFddiMACLongAlias, cntllc1StatsTable=cntllc1StatsTable, cntSevereErrMsg=cntSevereErrMsg, cntdlOutQLen=cntdlOutQLen, cntdot3DMATxWaitQ=cntdot3DMATxWaitQ, cntFddiSMTEntry=cntFddiSMTEntry, cnticmpOutDuPorts=cnticmpOutDuPorts, cntdot3PICMemSeqErrs=cntdot3PICMemSeqErrs, cntMemSramFree=cntMemSramFree, cntFddiMACTPri2=cntFddiMACTPri2, cntIOInterface=cntIOInterface, cntsctRxMsgBytes=cntsctRxMsgBytes, cntSerialNumber=cntSerialNumber, cntSysBuild=cntSysBuild, cnticmpInDuFrags=cnticmpInDuFrags, cntFddiSMTIndex=cntFddiSMTIndex, cntFddiPORTIndex=cntFddiPORTIndex, cntMemBBramFree=cntMemBBramFree, cntllc1OutXids=cntllc1OutXids, cntSerialAlfaNumber=cntSerialAlfaNumber, cntdot3=cntdot3, cntSlotVMEbusGrant=cntSlotVMEbusGrant, cntSlotRevLevel=cntSlotRevLevel, cntFddiSMTTransitionTimeStamp=cntFddiSMTTransitionTimeStamp, cntCpuTaskName=cntCpuTaskName, cntsctTxErrMsgs=cntsctTxErrMsgs, cntllc1InLateXids=cntllc1InLateXids, cntSCREntry=cntSCREntry, cntFddiMACSMTIndex=cntFddiMACSMTIndex, cntFddiMACBridgeFunction=cntFddiMACBridgeFunction, cntPowerTable=cntPowerTable, cntsctRxMsgs=cntsctRxMsgs, cntdot3SoftwareID=cntdot3SoftwareID, cntllc1InSnapNoProts=cntllc1InSnapNoProts, cntdlActivePort=cntdlActivePort, cnticmpOutTmXceeds=cnticmpOutTmXceeds, cntDot3Requests=cntDot3Requests, cntProxyTable=cntProxyTable, cntllc1OutRetOks=cntllc1OutRetOks, cntFddiMACOldDownstreamNbr=cntFddiMACOldDownstreamNbr, cntHwReset2Why=cntHwReset2Why, cntllc1OutTestResps=cntllc1OutTestResps, cnticmpOutDuFrags=cnticmpOutDuFrags, cntllc1OutXidResps=cntllc1OutXidResps, cntFddiMACBaseLosts=cntFddiMACBaseLosts, cntsctDrecTask=cntsctDrecTask, cntHwCpuTable=cntHwCpuTable, cntau=cntau, cntFddiMACBaseCopies=cntFddiMACBaseCopies, cntFddiRequests=cntFddiRequests, cntdot3Entry=cntdot3Entry, cntdlInDiscards=cntdlInDiscards, cntFddiMACTPri5=cntFddiMACTPri5, cntfddi=cntfddi, cntFddiPortCount=cntFddiPortCount, cntluaEntry=cntluaEntry, cntllc1InXids=cntllc1InXids, cnticmpOutDuHosts=cnticmpOutDuHosts, cntFddiMACTvxExpires=cntFddiMACTvxExpires, cntHwReset2Date=cntHwReset2Date, cntFddiMACMasterSlaveLoopStatus=cntFddiMACMasterSlaveLoopStatus, cntIOCpuNumber=cntIOCpuNumber, cntllc1InSnapNoTypes=cntllc1InSnapNoTypes, cntdlInUnknownProtos=cntdlInUnknownProtos, cntCpuXtraInts=cntCpuXtraInts, cnttraceCpu=cnttraceCpu, cntMsgSeverity=cntMsgSeverity, cnticmpOutReServnets=cnticmpOutReServnets, cntTrapFlags=cntTrapFlags, cnttraceIndex=cnttraceIndex, cntllc1InSnapArps=cntllc1InSnapArps, cntCustomer=cntCustomer, cntSlotInterface=cntSlotInterface, cntFddiMACRootConcentratorMac=cntFddiMACRootConcentratorMac, cntFddiSMT=cntFddiSMT, cntllc1StatsEntry=cntllc1StatsEntry, cntdlMaxPort=cntdlMaxPort, cntdlDescr=cntdlDescr, cntLastTrapMsg=cntLastTrapMsg, cntUsedCaches=cntUsedCaches, cntsctTxDataBytes=cntsctTxDataBytes, cnttrapAddress=cnttrapAddress, cntFddiMACLongGrpAddr=cntFddiMACLongGrpAddr, cntdot3DMAChan3RxErr=cntdot3DMAChan3RxErr, cntdot3PICMemParityErrs=cntdot3PICMemParityErrs, cntHwReset3Date=cntHwReset3Date, cntdot3DMAChan0TxErrs=cntdot3DMAChan0TxErrs, cntFddiMACTPri1=cntFddiMACTPri1, cntCpuIndex=cntCpuIndex, cntCpuResetFlag=cntCpuResetFlag, cntFddiPATHTRmode=cntFddiPATHTRmode, cntPowerIndex=cntPowerIndex, cntCpuTaskTable=cntCpuTaskTable, cntMibObjectCount=cntMibObjectCount, cntHwReset3Why=cntHwReset3Why, cntFddiSMTSetCount=cntFddiSMTSetCount, cntHwStatusLED=cntHwStatusLED, cntFddiMACTPri6=cntFddiMACTPri6, cntCriticalErrMsg=cntCriticalErrMsg, cnticmpOutReNets=cnticmpOutReNets, cntIfPollInterval=cntIfPollInterval, cntllc1OutXmitErrs=cntllc1OutXmitErrs, cntFddiMACShortAlias=cntFddiMACShortAlias, cntFddiPORTBaseLerEstimate=cntFddiPORTBaseLerEstimate, cntCpuLevel7s=cntCpuLevel7s, cntFddiPATHSbaOverhead=cntFddiPATHSbaOverhead, cntHwReset1Why=cntHwReset1Why, cntInformationalMsg=cntInformationalMsg, cntIOEntry=cntIOEntry, cnttraceData=cnttraceData, cntdlState=cntdlState, cntFddiMACNotCopiedRatio=cntFddiMACNotCopiedRatio, cntsnmp=cntsnmp, cntMsgNodeNumber=cntMsgNodeNumber, cntRowModifies=cntRowModifies, cntllc1OutTooBigs=cntllc1OutTooBigs, cntsnmpTrapFlags=cntsnmpTrapFlags, cnttrapIndex=cnttrapIndex, cntifEntry=cntifEntry, cntdot3Chan1Misreads=cntdot3Chan1Misreads, cntMsgContent=cntMsgContent, cntFddiMACBaseTimeFrameError=cntFddiMACBaseTimeFrameError, cntTraceTable=cntTraceTable, cntFddiMACTransmits=cntFddiMACTransmits, cntllc1OutBadIpSizes=cntllc1OutBadIpSizes, cntllc1OutTests=cntllc1OutTests, cnticmpOutTmFrags=cnticmpOutTmFrags, cntIORevLevel=cntIORevLevel, cntllc1InitFlag=cntllc1InitFlag, cntdlSourcePort=cntdlSourcePort, cntFeatureName=cntFeatureName, cntMailTimeouts=cntMailTimeouts, cntFddiMACEntry=cntFddiMACEntry, cntIfsState=cntIfsState, cntSysCpuTable=cntSysCpuTable, cntdlDestPort=cntdlDestPort, cntCpuMemFree=cntCpuMemFree, cntDoDIPCount=cntDoDIPCount, cntsctRxCredit=cntsctRxCredit, cntllc1InUIs=cntllc1InUIs, cntFddiMACBaseFrames=cntFddiMACBaseFrames, cntproxyIndex=cntproxyIndex, cntsnmptrap=cntsnmptrap, cntdot3DMAChan0TxErr=cntdot3DMAChan0TxErr, cntllc1BusId=cntllc1BusId, cntIOSerialNumber=cntIOSerialNumber, cntFddiSMTUserData=cntFddiSMTUserData, cntdlInErrors=cntdlInErrors, cntsctSubChanStatus=cntsctSubChanStatus, cnticmpInReServhosts=cnticmpInReServhosts, cntllc1ErrorEntry=cntllc1ErrorEntry) |
class Location:
__name: str = None
def __init__(self, name: str) -> None:
if type(name) != str:
raise TypeError('name of Location must be a string')
elif len(name) <= 0:
raise ValueError("name of Location must be non-empty")
self.__name = name
@property
def name(self) -> str:
return self.__name
def __eq__(self, other):
if not isinstance(other, Location):
return False
return self.__name == other.__name
def __hash__(self):
return hash(self.__name)
def __str__(self):
return self.__name
def __repr__(self):
return "%s(\"%s\")" % (self.__class__.__name__, self.__name)
| class Location:
__name: str = None
def __init__(self, name: str) -> None:
if type(name) != str:
raise type_error('name of Location must be a string')
elif len(name) <= 0:
raise value_error('name of Location must be non-empty')
self.__name = name
@property
def name(self) -> str:
return self.__name
def __eq__(self, other):
if not isinstance(other, Location):
return False
return self.__name == other.__name
def __hash__(self):
return hash(self.__name)
def __str__(self):
return self.__name
def __repr__(self):
return '%s("%s")' % (self.__class__.__name__, self.__name) |
asset_permissions = {}
asset_permissions["charge_market_fee"] = 0x01
asset_permissions["white_list"] = 0x02
asset_permissions["override_authority"] = 0x04
asset_permissions["transfer_restricted"] = 0x08
asset_permissions["disable_force_settle"] = 0x10
asset_permissions["global_settle"] = 0x20
asset_permissions["disable_confidential"] = 0x40
asset_permissions["witness_fed_asset"] = 0x80
asset_permissions["committee_fed_asset"] = 0x100
whitelist = {}
whitelist["no_listing"] = 0x0
whitelist["white_listed"] = 0x1
whitelist["black_listed"] = 0x2
whitelist["white_and_black_listed"] = 0x1 | 0x2
def toint(permissions):
permissions_int = 0
for p in permissions:
if permissions[p]:
permissions_int |= asset_permissions[p]
return permissions_int
def todict(number):
r = {}
for k, v in asset_permissions.items():
r[k] = bool(number & v)
return r
def force_flag(perms, flags):
for p in flags:
if flags[p]:
perms |= asset_permissions[p]
return perms
def test_permissions(perms, flags):
for p in flags:
if not asset_permissions[p] & perms:
raise Exception(
"Permissions prevent you from changing %s!" % p
)
return True
| asset_permissions = {}
asset_permissions['charge_market_fee'] = 1
asset_permissions['white_list'] = 2
asset_permissions['override_authority'] = 4
asset_permissions['transfer_restricted'] = 8
asset_permissions['disable_force_settle'] = 16
asset_permissions['global_settle'] = 32
asset_permissions['disable_confidential'] = 64
asset_permissions['witness_fed_asset'] = 128
asset_permissions['committee_fed_asset'] = 256
whitelist = {}
whitelist['no_listing'] = 0
whitelist['white_listed'] = 1
whitelist['black_listed'] = 2
whitelist['white_and_black_listed'] = 1 | 2
def toint(permissions):
permissions_int = 0
for p in permissions:
if permissions[p]:
permissions_int |= asset_permissions[p]
return permissions_int
def todict(number):
r = {}
for (k, v) in asset_permissions.items():
r[k] = bool(number & v)
return r
def force_flag(perms, flags):
for p in flags:
if flags[p]:
perms |= asset_permissions[p]
return perms
def test_permissions(perms, flags):
for p in flags:
if not asset_permissions[p] & perms:
raise exception('Permissions prevent you from changing %s!' % p)
return True |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
url = 'http://practiapinta.me/tepinta'
sender = 'practiatepinta@practia.global'
password = ''
smtp = 'owa.pragmaconsultores.net'
body = ''
| url = 'http://practiapinta.me/tepinta'
sender = 'practiatepinta@practia.global'
password = ''
smtp = 'owa.pragmaconsultores.net'
body = '' |
def main():
with open('input.txt') as file:
data = file.read().strip().split('\n')
n = int(data[0])
symbols = data[1]
number = int(data[2])
cleaned_sumbols = ''
for symbol in symbols:
if symbol != ' ':
cleaned_sumbols += symbol
output = str(int(cleaned_sumbols)+number)
for symbol in output:
print(symbol, end=' ')
if __name__ == '__main__':
main()
| def main():
with open('input.txt') as file:
data = file.read().strip().split('\n')
n = int(data[0])
symbols = data[1]
number = int(data[2])
cleaned_sumbols = ''
for symbol in symbols:
if symbol != ' ':
cleaned_sumbols += symbol
output = str(int(cleaned_sumbols) + number)
for symbol in output:
print(symbol, end=' ')
if __name__ == '__main__':
main() |
# File: windowsdefenderatp_consts.py
# Copyright (c) 2019 Splunk Inc.
#
# Licensed under Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0.txt)
#
DEFENDERATP_PHANTOM_BASE_URL = '{phantom_base_url}rest'
DEFENDERATP_PHANTOM_SYS_INFO_URL = '/system_info'
DEFENDERATP_PHANTOM_ASSET_INFO_URL = '/asset/{asset_id}'
DEFENDERATP_LOGIN_BASE_URL = 'https://login.microsoftonline.com'
DEFENDERATP_SERVER_TOKEN_URL = '/{tenant_id}/oauth2/token'
DEFENDERATP_AUTHORIZE_URL = '/{tenant_id}/oauth2/authorize?client_id={client_id}&redirect_uri={redirect_uri}' \
'&response_type={response_type}&state={state}&resource={resource}'
DEFENDERATP_RESOURCE_URL = 'https://api.securitycenter.windows.com'
DEFENDERATP_MSGRAPH_API_BASE_URL = 'https://api.securitycenter.windows.com/api'
DEFENDERATP_MACHINES_ENDPOINT = '/machines'
DEFENDERATP_IP_MACHINES_ENDPOINT = '/ips/{input}/machines'
DEFENDERATP_DOMAIN_MACHINES_ENDPOINT = '/domains/{input}/machines'
DEFENDERATP_FILE_MACHINES_ENDPOINT = '/files/{input}/machines'
DEFENDERATP_ALERTS_ENDPOINT = '/alerts'
DEFENDERATP_IP_ALERTS_ENDPOINT = '/ips/{input}/alerts'
DEFENDERATP_DOMAIN_ALERTS_ENDPOINT = '/domains/{input}/alerts'
DEFENDERATP_FILE_ALERTS_ENDPOINT = '/files/{input}/alerts'
DEFENDERATP_ISOLATE_ENDPOINT = '/machines/{device_id}/isolate'
DEFENDERATP_UNISOLATE_ENDPOINT = '/machines/{device_id}/unisolate'
DEFENDERATP_SESSIONS_ENDPOINT = '/machines/{device_id}/logonusers'
DEFENDERATP_FILE_QUARANTINE_ENDPOINT = '/machines/{device_id}/stopAndQuarantineFile'
DEFENDERATP_MACHINEACTIONS_ENDPOINT = '/machineactions/{action_id}'
DEFENDERATP_FILEMACHINEACTIONS_ENDPOINT = '/filemachineactions/{action_id}'
DEFENDERATP_SCAN_DEVICE_ENDPOINT = '/machines/{device_id}/runAntiVirusScan'
DEFENDERATP_UNBLOCK_HASH_ENDPOINT = '/files/{file_hash}/unblock'
DEFENDERATP_FILE_BLOCK_ENDPOINT = '/files/{file_hash}/block'
DEFENDERATP_TOKEN_EXPIRED = 'Access token has expired'
DEFENDERATP_TOKEN_NOT_AVAILABLE_MSG = 'Token not available. Please run test connectivity first.'
DEFENDERATP_BASE_URL_NOT_FOUND_MSG = 'Phantom Base URL not found in System Settings. ' \
'Please specify this value in System Settings.'
DEFENDERATP_TEST_CONNECTIVITY_FAILED_MSG = 'Test connectivity failed'
DEFENDERATP_TEST_CONNECTIVITY_PASSED_MSG = 'Test connectivity passed'
DEFENDERATP_AUTHORIZE_USER_MSG = 'Please authorize user in a separate tab using URL'
DEFENDERATP_CODE_RECEIVED_MSG = 'Code Received'
DEFENDERATP_MAKING_CONNECTION_MSG = 'Making Connection...'
DEFENDERATP_OAUTH_URL_MSG = 'Using OAuth URL:'
DEFENDERATP_GENERATING_ACCESS_TOKEN_MSG = 'Generating access token'
DEFENDERATP_ALERTS_INFO_MSG = 'Getting info about alerts'
DEFENDERATP_RECEIVED_ALERT_INFO_MSG = 'Received alert info'
DEFENDERATP_ACTION_ID_UNAVAILABLE_MSG = 'Action ID not available. Please try again after sometime.'
DEFENDERATP_FILE_HASH_UNBLOCKED_SUCCESS_MSG = 'File hash unblocked successfully'
DEFENDERATP_NO_DATA_FOUND_MSG = 'No data found'
DEFENDERATP_NO_DEVICE_FOUND_MSG = 'No devices found'
DEFENDERATP_NO_FILE_DEVICE_FOUND_MSG = 'No devices or files found'
DEFENDERATP_NO_EVENT_FOUND_MSG = 'No events found'
DEFENDERATP_FILE_BLOCKED_MSG = 'File hash blocked successfully'
DEFENDERATP_PARAM_VALIDATION_FAILED_MSG = 'Parameter validation failed. Invalid {}'
DEFENDERATP_INPUT_REQUIRED_MSG = 'Input is required for the given type'
DEFENDERATP_LIMIT_VALIDATION_MSG = 'Limit should be a positive integer'
DEFENDERATP_TIMEOUT_VALIDATION_MSG = 'Timeout should be a positive integer'
DEFENDERATP_CONFIG_TENANT_ID = 'tenant_id'
DEFENDERATP_CONFIG_CLIENT_ID = 'client_id'
DEFENDERATP_ALL_CONST = 'All'
DEFENDERATP_IP_CONST = 'IP'
DEFENDERATP_DOMAIN_CONST = 'Domain'
DEFENDERATP_FILE_HASH_CONST = 'File Hash'
DEFENDERATP_JSON_LIMIT = 'limit'
DEFENDERATP_JSON_TIMEOUT = 'timeout'
DEFENDERATP_JSON_INPUT = 'input'
DEFENDERATP_JSON_DEVICE_ID = 'device_id'
DEFENDERATP_JSON_SCAN_TYPE = 'scan_type'
DEFENDERATP_JSON_COMMENT = 'comment'
DEFENDERATP_JSON_FILE_HASH = 'file_hash'
DEFENDERATP_JSON_TYPE = 'type'
DEFENDERATP_EVENT_ID = 'event_id'
DEFENDERATP_JSON_INPUT_TYPE = 'input_type'
DEFENDERATP_STATUS_PROGRESS = 'InProgress'
DEFENDERATP_TOKEN_STRING = 'token'
DEFENDERATP_ACCESS_TOKEN_STRING = 'access_token'
DEFENDERATP_REFRESH_TOKEN_STRING = 'refresh_token'
DEFENDERATP_NEXT_LINK_STRING = '@odata.nextLink'
DEFENDERATP_TC_FILE = 'oauth_task.out'
DEFENDERATP_STATUS_CHECK_DEFAULT = 30
DEFENDERATP_STATUS_CHECK_SLEEP = 5
DEFENDERATP_TC_STATUS_SLEEP = 3
DEFENDERATP_AUTHORIZE_WAIT_TIME = 15
DEFENDERATP_ALERT_DEFAULT_LIMIT = 100
DEFENDERATP_QUARANTINE_TIMEOUT_MAX_LIMIT = 60
DEFENDERATP_SCAN_TIMEOUT_MAX_LIMIT = 3600
| defenderatp_phantom_base_url = '{phantom_base_url}rest'
defenderatp_phantom_sys_info_url = '/system_info'
defenderatp_phantom_asset_info_url = '/asset/{asset_id}'
defenderatp_login_base_url = 'https://login.microsoftonline.com'
defenderatp_server_token_url = '/{tenant_id}/oauth2/token'
defenderatp_authorize_url = '/{tenant_id}/oauth2/authorize?client_id={client_id}&redirect_uri={redirect_uri}&response_type={response_type}&state={state}&resource={resource}'
defenderatp_resource_url = 'https://api.securitycenter.windows.com'
defenderatp_msgraph_api_base_url = 'https://api.securitycenter.windows.com/api'
defenderatp_machines_endpoint = '/machines'
defenderatp_ip_machines_endpoint = '/ips/{input}/machines'
defenderatp_domain_machines_endpoint = '/domains/{input}/machines'
defenderatp_file_machines_endpoint = '/files/{input}/machines'
defenderatp_alerts_endpoint = '/alerts'
defenderatp_ip_alerts_endpoint = '/ips/{input}/alerts'
defenderatp_domain_alerts_endpoint = '/domains/{input}/alerts'
defenderatp_file_alerts_endpoint = '/files/{input}/alerts'
defenderatp_isolate_endpoint = '/machines/{device_id}/isolate'
defenderatp_unisolate_endpoint = '/machines/{device_id}/unisolate'
defenderatp_sessions_endpoint = '/machines/{device_id}/logonusers'
defenderatp_file_quarantine_endpoint = '/machines/{device_id}/stopAndQuarantineFile'
defenderatp_machineactions_endpoint = '/machineactions/{action_id}'
defenderatp_filemachineactions_endpoint = '/filemachineactions/{action_id}'
defenderatp_scan_device_endpoint = '/machines/{device_id}/runAntiVirusScan'
defenderatp_unblock_hash_endpoint = '/files/{file_hash}/unblock'
defenderatp_file_block_endpoint = '/files/{file_hash}/block'
defenderatp_token_expired = 'Access token has expired'
defenderatp_token_not_available_msg = 'Token not available. Please run test connectivity first.'
defenderatp_base_url_not_found_msg = 'Phantom Base URL not found in System Settings. Please specify this value in System Settings.'
defenderatp_test_connectivity_failed_msg = 'Test connectivity failed'
defenderatp_test_connectivity_passed_msg = 'Test connectivity passed'
defenderatp_authorize_user_msg = 'Please authorize user in a separate tab using URL'
defenderatp_code_received_msg = 'Code Received'
defenderatp_making_connection_msg = 'Making Connection...'
defenderatp_oauth_url_msg = 'Using OAuth URL:'
defenderatp_generating_access_token_msg = 'Generating access token'
defenderatp_alerts_info_msg = 'Getting info about alerts'
defenderatp_received_alert_info_msg = 'Received alert info'
defenderatp_action_id_unavailable_msg = 'Action ID not available. Please try again after sometime.'
defenderatp_file_hash_unblocked_success_msg = 'File hash unblocked successfully'
defenderatp_no_data_found_msg = 'No data found'
defenderatp_no_device_found_msg = 'No devices found'
defenderatp_no_file_device_found_msg = 'No devices or files found'
defenderatp_no_event_found_msg = 'No events found'
defenderatp_file_blocked_msg = 'File hash blocked successfully'
defenderatp_param_validation_failed_msg = 'Parameter validation failed. Invalid {}'
defenderatp_input_required_msg = 'Input is required for the given type'
defenderatp_limit_validation_msg = 'Limit should be a positive integer'
defenderatp_timeout_validation_msg = 'Timeout should be a positive integer'
defenderatp_config_tenant_id = 'tenant_id'
defenderatp_config_client_id = 'client_id'
defenderatp_all_const = 'All'
defenderatp_ip_const = 'IP'
defenderatp_domain_const = 'Domain'
defenderatp_file_hash_const = 'File Hash'
defenderatp_json_limit = 'limit'
defenderatp_json_timeout = 'timeout'
defenderatp_json_input = 'input'
defenderatp_json_device_id = 'device_id'
defenderatp_json_scan_type = 'scan_type'
defenderatp_json_comment = 'comment'
defenderatp_json_file_hash = 'file_hash'
defenderatp_json_type = 'type'
defenderatp_event_id = 'event_id'
defenderatp_json_input_type = 'input_type'
defenderatp_status_progress = 'InProgress'
defenderatp_token_string = 'token'
defenderatp_access_token_string = 'access_token'
defenderatp_refresh_token_string = 'refresh_token'
defenderatp_next_link_string = '@odata.nextLink'
defenderatp_tc_file = 'oauth_task.out'
defenderatp_status_check_default = 30
defenderatp_status_check_sleep = 5
defenderatp_tc_status_sleep = 3
defenderatp_authorize_wait_time = 15
defenderatp_alert_default_limit = 100
defenderatp_quarantine_timeout_max_limit = 60
defenderatp_scan_timeout_max_limit = 3600 |
count=0
total=0
print('before', count,total)
for numbers in [9,41,12,3,74,15]:
count=count+1
total=total+numbers
print (count,total,numbers)
print('After', count, total, total/count)
| count = 0
total = 0
print('before', count, total)
for numbers in [9, 41, 12, 3, 74, 15]:
count = count + 1
total = total + numbers
print(count, total, numbers)
print('After', count, total, total / count) |
def karatsuba_multiplication(x, y):
x_digits = len(str(x))
y_digits = len(str(y))
# Base case for the recursion.
if (x_digits == 1 or y_digits == 1):
return x * y
# Figure out where to split.
n2 = max(x_digits, y_digits) / 2
factor = int(10 ** n2)
# Break up the number into parts.
a = x // factor
b = x % factor
c = y // factor
d = y % factor
# Calculate the result.
z2 = karatsuba_multiplication(a, c)
z0 = karatsuba_multiplication(b, d)
z1 = karatsuba_multiplication(a + b, c + d) - z2 - z0
return (z2 * (factor ** 2)) + (z1 * factor) + z0
x = 5822
y = 4104
z = karatsuba_multiplication(x, y)
print(f"{x} * {y} = {z}")
| def karatsuba_multiplication(x, y):
x_digits = len(str(x))
y_digits = len(str(y))
if x_digits == 1 or y_digits == 1:
return x * y
n2 = max(x_digits, y_digits) / 2
factor = int(10 ** n2)
a = x // factor
b = x % factor
c = y // factor
d = y % factor
z2 = karatsuba_multiplication(a, c)
z0 = karatsuba_multiplication(b, d)
z1 = karatsuba_multiplication(a + b, c + d) - z2 - z0
return z2 * factor ** 2 + z1 * factor + z0
x = 5822
y = 4104
z = karatsuba_multiplication(x, y)
print(f'{x} * {y} = {z}') |
#!/usr/bin/env python
active = {
'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process',
'key': '<API KEY>'
}
# ======================================================================
# Place API key and URL in 'active' to use with the cmdline-search.py
# ======================================================================
env1 = {
'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process',
'key': '<API KEY>'
}
env2 = {
'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process',
'key': '<API KEY>'
}
etc = {
'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process',
'key': '<API KEY>'
} | active = {'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process', 'key': '<API KEY>'}
env1 = {'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process', 'key': '<API KEY>'}
env2 = {'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process', 'key': '<API KEY>'}
etc = {'url': 'https://<SUBDOMAIN>.carbonblack.io/api/v1/process', 'key': '<API KEY>'} |
ctr = 1
while ctr != -1 :
try:
ctr = int(input('Enter a number ( -1 to exit) : '))
except ValueError:
print("That was not a number")
else:
#Only executed when no exception happens
print("No exception happened")
finally:
print("finally executed") | ctr = 1
while ctr != -1:
try:
ctr = int(input('Enter a number ( -1 to exit) : '))
except ValueError:
print('That was not a number')
else:
print('No exception happened')
finally:
print('finally executed') |
#
# PySNMP MIB module CISCO-ATM-IF-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-ATM-IF-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:33:08 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint")
atmInterfaceConfEntry, = mibBuilder.importSymbols("ATM-MIB", "atmInterfaceConfEntry")
ciscoExperiment, = mibBuilder.importSymbols("CISCO-SMI", "ciscoExperiment")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
ObjectIdentity, Bits, Counter64, IpAddress, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter32, Gauge32, Integer32, ModuleIdentity, NotificationType, TimeTicks, MibIdentifier, iso = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Bits", "Counter64", "IpAddress", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter32", "Gauge32", "Integer32", "ModuleIdentity", "NotificationType", "TimeTicks", "MibIdentifier", "iso")
TextualConvention, DisplayString, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue")
ciscoAtmIfMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 10, 14))
ciscoAtmIfMIB.setRevisions(('2002-02-13 00:00', '2001-08-08 00:00', '2001-05-21 00:00', '2000-04-11 00:00', '1999-03-11 00:00', '1997-11-30 00:00', '1997-09-10 00:00', '1996-11-01 00:00', '1996-10-14 00:00',))
if mibBuilder.loadTexts: ciscoAtmIfMIB.setLastUpdated('200202130000Z')
if mibBuilder.loadTexts: ciscoAtmIfMIB.setOrganization('Cisco Systems, Inc.')
ciscoAtmIfMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 1))
class NsapAtmAddr(TextualConvention, OctetString):
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(20, 20)
fixedLength = 20
class AtmAddr(TextualConvention, OctetString):
status = 'current'
subtypeSpec = OctetString.subtypeSpec + ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(8, 8), ValueSizeConstraint(13, 13), ValueSizeConstraint(20, 20), )
class UpcMethod(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("passing", 1), ("tagging", 2), ("dropping", 3))
ciscoAtmIfIlmiAccessGlobalDefaultFilter = MibScalar((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("permitAll", 1), ("permitPrefix", 2), ("permitPrefixAndWellknownGroups", 3), ("permitPrefixAndAllGroups", 4))).clone('permitAll')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfIlmiAccessGlobalDefaultFilter.setStatus('current')
ciscoAtmIfNotifsEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 3), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfNotifsEnabled.setStatus('current')
ciscoAtmIfTable = MibTable((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1), )
if mibBuilder.loadTexts: ciscoAtmIfTable.setStatus('current')
ciscoAtmIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1), )
atmInterfaceConfEntry.registerAugmentions(("CISCO-ATM-IF-MIB", "ciscoAtmIfEntry"))
ciscoAtmIfEntry.setIndexNames(*atmInterfaceConfEntry.getIndexNames())
if mibBuilder.loadTexts: ciscoAtmIfEntry.setStatus('current')
ciscoAtmIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("other", 1), ("uni", 2), ("pnni", 3), ("iisp", 4), ("nniPvcOnly", 5), ("aini", 6))).clone('uni')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfType.setStatus('current')
ciscoAtmIfSide = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("user", 1), ("network", 2), ("notApplicable", 3))).clone('network')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSide.setStatus('current')
ciscoAtmIfUniType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("public", 1), ("private", 2))).clone('private')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfUniType.setStatus('current')
ciscoAtmIfPVPs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfPVPs.setStatus('current')
ciscoAtmIfPVCs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfPVCs.setStatus('current')
ciscoAtmIfActiveSVPs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfActiveSVPs.setStatus('current')
ciscoAtmIfActiveSVCs = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfActiveSVCs.setStatus('current')
ciscoAtmIfTotalConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfTotalConnections.setStatus('current')
ciscoAtmIfConfVplIf = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfConfVplIf.setStatus('current')
ciscoAtmIfPortType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25))).clone(namedValues=NamedValues(("other", 1), ("cpu", 2), ("ethernet", 3), ("oc3Utp", 4), ("oc3SingleModeFiber", 5), ("oc3MultiModeFiber", 6), ("oc12SingleModeFiber", 7), ("ds3", 8), ("e3", 9), ("ds1", 10), ("e1", 11), ("oc3Utp3", 12), ("oc3Utp5", 13), ("oc3SmIr", 14), ("oc3SmIrPlus", 15), ("oc3SmLr", 16), ("oc3Pof", 17), ("oc12MultiModeFiber", 18), ("oc12SmIr", 19), ("oc12SmIrPlus", 20), ("oc12SmLr", 21), ("oc12Pof", 22), ("oc12SmLr2", 23), ("oc12SmLr3", 24), ("atm25", 25)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfPortType.setStatus('current')
ciscoAtmIfXmitLed = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("off", 1), ("steadyGreen", 2), ("steadyYellow", 3), ("steadyRed", 4), ("flashGreen", 5), ("flashYellow", 6), ("flashRed", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfXmitLed.setStatus('current')
ciscoAtmIfRecvLed = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("off", 1), ("steadyGreen", 2), ("steadyYellow", 3), ("steadyRed", 4), ("flashGreen", 5), ("flashYellow", 6), ("flashRed", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfRecvLed.setStatus('current')
ciscoAtmIfXmitCells = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfXmitCells.setStatus('current')
ciscoAtmIfRecvCells = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfRecvCells.setStatus('current')
ciscoAtmIfSvcMinVci = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfSvcMinVci.setStatus('deprecated')
ciscoAtmIfIlmiConfiguration = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfIlmiConfiguration.setStatus('current')
ciscoAtmIfIlmiAddressRegistration = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfIlmiAddressRegistration.setStatus('current')
ciscoAtmIfIlmiAutoConfiguration = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfIlmiAutoConfiguration.setStatus('current')
ciscoAtmIfIlmiKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfIlmiKeepAlive.setStatus('current')
ciscoAtmIfSoftVcDestAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 20), NsapAtmAddr()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfSoftVcDestAddress.setStatus('current')
ciscoAtmIfUniSignallingVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("notApplicable", 1), ("atmfUni3Dot0", 2), ("atmfUni3Dot1", 3), ("atmfUni4Dot0", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfUniSignallingVersion.setStatus('current')
ciscoAtmIfSvcUpcIntent = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("passing", 1), ("tagging", 2), ("dropping", 3))).clone('passing')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSvcUpcIntent.setStatus('deprecated')
ciscoAtmIfAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("nsap", 1), ("esi", 2), ("e164", 3), ("null", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfAddressType.setStatus('obsolete')
ciscoAtmIfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 24), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(6, 6), ValueSizeConstraint(8, 8), ValueSizeConstraint(20, 20), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfAddress.setStatus('obsolete')
ciscoAtmIfWellKnownVcMode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("automatic", 1), ("manual", 2), ("manualDeleteUponEntry", 3))).clone('automatic')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfWellKnownVcMode.setStatus('current')
ciscoAtmIfSignallingAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2))).clone('enabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSignallingAdminStatus.setStatus('current')
ciscoAtmIfCdLed = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("steadyGreen", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfCdLed.setStatus('current')
ciscoAtmIfIlmiAccessFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("permitAll", 1), ("permitPrefix", 2), ("permitPrefixAndWellknownGroups", 3), ("permitPrefixAndAllGroups", 4), ("useGlobalDefaultFilter", 5))).clone('useGlobalDefaultFilter')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfIlmiAccessFilter.setStatus('current')
ciscoAtmIfConfigAESA = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 35), OctetString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(7, 7), ValueSizeConstraint(20, 20), ))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfConfigAESA.setStatus('current')
ciscoAtmIfDerivedAESA = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 36), AtmAddr()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfDerivedAESA.setStatus('current')
ciscoAtmIfE164Address = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 37), AtmAddr()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfE164Address.setStatus('current')
ciscoAtmIfE164AutoConversionOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 38), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfE164AutoConversionOnly.setStatus('current')
ciscoAtmIfRxCellUpcViolations = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 39), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfRxCellUpcViolations.setStatus('current')
ciscoAtmIfRxCellDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 40), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfRxCellDiscards.setStatus('current')
ciscoAtmIfIlmiFSMState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 41), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("down", 1), ("restarting", 2), ("waitDevType", 3), ("deviceAndPortTypeComplete", 4), ("awaitPnniConfig", 5), ("pnniConfigComplete", 6), ("awaitRestartAck", 7), ("upAndNormal", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfIlmiFSMState.setStatus('current')
ciscoAtmIfIlmiUpDownChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 42), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfIlmiUpDownChanges.setStatus('current')
ciscoAtmIfSscopFSMState = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("idle", 1), ("outgoingConnectionPending", 2), ("incomingConnectionPending", 3), ("dataTransferReady", 4), ("outgoingDisconnectionPending", 5), ("outgoingResyncPending", 6), ("incomingResyncPending", 7), ("outgoingRecoveryPending", 8), ("incomingRecoveryPending", 9), ("concurrentResyncPending", 10)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfSscopFSMState.setStatus('current')
ciscoAtmIfSscopUpDownChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 44), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ciscoAtmIfSscopUpDownChanges.setStatus('current')
ciscoAtmIfSvcUpcIntentCbr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 45), UpcMethod().clone('passing')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSvcUpcIntentCbr.setStatus('current')
ciscoAtmIfSvcUpcIntentVbrRt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 46), UpcMethod().clone('passing')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSvcUpcIntentVbrRt.setStatus('current')
ciscoAtmIfSvcUpcIntentVbrNrt = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 47), UpcMethod().clone('passing')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSvcUpcIntentVbrNrt.setStatus('current')
ciscoAtmIfSvcUpcIntentAbr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 48), UpcMethod().clone('passing')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSvcUpcIntentAbr.setStatus('current')
ciscoAtmIfSvcUpcIntentUbr = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 49), UpcMethod().clone('passing')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ciscoAtmIfSvcUpcIntentUbr.setStatus('current')
ciscoAtmIfMIBNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 0))
ciscoAtmIfEvent = NotificationType((1, 3, 6, 1, 4, 1, 9, 10, 14, 0, 1)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiFSMState"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSscopFSMState"))
if mibBuilder.loadTexts: ciscoAtmIfEvent.setStatus('current')
ciscoAtmIfMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 3))
ciscoAtmIfMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1))
ciscoAtmIfMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2))
ciscoAtmIfMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 1)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance = ciscoAtmIfMIBCompliance.setStatus('obsolete')
ciscoAtmIfMIBCompliance2 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 2)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup2"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance2 = ciscoAtmIfMIBCompliance2.setStatus('obsolete')
ciscoAtmIfMIBCompliance3 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 3)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup2"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup3"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance3 = ciscoAtmIfMIBCompliance3.setStatus('obsolete')
ciscoAtmIfMIBCompliance4 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 4)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup2"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup3"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup4"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance4 = ciscoAtmIfMIBCompliance4.setStatus('obsolete')
ciscoAtmIfMIBCompliance5 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 5)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup2"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup3"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup4"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup5"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance5 = ciscoAtmIfMIBCompliance5.setStatus('obsolete')
ciscoAtmIfMIBCompliance6 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 6)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup2"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup4"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup5"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup6"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup7"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance6 = ciscoAtmIfMIBCompliance6.setStatus('obsolete')
ciscoAtmIfMIBCompliance7 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 7)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup4"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup5"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup6"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup7"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup8"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance7 = ciscoAtmIfMIBCompliance7.setStatus('deprecated')
ciscoAtmIfMIBCompliance8 = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 8)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup4"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup5"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup6"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup7"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup8"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup9"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfMIBGroup10"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfNotifyGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBCompliance8 = ciscoAtmIfMIBCompliance8.setStatus('current')
ciscoAtmIfMIBGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 1)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfType"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSide"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfUniType"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfPVPs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfPVCs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfActiveSVPs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfActiveSVCs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfTotalConnections"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfConfVplIf"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfPortType"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfXmitLed"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfRecvLed"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfXmitCells"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfRecvCells"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSvcMinVci"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiConfiguration"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiAddressRegistration"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiAutoConfiguration"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiKeepAlive"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSoftVcDestAddress"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfCdLed"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup = ciscoAtmIfMIBGroup.setStatus('deprecated')
ciscoAtmIfMIBGroup2 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 2)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfUniSignallingVersion"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSvcUpcIntent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup2 = ciscoAtmIfMIBGroup2.setStatus('deprecated')
ciscoAtmIfMIBGroup3 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 3)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfAddressType"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfAddress"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfWellKnownVcMode"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSignallingAdminStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup3 = ciscoAtmIfMIBGroup3.setStatus('obsolete')
ciscoAtmIfMIBGroup4 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 4)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiAccessGlobalDefaultFilter"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiAccessFilter"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup4 = ciscoAtmIfMIBGroup4.setStatus('current')
ciscoAtmIfMIBGroup5 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 5)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfConfigAESA"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfDerivedAESA"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfE164Address"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfE164AutoConversionOnly"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup5 = ciscoAtmIfMIBGroup5.setStatus('current')
ciscoAtmIfMIBGroup6 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 6)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfWellKnownVcMode"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSignallingAdminStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup6 = ciscoAtmIfMIBGroup6.setStatus('current')
ciscoAtmIfMIBGroup7 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 7)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfRxCellUpcViolations"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfRxCellDiscards"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiFSMState"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiUpDownChanges"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSscopFSMState"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSscopUpDownChanges"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup7 = ciscoAtmIfMIBGroup7.setStatus('current')
ciscoAtmIfMIBGroup8 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 8)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfUniSignallingVersion"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSvcUpcIntentCbr"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSvcUpcIntentVbrRt"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSvcUpcIntentVbrNrt"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSvcUpcIntentAbr"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSvcUpcIntentUbr"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup8 = ciscoAtmIfMIBGroup8.setStatus('current')
ciscoAtmIfMIBGroup9 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 9)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfType"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSide"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfUniType"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfPVPs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfPVCs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfActiveSVPs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfActiveSVCs"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfTotalConnections"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfConfVplIf"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfPortType"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfXmitLed"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfRecvLed"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfXmitCells"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfRecvCells"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiConfiguration"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiAddressRegistration"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiAutoConfiguration"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfIlmiKeepAlive"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfSoftVcDestAddress"), ("CISCO-ATM-IF-MIB", "ciscoAtmIfCdLed"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup9 = ciscoAtmIfMIBGroup9.setStatus('current')
ciscoAtmIfMIBGroup10 = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 10)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfNotifsEnabled"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfMIBGroup10 = ciscoAtmIfMIBGroup10.setStatus('current')
ciscoAtmIfNotifyGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 11)).setObjects(("CISCO-ATM-IF-MIB", "ciscoAtmIfEvent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoAtmIfNotifyGroup = ciscoAtmIfNotifyGroup.setStatus('current')
mibBuilder.exportSymbols("CISCO-ATM-IF-MIB", ciscoAtmIfMIBGroup10=ciscoAtmIfMIBGroup10, ciscoAtmIfIlmiAccessFilter=ciscoAtmIfIlmiAccessFilter, ciscoAtmIfMIBGroup2=ciscoAtmIfMIBGroup2, ciscoAtmIfType=ciscoAtmIfType, ciscoAtmIfMIBGroup8=ciscoAtmIfMIBGroup8, ciscoAtmIfAddressType=ciscoAtmIfAddressType, ciscoAtmIfXmitLed=ciscoAtmIfXmitLed, ciscoAtmIfMIBConformance=ciscoAtmIfMIBConformance, ciscoAtmIfEvent=ciscoAtmIfEvent, ciscoAtmIfActiveSVPs=ciscoAtmIfActiveSVPs, ciscoAtmIfMIBGroup7=ciscoAtmIfMIBGroup7, ciscoAtmIfSvcUpcIntentAbr=ciscoAtmIfSvcUpcIntentAbr, ciscoAtmIfPortType=ciscoAtmIfPortType, ciscoAtmIfMIBCompliance7=ciscoAtmIfMIBCompliance7, ciscoAtmIfSvcMinVci=ciscoAtmIfSvcMinVci, ciscoAtmIfSvcUpcIntentCbr=ciscoAtmIfSvcUpcIntentCbr, ciscoAtmIfPVCs=ciscoAtmIfPVCs, ciscoAtmIfWellKnownVcMode=ciscoAtmIfWellKnownVcMode, ciscoAtmIfMIBCompliances=ciscoAtmIfMIBCompliances, ciscoAtmIfMIBGroups=ciscoAtmIfMIBGroups, ciscoAtmIfActiveSVCs=ciscoAtmIfActiveSVCs, ciscoAtmIfEntry=ciscoAtmIfEntry, ciscoAtmIfIlmiAccessGlobalDefaultFilter=ciscoAtmIfIlmiAccessGlobalDefaultFilter, ciscoAtmIfRxCellUpcViolations=ciscoAtmIfRxCellUpcViolations, ciscoAtmIfConfigAESA=ciscoAtmIfConfigAESA, ciscoAtmIfSignallingAdminStatus=ciscoAtmIfSignallingAdminStatus, ciscoAtmIfMIBGroup3=ciscoAtmIfMIBGroup3, ciscoAtmIfTable=ciscoAtmIfTable, ciscoAtmIfE164Address=ciscoAtmIfE164Address, ciscoAtmIfMIBGroup4=ciscoAtmIfMIBGroup4, ciscoAtmIfIlmiAutoConfiguration=ciscoAtmIfIlmiAutoConfiguration, ciscoAtmIfMIBGroup9=ciscoAtmIfMIBGroup9, ciscoAtmIfMIBNotifications=ciscoAtmIfMIBNotifications, ciscoAtmIfNotifyGroup=ciscoAtmIfNotifyGroup, ciscoAtmIfMIBCompliance6=ciscoAtmIfMIBCompliance6, ciscoAtmIfRecvCells=ciscoAtmIfRecvCells, ciscoAtmIfRecvLed=ciscoAtmIfRecvLed, NsapAtmAddr=NsapAtmAddr, ciscoAtmIfMIBGroup6=ciscoAtmIfMIBGroup6, ciscoAtmIfSvcUpcIntentVbrRt=ciscoAtmIfSvcUpcIntentVbrRt, ciscoAtmIfUniType=ciscoAtmIfUniType, ciscoAtmIfTotalConnections=ciscoAtmIfTotalConnections, ciscoAtmIfPVPs=ciscoAtmIfPVPs, ciscoAtmIfSvcUpcIntent=ciscoAtmIfSvcUpcIntent, ciscoAtmIfMIBGroup=ciscoAtmIfMIBGroup, ciscoAtmIfSscopUpDownChanges=ciscoAtmIfSscopUpDownChanges, ciscoAtmIfNotifsEnabled=ciscoAtmIfNotifsEnabled, PYSNMP_MODULE_ID=ciscoAtmIfMIB, ciscoAtmIfSide=ciscoAtmIfSide, ciscoAtmIfIlmiUpDownChanges=ciscoAtmIfIlmiUpDownChanges, ciscoAtmIfMIBGroup5=ciscoAtmIfMIBGroup5, ciscoAtmIfIlmiFSMState=ciscoAtmIfIlmiFSMState, ciscoAtmIfMIBCompliance5=ciscoAtmIfMIBCompliance5, ciscoAtmIfConfVplIf=ciscoAtmIfConfVplIf, ciscoAtmIfRxCellDiscards=ciscoAtmIfRxCellDiscards, ciscoAtmIfAddress=ciscoAtmIfAddress, ciscoAtmIfMIBCompliance8=ciscoAtmIfMIBCompliance8, ciscoAtmIfMIB=ciscoAtmIfMIB, ciscoAtmIfIlmiAddressRegistration=ciscoAtmIfIlmiAddressRegistration, ciscoAtmIfMIBCompliance2=ciscoAtmIfMIBCompliance2, ciscoAtmIfCdLed=ciscoAtmIfCdLed, ciscoAtmIfSvcUpcIntentVbrNrt=ciscoAtmIfSvcUpcIntentVbrNrt, ciscoAtmIfMIBCompliance4=ciscoAtmIfMIBCompliance4, ciscoAtmIfDerivedAESA=ciscoAtmIfDerivedAESA, ciscoAtmIfIlmiKeepAlive=ciscoAtmIfIlmiKeepAlive, ciscoAtmIfMIBObjects=ciscoAtmIfMIBObjects, ciscoAtmIfSscopFSMState=ciscoAtmIfSscopFSMState, ciscoAtmIfIlmiConfiguration=ciscoAtmIfIlmiConfiguration, ciscoAtmIfUniSignallingVersion=ciscoAtmIfUniSignallingVersion, ciscoAtmIfMIBCompliance=ciscoAtmIfMIBCompliance, ciscoAtmIfSoftVcDestAddress=ciscoAtmIfSoftVcDestAddress, ciscoAtmIfSvcUpcIntentUbr=ciscoAtmIfSvcUpcIntentUbr, UpcMethod=UpcMethod, AtmAddr=AtmAddr, ciscoAtmIfE164AutoConversionOnly=ciscoAtmIfE164AutoConversionOnly, ciscoAtmIfXmitCells=ciscoAtmIfXmitCells, ciscoAtmIfMIBCompliance3=ciscoAtmIfMIBCompliance3)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, single_value_constraint, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint')
(atm_interface_conf_entry,) = mibBuilder.importSymbols('ATM-MIB', 'atmInterfaceConfEntry')
(cisco_experiment,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoExperiment')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(object_identity, bits, counter64, ip_address, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, counter32, gauge32, integer32, module_identity, notification_type, time_ticks, mib_identifier, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Bits', 'Counter64', 'IpAddress', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter32', 'Gauge32', 'Integer32', 'ModuleIdentity', 'NotificationType', 'TimeTicks', 'MibIdentifier', 'iso')
(textual_convention, display_string, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'TruthValue')
cisco_atm_if_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 10, 14))
ciscoAtmIfMIB.setRevisions(('2002-02-13 00:00', '2001-08-08 00:00', '2001-05-21 00:00', '2000-04-11 00:00', '1999-03-11 00:00', '1997-11-30 00:00', '1997-09-10 00:00', '1996-11-01 00:00', '1996-10-14 00:00'))
if mibBuilder.loadTexts:
ciscoAtmIfMIB.setLastUpdated('200202130000Z')
if mibBuilder.loadTexts:
ciscoAtmIfMIB.setOrganization('Cisco Systems, Inc.')
cisco_atm_if_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 1))
class Nsapatmaddr(TextualConvention, OctetString):
status = 'current'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(20, 20)
fixed_length = 20
class Atmaddr(TextualConvention, OctetString):
status = 'current'
subtype_spec = OctetString.subtypeSpec + constraints_union(value_size_constraint(0, 0), value_size_constraint(8, 8), value_size_constraint(13, 13), value_size_constraint(20, 20))
class Upcmethod(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('passing', 1), ('tagging', 2), ('dropping', 3))
cisco_atm_if_ilmi_access_global_default_filter = mib_scalar((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('permitAll', 1), ('permitPrefix', 2), ('permitPrefixAndWellknownGroups', 3), ('permitPrefixAndAllGroups', 4))).clone('permitAll')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiAccessGlobalDefaultFilter.setStatus('current')
cisco_atm_if_notifs_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 3), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfNotifsEnabled.setStatus('current')
cisco_atm_if_table = mib_table((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1))
if mibBuilder.loadTexts:
ciscoAtmIfTable.setStatus('current')
cisco_atm_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1))
atmInterfaceConfEntry.registerAugmentions(('CISCO-ATM-IF-MIB', 'ciscoAtmIfEntry'))
ciscoAtmIfEntry.setIndexNames(*atmInterfaceConfEntry.getIndexNames())
if mibBuilder.loadTexts:
ciscoAtmIfEntry.setStatus('current')
cisco_atm_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('other', 1), ('uni', 2), ('pnni', 3), ('iisp', 4), ('nniPvcOnly', 5), ('aini', 6))).clone('uni')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfType.setStatus('current')
cisco_atm_if_side = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('user', 1), ('network', 2), ('notApplicable', 3))).clone('network')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSide.setStatus('current')
cisco_atm_if_uni_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('public', 1), ('private', 2))).clone('private')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfUniType.setStatus('current')
cisco_atm_if_pv_ps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfPVPs.setStatus('current')
cisco_atm_if_pv_cs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfPVCs.setStatus('current')
cisco_atm_if_active_sv_ps = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 6), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfActiveSVPs.setStatus('current')
cisco_atm_if_active_sv_cs = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 7), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfActiveSVCs.setStatus('current')
cisco_atm_if_total_connections = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 8), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfTotalConnections.setStatus('current')
cisco_atm_if_conf_vpl_if = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfConfVplIf.setStatus('current')
cisco_atm_if_port_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25))).clone(namedValues=named_values(('other', 1), ('cpu', 2), ('ethernet', 3), ('oc3Utp', 4), ('oc3SingleModeFiber', 5), ('oc3MultiModeFiber', 6), ('oc12SingleModeFiber', 7), ('ds3', 8), ('e3', 9), ('ds1', 10), ('e1', 11), ('oc3Utp3', 12), ('oc3Utp5', 13), ('oc3SmIr', 14), ('oc3SmIrPlus', 15), ('oc3SmLr', 16), ('oc3Pof', 17), ('oc12MultiModeFiber', 18), ('oc12SmIr', 19), ('oc12SmIrPlus', 20), ('oc12SmLr', 21), ('oc12Pof', 22), ('oc12SmLr2', 23), ('oc12SmLr3', 24), ('atm25', 25)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfPortType.setStatus('current')
cisco_atm_if_xmit_led = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('off', 1), ('steadyGreen', 2), ('steadyYellow', 3), ('steadyRed', 4), ('flashGreen', 5), ('flashYellow', 6), ('flashRed', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfXmitLed.setStatus('current')
cisco_atm_if_recv_led = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('off', 1), ('steadyGreen', 2), ('steadyYellow', 3), ('steadyRed', 4), ('flashGreen', 5), ('flashYellow', 6), ('flashRed', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfRecvLed.setStatus('current')
cisco_atm_if_xmit_cells = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfXmitCells.setStatus('current')
cisco_atm_if_recv_cells = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfRecvCells.setStatus('current')
cisco_atm_if_svc_min_vci = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfSvcMinVci.setStatus('deprecated')
cisco_atm_if_ilmi_configuration = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiConfiguration.setStatus('current')
cisco_atm_if_ilmi_address_registration = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiAddressRegistration.setStatus('current')
cisco_atm_if_ilmi_auto_configuration = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('disabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiAutoConfiguration.setStatus('current')
cisco_atm_if_ilmi_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiKeepAlive.setStatus('current')
cisco_atm_if_soft_vc_dest_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 20), nsap_atm_addr()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfSoftVcDestAddress.setStatus('current')
cisco_atm_if_uni_signalling_version = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('notApplicable', 1), ('atmfUni3Dot0', 2), ('atmfUni3Dot1', 3), ('atmfUni4Dot0', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfUniSignallingVersion.setStatus('current')
cisco_atm_if_svc_upc_intent = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('passing', 1), ('tagging', 2), ('dropping', 3))).clone('passing')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSvcUpcIntent.setStatus('deprecated')
cisco_atm_if_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('nsap', 1), ('esi', 2), ('e164', 3), ('null', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfAddressType.setStatus('obsolete')
cisco_atm_if_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 24), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(6, 6), value_size_constraint(8, 8), value_size_constraint(20, 20)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfAddress.setStatus('obsolete')
cisco_atm_if_well_known_vc_mode = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('automatic', 1), ('manual', 2), ('manualDeleteUponEntry', 3))).clone('automatic')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfWellKnownVcMode.setStatus('current')
cisco_atm_if_signalling_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2))).clone('enabled')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSignallingAdminStatus.setStatus('current')
cisco_atm_if_cd_led = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('steadyGreen', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfCdLed.setStatus('current')
cisco_atm_if_ilmi_access_filter = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('permitAll', 1), ('permitPrefix', 2), ('permitPrefixAndWellknownGroups', 3), ('permitPrefixAndAllGroups', 4), ('useGlobalDefaultFilter', 5))).clone('useGlobalDefaultFilter')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiAccessFilter.setStatus('current')
cisco_atm_if_config_aesa = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 35), octet_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(7, 7), value_size_constraint(20, 20)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfConfigAESA.setStatus('current')
cisco_atm_if_derived_aesa = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 36), atm_addr()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfDerivedAESA.setStatus('current')
cisco_atm_if_e164_address = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 37), atm_addr()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfE164Address.setStatus('current')
cisco_atm_if_e164_auto_conversion_only = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 38), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfE164AutoConversionOnly.setStatus('current')
cisco_atm_if_rx_cell_upc_violations = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 39), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfRxCellUpcViolations.setStatus('current')
cisco_atm_if_rx_cell_discards = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 40), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfRxCellDiscards.setStatus('current')
cisco_atm_if_ilmi_fsm_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 41), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('down', 1), ('restarting', 2), ('waitDevType', 3), ('deviceAndPortTypeComplete', 4), ('awaitPnniConfig', 5), ('pnniConfigComplete', 6), ('awaitRestartAck', 7), ('upAndNormal', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiFSMState.setStatus('current')
cisco_atm_if_ilmi_up_down_changes = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 42), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfIlmiUpDownChanges.setStatus('current')
cisco_atm_if_sscop_fsm_state = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('idle', 1), ('outgoingConnectionPending', 2), ('incomingConnectionPending', 3), ('dataTransferReady', 4), ('outgoingDisconnectionPending', 5), ('outgoingResyncPending', 6), ('incomingResyncPending', 7), ('outgoingRecoveryPending', 8), ('incomingRecoveryPending', 9), ('concurrentResyncPending', 10)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfSscopFSMState.setStatus('current')
cisco_atm_if_sscop_up_down_changes = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 44), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ciscoAtmIfSscopUpDownChanges.setStatus('current')
cisco_atm_if_svc_upc_intent_cbr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 45), upc_method().clone('passing')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSvcUpcIntentCbr.setStatus('current')
cisco_atm_if_svc_upc_intent_vbr_rt = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 46), upc_method().clone('passing')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSvcUpcIntentVbrRt.setStatus('current')
cisco_atm_if_svc_upc_intent_vbr_nrt = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 47), upc_method().clone('passing')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSvcUpcIntentVbrNrt.setStatus('current')
cisco_atm_if_svc_upc_intent_abr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 48), upc_method().clone('passing')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSvcUpcIntentAbr.setStatus('current')
cisco_atm_if_svc_upc_intent_ubr = mib_table_column((1, 3, 6, 1, 4, 1, 9, 10, 14, 1, 1, 1, 49), upc_method().clone('passing')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ciscoAtmIfSvcUpcIntentUbr.setStatus('current')
cisco_atm_if_mib_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 0))
cisco_atm_if_event = notification_type((1, 3, 6, 1, 4, 1, 9, 10, 14, 0, 1)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiFSMState'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSscopFSMState'))
if mibBuilder.loadTexts:
ciscoAtmIfEvent.setStatus('current')
cisco_atm_if_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 3))
cisco_atm_if_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1))
cisco_atm_if_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2))
cisco_atm_if_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 1)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance = ciscoAtmIfMIBCompliance.setStatus('obsolete')
cisco_atm_if_mib_compliance2 = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 2)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup2'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance2 = ciscoAtmIfMIBCompliance2.setStatus('obsolete')
cisco_atm_if_mib_compliance3 = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 3)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup2'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup3'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance3 = ciscoAtmIfMIBCompliance3.setStatus('obsolete')
cisco_atm_if_mib_compliance4 = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 4)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup2'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup3'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup4'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance4 = ciscoAtmIfMIBCompliance4.setStatus('obsolete')
cisco_atm_if_mib_compliance5 = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 5)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup2'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup3'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup4'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup5'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance5 = ciscoAtmIfMIBCompliance5.setStatus('obsolete')
cisco_atm_if_mib_compliance6 = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 6)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup2'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup4'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup5'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup6'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup7'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance6 = ciscoAtmIfMIBCompliance6.setStatus('obsolete')
cisco_atm_if_mib_compliance7 = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 7)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup4'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup5'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup6'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup7'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup8'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance7 = ciscoAtmIfMIBCompliance7.setStatus('deprecated')
cisco_atm_if_mib_compliance8 = module_compliance((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 1, 8)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup4'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup5'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup6'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup7'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup8'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup9'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfMIBGroup10'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfNotifyGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_compliance8 = ciscoAtmIfMIBCompliance8.setStatus('current')
cisco_atm_if_mib_group = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 1)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfType'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSide'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfUniType'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfPVPs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfPVCs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfActiveSVPs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfActiveSVCs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfTotalConnections'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfConfVplIf'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfPortType'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfXmitLed'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfRecvLed'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfXmitCells'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfRecvCells'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSvcMinVci'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiConfiguration'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiAddressRegistration'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiAutoConfiguration'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiKeepAlive'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSoftVcDestAddress'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfCdLed'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group = ciscoAtmIfMIBGroup.setStatus('deprecated')
cisco_atm_if_mib_group2 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 2)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfUniSignallingVersion'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSvcUpcIntent'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group2 = ciscoAtmIfMIBGroup2.setStatus('deprecated')
cisco_atm_if_mib_group3 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 3)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfAddressType'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfAddress'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfWellKnownVcMode'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSignallingAdminStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group3 = ciscoAtmIfMIBGroup3.setStatus('obsolete')
cisco_atm_if_mib_group4 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 4)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiAccessGlobalDefaultFilter'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiAccessFilter'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group4 = ciscoAtmIfMIBGroup4.setStatus('current')
cisco_atm_if_mib_group5 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 5)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfConfigAESA'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfDerivedAESA'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfE164Address'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfE164AutoConversionOnly'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group5 = ciscoAtmIfMIBGroup5.setStatus('current')
cisco_atm_if_mib_group6 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 6)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfWellKnownVcMode'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSignallingAdminStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group6 = ciscoAtmIfMIBGroup6.setStatus('current')
cisco_atm_if_mib_group7 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 7)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfRxCellUpcViolations'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfRxCellDiscards'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiFSMState'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiUpDownChanges'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSscopFSMState'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSscopUpDownChanges'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group7 = ciscoAtmIfMIBGroup7.setStatus('current')
cisco_atm_if_mib_group8 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 8)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfUniSignallingVersion'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSvcUpcIntentCbr'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSvcUpcIntentVbrRt'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSvcUpcIntentVbrNrt'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSvcUpcIntentAbr'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSvcUpcIntentUbr'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group8 = ciscoAtmIfMIBGroup8.setStatus('current')
cisco_atm_if_mib_group9 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 9)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfType'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSide'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfUniType'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfPVPs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfPVCs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfActiveSVPs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfActiveSVCs'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfTotalConnections'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfConfVplIf'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfPortType'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfXmitLed'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfRecvLed'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfXmitCells'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfRecvCells'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiConfiguration'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiAddressRegistration'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiAutoConfiguration'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfIlmiKeepAlive'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfSoftVcDestAddress'), ('CISCO-ATM-IF-MIB', 'ciscoAtmIfCdLed'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group9 = ciscoAtmIfMIBGroup9.setStatus('current')
cisco_atm_if_mib_group10 = object_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 10)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfNotifsEnabled'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_mib_group10 = ciscoAtmIfMIBGroup10.setStatus('current')
cisco_atm_if_notify_group = notification_group((1, 3, 6, 1, 4, 1, 9, 10, 14, 3, 2, 11)).setObjects(('CISCO-ATM-IF-MIB', 'ciscoAtmIfEvent'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_atm_if_notify_group = ciscoAtmIfNotifyGroup.setStatus('current')
mibBuilder.exportSymbols('CISCO-ATM-IF-MIB', ciscoAtmIfMIBGroup10=ciscoAtmIfMIBGroup10, ciscoAtmIfIlmiAccessFilter=ciscoAtmIfIlmiAccessFilter, ciscoAtmIfMIBGroup2=ciscoAtmIfMIBGroup2, ciscoAtmIfType=ciscoAtmIfType, ciscoAtmIfMIBGroup8=ciscoAtmIfMIBGroup8, ciscoAtmIfAddressType=ciscoAtmIfAddressType, ciscoAtmIfXmitLed=ciscoAtmIfXmitLed, ciscoAtmIfMIBConformance=ciscoAtmIfMIBConformance, ciscoAtmIfEvent=ciscoAtmIfEvent, ciscoAtmIfActiveSVPs=ciscoAtmIfActiveSVPs, ciscoAtmIfMIBGroup7=ciscoAtmIfMIBGroup7, ciscoAtmIfSvcUpcIntentAbr=ciscoAtmIfSvcUpcIntentAbr, ciscoAtmIfPortType=ciscoAtmIfPortType, ciscoAtmIfMIBCompliance7=ciscoAtmIfMIBCompliance7, ciscoAtmIfSvcMinVci=ciscoAtmIfSvcMinVci, ciscoAtmIfSvcUpcIntentCbr=ciscoAtmIfSvcUpcIntentCbr, ciscoAtmIfPVCs=ciscoAtmIfPVCs, ciscoAtmIfWellKnownVcMode=ciscoAtmIfWellKnownVcMode, ciscoAtmIfMIBCompliances=ciscoAtmIfMIBCompliances, ciscoAtmIfMIBGroups=ciscoAtmIfMIBGroups, ciscoAtmIfActiveSVCs=ciscoAtmIfActiveSVCs, ciscoAtmIfEntry=ciscoAtmIfEntry, ciscoAtmIfIlmiAccessGlobalDefaultFilter=ciscoAtmIfIlmiAccessGlobalDefaultFilter, ciscoAtmIfRxCellUpcViolations=ciscoAtmIfRxCellUpcViolations, ciscoAtmIfConfigAESA=ciscoAtmIfConfigAESA, ciscoAtmIfSignallingAdminStatus=ciscoAtmIfSignallingAdminStatus, ciscoAtmIfMIBGroup3=ciscoAtmIfMIBGroup3, ciscoAtmIfTable=ciscoAtmIfTable, ciscoAtmIfE164Address=ciscoAtmIfE164Address, ciscoAtmIfMIBGroup4=ciscoAtmIfMIBGroup4, ciscoAtmIfIlmiAutoConfiguration=ciscoAtmIfIlmiAutoConfiguration, ciscoAtmIfMIBGroup9=ciscoAtmIfMIBGroup9, ciscoAtmIfMIBNotifications=ciscoAtmIfMIBNotifications, ciscoAtmIfNotifyGroup=ciscoAtmIfNotifyGroup, ciscoAtmIfMIBCompliance6=ciscoAtmIfMIBCompliance6, ciscoAtmIfRecvCells=ciscoAtmIfRecvCells, ciscoAtmIfRecvLed=ciscoAtmIfRecvLed, NsapAtmAddr=NsapAtmAddr, ciscoAtmIfMIBGroup6=ciscoAtmIfMIBGroup6, ciscoAtmIfSvcUpcIntentVbrRt=ciscoAtmIfSvcUpcIntentVbrRt, ciscoAtmIfUniType=ciscoAtmIfUniType, ciscoAtmIfTotalConnections=ciscoAtmIfTotalConnections, ciscoAtmIfPVPs=ciscoAtmIfPVPs, ciscoAtmIfSvcUpcIntent=ciscoAtmIfSvcUpcIntent, ciscoAtmIfMIBGroup=ciscoAtmIfMIBGroup, ciscoAtmIfSscopUpDownChanges=ciscoAtmIfSscopUpDownChanges, ciscoAtmIfNotifsEnabled=ciscoAtmIfNotifsEnabled, PYSNMP_MODULE_ID=ciscoAtmIfMIB, ciscoAtmIfSide=ciscoAtmIfSide, ciscoAtmIfIlmiUpDownChanges=ciscoAtmIfIlmiUpDownChanges, ciscoAtmIfMIBGroup5=ciscoAtmIfMIBGroup5, ciscoAtmIfIlmiFSMState=ciscoAtmIfIlmiFSMState, ciscoAtmIfMIBCompliance5=ciscoAtmIfMIBCompliance5, ciscoAtmIfConfVplIf=ciscoAtmIfConfVplIf, ciscoAtmIfRxCellDiscards=ciscoAtmIfRxCellDiscards, ciscoAtmIfAddress=ciscoAtmIfAddress, ciscoAtmIfMIBCompliance8=ciscoAtmIfMIBCompliance8, ciscoAtmIfMIB=ciscoAtmIfMIB, ciscoAtmIfIlmiAddressRegistration=ciscoAtmIfIlmiAddressRegistration, ciscoAtmIfMIBCompliance2=ciscoAtmIfMIBCompliance2, ciscoAtmIfCdLed=ciscoAtmIfCdLed, ciscoAtmIfSvcUpcIntentVbrNrt=ciscoAtmIfSvcUpcIntentVbrNrt, ciscoAtmIfMIBCompliance4=ciscoAtmIfMIBCompliance4, ciscoAtmIfDerivedAESA=ciscoAtmIfDerivedAESA, ciscoAtmIfIlmiKeepAlive=ciscoAtmIfIlmiKeepAlive, ciscoAtmIfMIBObjects=ciscoAtmIfMIBObjects, ciscoAtmIfSscopFSMState=ciscoAtmIfSscopFSMState, ciscoAtmIfIlmiConfiguration=ciscoAtmIfIlmiConfiguration, ciscoAtmIfUniSignallingVersion=ciscoAtmIfUniSignallingVersion, ciscoAtmIfMIBCompliance=ciscoAtmIfMIBCompliance, ciscoAtmIfSoftVcDestAddress=ciscoAtmIfSoftVcDestAddress, ciscoAtmIfSvcUpcIntentUbr=ciscoAtmIfSvcUpcIntentUbr, UpcMethod=UpcMethod, AtmAddr=AtmAddr, ciscoAtmIfE164AutoConversionOnly=ciscoAtmIfE164AutoConversionOnly, ciscoAtmIfXmitCells=ciscoAtmIfXmitCells, ciscoAtmIfMIBCompliance3=ciscoAtmIfMIBCompliance3) |
DEBUG = False
LANGUAGES = (("en", "English"),)
LANGUAGE_CODE = "en"
USE_TZ = False
USE_I18N = True
SECRET_KEY = "fake-key"
PASSWORD_EXPIRE_SECONDS = 10 * 60 # 10 minutes
PASSWORD_EXPIRE_WARN_SECONDS = 5 * 60 # 5 minutes
INSTALLED_APPS = [
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.messages",
"password_expire",
]
MIDDLEWARE = (
"django.middleware.common.CommonMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"password_expire.middleware.PasswordExpireMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
)
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": ":memory:",
"TEST_NAME": ":memory:",
"USER": "",
"PASSWORD": "",
"PORT": "",
},
}
| debug = False
languages = (('en', 'English'),)
language_code = 'en'
use_tz = False
use_i18_n = True
secret_key = 'fake-key'
password_expire_seconds = 10 * 60
password_expire_warn_seconds = 5 * 60
installed_apps = ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'password_expire']
middleware = ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'password_expire.middleware.PasswordExpireMiddleware', 'django.contrib.messages.middleware.MessageMiddleware')
databases = {'default': {'ENGINE': 'django.db.backends.sqlite3', 'NAME': ':memory:', 'TEST_NAME': ':memory:', 'USER': '', 'PASSWORD': '', 'PORT': ''}} |
def test_image_name(add_product_with_image, find_product_image):
print(type(find_product_image))
print(find_product_image)
assert 'macbook_pro' in find_product_image
| def test_image_name(add_product_with_image, find_product_image):
print(type(find_product_image))
print(find_product_image)
assert 'macbook_pro' in find_product_image |
# yahoo.py
# Trevor Pottinger
# Fri Oct 18 22:57:23 PDT 2019
class Yahoo(object):
@classmethod
async def gen_s_and_p_history() -> None:
url = 'https://finance.yahoo.com/quote/%5EGSPC/history?period1=1413529200&period2=1571295600&interval=1d&filter=history&frequency=1d'
| class Yahoo(object):
@classmethod
async def gen_s_and_p_history() -> None:
url = 'https://finance.yahoo.com/quote/%5EGSPC/history?period1=1413529200&period2=1571295600&interval=1d&filter=history&frequency=1d' |
# https://leetcode.com/problems/decode-string/
# Given an encoded string, return it's decoded string.
#
# The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times. Note that k is guaranteed to be a positive integer.
#
# You may assume that the input string is always valid; No extra white spaces, square brackets are well-formed, etc.
#
# Furthermore, you may assume that the original data does not contain any digits and that digits are only for those repeat numbers, k. For example, there won't be input like 3a or 2[4].
class Solution(object):
def rle_decoding(self, strs):
res_list, cnt_list, res_str, cnt, i = [], [], '', 0, 0
while i < len(strs):
if strs[i].isdigit():
cnt=cnt*10+int(strs[i])
i += 1
continue
else:
j = i
while j < len(strs) and not strs[j].isdigit():
j += 1
res_list.append(strs[i:j])
cnt_list.append(cnt)
cnt = 0
i = j
for k in range(len(res_list)):
res_str += res_list[k] * cnt_list[k]
return res_str
#https://discuss.leetcode.com/topic/57212/python-rle-solution-for-encoding-problem/2
def decodeString(self, strs):
stck = []
for i in range(len(strs)):
if strs[i] == ']':
tstr = []
while stck and stck[-1] != '[':
tstr.insert(0,stck.pop())
if stck:
# pop out the '['
stck.pop()
# add the number
while stck and stck[-1].isdigit():
tstr.insert(0,stck.pop())
# add to result
stck.append(self.rle_decoding(''.join(tstr)))
else:
stck.append(strs[i])
return ''.join(stck) if stck else '' | class Solution(object):
def rle_decoding(self, strs):
(res_list, cnt_list, res_str, cnt, i) = ([], [], '', 0, 0)
while i < len(strs):
if strs[i].isdigit():
cnt = cnt * 10 + int(strs[i])
i += 1
continue
else:
j = i
while j < len(strs) and (not strs[j].isdigit()):
j += 1
res_list.append(strs[i:j])
cnt_list.append(cnt)
cnt = 0
i = j
for k in range(len(res_list)):
res_str += res_list[k] * cnt_list[k]
return res_str
def decode_string(self, strs):
stck = []
for i in range(len(strs)):
if strs[i] == ']':
tstr = []
while stck and stck[-1] != '[':
tstr.insert(0, stck.pop())
if stck:
stck.pop()
while stck and stck[-1].isdigit():
tstr.insert(0, stck.pop())
stck.append(self.rle_decoding(''.join(tstr)))
else:
stck.append(strs[i])
return ''.join(stck) if stck else '' |
# OOBE Stages
OOBE_ASK_PHONE_TYPE = 0
OOBE_DOWNLOAD_MESSAGE = 1
OOBE_WAITING_ON_PHONE_TO_ENTER_CODE = 2
OOBE_WAITING_ON_PHONE_TO_ACCEPT_PAIRING = 3
OOBE_PAIRING_SUCCESS = 4
OOBE_CHECKING_FOR_UPDATE = 5
OOBE_STARTING_UPDATE = 6
OOBE_UPDATE_COMPLETE = 7
OOBE_WAITING_ON_PHONE_TO_COMPLETE_OOBE = 8
OOBE_PRESS_ACTION_BUTTON = 9
OOBE_ERROR_STATE = 10
OOBE_PAIR_MESSAGE = 11
OOBE_PRE_STATE_CHARGING = 100
OOBE_PRE_STATE_LANGUAGE_SELECT = 101
| oobe_ask_phone_type = 0
oobe_download_message = 1
oobe_waiting_on_phone_to_enter_code = 2
oobe_waiting_on_phone_to_accept_pairing = 3
oobe_pairing_success = 4
oobe_checking_for_update = 5
oobe_starting_update = 6
oobe_update_complete = 7
oobe_waiting_on_phone_to_complete_oobe = 8
oobe_press_action_button = 9
oobe_error_state = 10
oobe_pair_message = 11
oobe_pre_state_charging = 100
oobe_pre_state_language_select = 101 |
'''
- Leetcode problem: 22
- Difficulty: Medium
- Brief problem description:
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
For example, given n = 3, a solution set is:
[
"((()))",
"(()())",
"(())()",
"()(())",
"()()()"
]
- Solution Summary:
Use backtrack to solve the problem.
- Used Resources:
--- Bo Zhou
'''
class Solution:
def backTrack(self, combined, left, right, n, result):
if len(combined) == 2 * n:
result.append(combined)
return
if left < n:
combined += '('
self.backTrack(combined, left + 1, right, n, result)
combined = combined[:-1]
if left > right:
combined += ')'
self.backTrack(combined, left, right + 1, n, result)
def generateParenthesis(self, n: int):
result = []
if (n > 0):
self.backTrack('', 0, 0, n, result)
return result
if __name__ == "__main__":
solution = Solution()
print(solution.generateParenthesis(3)) | """
- Leetcode problem: 22
- Difficulty: Medium
- Brief problem description:
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
For example, given n = 3, a solution set is:
[
"((()))",
"(()())",
"(())()",
"()(())",
"()()()"
]
- Solution Summary:
Use backtrack to solve the problem.
- Used Resources:
--- Bo Zhou
"""
class Solution:
def back_track(self, combined, left, right, n, result):
if len(combined) == 2 * n:
result.append(combined)
return
if left < n:
combined += '('
self.backTrack(combined, left + 1, right, n, result)
combined = combined[:-1]
if left > right:
combined += ')'
self.backTrack(combined, left, right + 1, n, result)
def generate_parenthesis(self, n: int):
result = []
if n > 0:
self.backTrack('', 0, 0, n, result)
return result
if __name__ == '__main__':
solution = solution()
print(solution.generateParenthesis(3)) |
class Solution:
def isPerfectSquare(self, num: int) -> bool:
left, right = 0, num
while left <= right:
mid = left + (right - left) // 2
if mid * mid == num:
return True
elif mid * mid > num:
right = mid - 1
else:
left = mid + 1
return False
if __name__ == '__main__':
num = int(input("Input: "))
print(f"Output: {Solution().isPerfectSquare(num)}")
| class Solution:
def is_perfect_square(self, num: int) -> bool:
(left, right) = (0, num)
while left <= right:
mid = left + (right - left) // 2
if mid * mid == num:
return True
elif mid * mid > num:
right = mid - 1
else:
left = mid + 1
return False
if __name__ == '__main__':
num = int(input('Input: '))
print(f'Output: {solution().isPerfectSquare(num)}') |
# 1-2_find_num.py
def solution(input_str):
# - # - # - # - # - # - # - # - # - # - # - # - # - # - #
# Write your code here.
answer = ""
for i in range(10):
if str(i) in input_str:
pass
else:
answer = str(i)
break
return answer
# - # - # - # - # - # - # - # - # - # - # - # - # - # - #
input_str1 = "012345678"
input_str2 = "483750219"
input_str3 = "242810485760109726496"
print(solution(input_str1)+", "+solution(input_str2)+", "+solution(input_str3)) | def solution(input_str):
answer = ''
for i in range(10):
if str(i) in input_str:
pass
else:
answer = str(i)
break
return answer
input_str1 = '012345678'
input_str2 = '483750219'
input_str3 = '242810485760109726496'
print(solution(input_str1) + ', ' + solution(input_str2) + ', ' + solution(input_str3)) |
class Person:
def __init__(self, name, race):
self.name = name
self.race = race
self.stamina = 100
self.agility = 100
self.strenght = 100
self.health = 100
self.intellegence = 100
self.level = 1
self.armor = 20
self.speed = 20
self.damage = 40
self.expirience = 0
def lvlup(self, exp):
exp_list = [20, 30, 40, 100, 500, 1000]
i = 0
for i in range(len(exp_list)):
i = self.level - 1
if exp_list[i] <= exp:
print(exp)
exp -= exp_list[i]
self.level += 1
self.stamina += 13
self.agility += 13
self.strenght += 13
self.intellegence += 13
self.expirience = exp
def equip(self, item):
items_list = ['sword', 'boots', 'heavy_armor', 'light_armor', 'bow', 'staff', 'potion']
if item == 'sword':
self.damage += 50
self.strenght += 40
elif item == 'boots':
self.speed += 10
elif item == 'heavy_armor':
self.armor += 50
self.stamina -= 50
self.speed -= 20
self.health += 500
self.strenght += 50
elif item == 'light_armor':
self.armor += 10
self.stamina += 50
self.health += 200
self.strenght += 20
self.agility += 10
elif item == 'bow':
self.agility += 40
self.damage += 50
elif item == 'staff':
self.intellegence += 100
self.health += 70
elif item == 'potion':
self.stamina += 2
self.agility += 2
self.strenght += 2
self.health += 2
self.intellegence += 2
self.armor += 2
self.speed += 2
self.damage += 2
person1 = Person(name='Garosh', race='Ork')
person1.lvlup(2000)
person1.check_exp()
print(person1.expirience)
print(person1.name, person1.race, person1.speed, person1.level, person1.agility,person1.strenght,person1.stamina,person1.damage,
person1.health,person1.intellegence,person1.armor
)
person1.equip('potion') | class Person:
def __init__(self, name, race):
self.name = name
self.race = race
self.stamina = 100
self.agility = 100
self.strenght = 100
self.health = 100
self.intellegence = 100
self.level = 1
self.armor = 20
self.speed = 20
self.damage = 40
self.expirience = 0
def lvlup(self, exp):
exp_list = [20, 30, 40, 100, 500, 1000]
i = 0
for i in range(len(exp_list)):
i = self.level - 1
if exp_list[i] <= exp:
print(exp)
exp -= exp_list[i]
self.level += 1
self.stamina += 13
self.agility += 13
self.strenght += 13
self.intellegence += 13
self.expirience = exp
def equip(self, item):
items_list = ['sword', 'boots', 'heavy_armor', 'light_armor', 'bow', 'staff', 'potion']
if item == 'sword':
self.damage += 50
self.strenght += 40
elif item == 'boots':
self.speed += 10
elif item == 'heavy_armor':
self.armor += 50
self.stamina -= 50
self.speed -= 20
self.health += 500
self.strenght += 50
elif item == 'light_armor':
self.armor += 10
self.stamina += 50
self.health += 200
self.strenght += 20
self.agility += 10
elif item == 'bow':
self.agility += 40
self.damage += 50
elif item == 'staff':
self.intellegence += 100
self.health += 70
elif item == 'potion':
self.stamina += 2
self.agility += 2
self.strenght += 2
self.health += 2
self.intellegence += 2
self.armor += 2
self.speed += 2
self.damage += 2
person1 = person(name='Garosh', race='Ork')
person1.lvlup(2000)
person1.check_exp()
print(person1.expirience)
print(person1.name, person1.race, person1.speed, person1.level, person1.agility, person1.strenght, person1.stamina, person1.damage, person1.health, person1.intellegence, person1.armor)
person1.equip('potion') |
def parse_instruction(line):
instruction, step = line.split()
return (instruction, int(step))
def parse_program(lines):
return [parse_instruction(line) for line in lines]
def gen_alt_programs(program):
for i in range(len(program)):
ins, step = program[i]
if ins == "jmp":
new_ins = "nop"
elif ins == "nop":
new_ins = "jmp"
else:
new_ins = "acc"
p2 = program[:]
p2[i] = (new_ins, step)
yield p2
def perform_instruction(program, i, acc):
ins, step = program[i]
if ins == "acc":
acc = acc + step
if ins == "jmp":
i = i + step
else:
i = i + 1
return i, acc
def run_until_loop_or_end(program):
i = 0
acc = 0
seen_is = []
while (i not in seen_is) and i < len(program):
seen_is.append(i)
i, acc = perform_instruction(program, i, acc)
return acc, i
def solve(input):
program = parse_program(input)
alt_p = gen_alt_programs(program)
for prog in alt_p:
acc, last_ins = run_until_loop_or_end(prog)
if last_ins >= len(program):
break
return (run_until_loop_or_end(program)[0], acc)
| def parse_instruction(line):
(instruction, step) = line.split()
return (instruction, int(step))
def parse_program(lines):
return [parse_instruction(line) for line in lines]
def gen_alt_programs(program):
for i in range(len(program)):
(ins, step) = program[i]
if ins == 'jmp':
new_ins = 'nop'
elif ins == 'nop':
new_ins = 'jmp'
else:
new_ins = 'acc'
p2 = program[:]
p2[i] = (new_ins, step)
yield p2
def perform_instruction(program, i, acc):
(ins, step) = program[i]
if ins == 'acc':
acc = acc + step
if ins == 'jmp':
i = i + step
else:
i = i + 1
return (i, acc)
def run_until_loop_or_end(program):
i = 0
acc = 0
seen_is = []
while i not in seen_is and i < len(program):
seen_is.append(i)
(i, acc) = perform_instruction(program, i, acc)
return (acc, i)
def solve(input):
program = parse_program(input)
alt_p = gen_alt_programs(program)
for prog in alt_p:
(acc, last_ins) = run_until_loop_or_end(prog)
if last_ins >= len(program):
break
return (run_until_loop_or_end(program)[0], acc) |
class converter:
def convertParagraph(self,st):
st = st.replace("two dollars","$2")
st = st.replace("C M","CM")
st = st.replace("Triple A","AAA")
st = st.replace("United State of America","USA")
return st | class Converter:
def convert_paragraph(self, st):
st = st.replace('two dollars', '$2')
st = st.replace('C M', 'CM')
st = st.replace('Triple A', 'AAA')
st = st.replace('United State of America', 'USA')
return st |
class Solution:
def minSwap(self, A: List[int], B: List[int]) -> int:
n = len(A)
# swap[i]: minimum swap times to make A[:i], B[:i] increasing, with swap on A[i] and B[i]
# notSwap[i]: minimum swap times to make A[:i], B[:i] increasing, without swap on A[i] and B[i]
swap = [n] * n
notSwap = [n] * n
swap[0] = 1
notSwap[0] = 0
for i in range(1, n):
if A[i] > A[i - 1] and B[i] > B[i - 1]:
# two options: 1. dont swap at i - 1 and dont swap at i; 2. swap at i - 1 and swap at i
# the min is trivial, because notSwap is garanteed to be mininum.
# if we dont swap at i, we also dont swap at i - 1, so A[i] and A[i - 1] will stays the same
notSwap[i] = notSwap[i - 1]
# if we swap at i, then we need to swap at i - 1, so A[i] and A[i - 1] stays the same
swap[i] = swap[i - 1] + 1
if A[i - 1] < B[i] and B[i - 1] < A[i]:
# if we dont swap at i, then we will need to swap at i - 1
notSwap[i] = min(swap[i - 1], notSwap[i])
# if we swap at i, we dont swap at i - 1
swap[i] = min(notSwap[i - 1] + 1, swap[i])
return min(notSwap[-1], swap[-1]) | class Solution:
def min_swap(self, A: List[int], B: List[int]) -> int:
n = len(A)
swap = [n] * n
not_swap = [n] * n
swap[0] = 1
notSwap[0] = 0
for i in range(1, n):
if A[i] > A[i - 1] and B[i] > B[i - 1]:
notSwap[i] = notSwap[i - 1]
swap[i] = swap[i - 1] + 1
if A[i - 1] < B[i] and B[i - 1] < A[i]:
notSwap[i] = min(swap[i - 1], notSwap[i])
swap[i] = min(notSwap[i - 1] + 1, swap[i])
return min(notSwap[-1], swap[-1]) |
__version_info__ = __version__ = version = VERSION = '0.1.0'
def get_version():
return version
| __version_info__ = __version__ = version = version = '0.1.0'
def get_version():
return version |
# Challenge 39 Easy
# https://www.reddit.com/r/dailyprogrammer/comments/s6bas/4122012_challenge_39_easy/
# Takes parameter n
# Prints number on each line, except
# if n % 3, print Fizz, n % 5 Buzz, both, FizzBuzz
def nprint(n):
for i in range(1, n+1):
if i % 3 == 0 and i % 5 == 0:
print('FizzBuzz')
elif i % 3 == 0:
print('Fizz')
elif i % 5 == 0:
print('Buzz')
else:
print(i)
| def nprint(n):
for i in range(1, n + 1):
if i % 3 == 0 and i % 5 == 0:
print('FizzBuzz')
elif i % 3 == 0:
print('Fizz')
elif i % 5 == 0:
print('Buzz')
else:
print(i) |
class PlayViewTickFeature:
def playv_tick(game):
if game.tile_at_player == None:
# skip graphics game.tick
return
if type(game.tile_at_player) == tuple:
if game.tile_at_player[1] == 'a':
# The player has encountered a cliff
game.tile_at_player = game.tile_at_player[0]
game.focus_camera(game.player)
# Move camera
game.focus_camera(game.player)
game.zindex_buf = [[-100 for _ in range(game.maph)] for _ in range(game.mapw)]
game.screen.fill((0,0,0)) # TODO only redraw everything if the game.camera has moved
game.drawMap()
game.char_notation_blit('@', game.camerax + game.player.x , game.player.z + game.cameraz)
game.last_player_pos = game.tile_at_player.x, game.tile_at_player.y, game.tile_at_player.z
| class Playviewtickfeature:
def playv_tick(game):
if game.tile_at_player == None:
return
if type(game.tile_at_player) == tuple:
if game.tile_at_player[1] == 'a':
game.tile_at_player = game.tile_at_player[0]
game.focus_camera(game.player)
game.focus_camera(game.player)
game.zindex_buf = [[-100 for _ in range(game.maph)] for _ in range(game.mapw)]
game.screen.fill((0, 0, 0))
game.drawMap()
game.char_notation_blit('@', game.camerax + game.player.x, game.player.z + game.cameraz)
game.last_player_pos = (game.tile_at_player.x, game.tile_at_player.y, game.tile_at_player.z) |
# coding: utf-8
class Config(object):
def __init__(self):
pass
def initialize(self):
pass
def exit(self):
pass
| class Config(object):
def __init__(self):
pass
def initialize(self):
pass
def exit(self):
pass |
config = {
# +
# This is where you specify your dataset:
# whether it's CVS or MongoDB, the connect parameters, etc.
#
# To experiment with this, replace the CSV file with any dataset that you
# wish to analyze. Or point this to a MongoDB collection.
#
# This particular dataset contains records indicating success or failure of an Air Force
# Reserve recruitment effort on a per-recruit basis.
#
'data': {
'type': 'CSV', # type may also be set to MongoDB
'collection': 'FY11Leads.csv', # for CSV, put CSV file here;
# for MongoDB, put collection name here
'dbname': None, # MongoDB only: put the database name here
'query': {}, # MongoDB only: Provide MongoDB query. Leave alone
# if you want the entire collection.
'host': 'localhost', # MongoDB only
'port': 27017, # MongoDB only
'username': None, # MongoDB only
'password': None, # MongoDB only
'noid': True, # MongoDB only: Set to False if we want the _id field
},
# This object describes the features and labels of the collection above.
#
'collection': {
# This is the human-readable (success, failure) message vector.
#
'label_outputs': ['Recruitment Failure', 'Recruitment Success'],
# Specify the categorical features from the dataset that
# we hypothesize may affect successful recruitment.
#
# We wish to see if successful recruitment is predictable based on gender, race, or state;
# you should feel free to change these features in order to experiment
# with other hypotheses, or just remove ones you hypothesize are not
# relevant, etc. This kind of experimentation can be very enlightening.
#
# To experiment with your own dataset, change this so it contains whatever features you
# think might influence the label in your own dataset.
#
# However, NOTE WELL that some (many!) datasets contain "linear duplicates"
# where a (feature) column is semantically related to the label column.
# If that's the case, then do NOT include the semantically overlapping
# feature column here. You'll get 100% success in your model, but
# the result will be meaningless.
#
'cat_features': ['GENDER', 'RACE', 'STATE'],
# If your dataset contains continuous variables (like age, for example),
# add them in here.
#
# For the Air Force dataset, there aren't any continuous variables. However,
# for demonstration purposes, I'll specify that the zip code is actually a
# numeric value. The model should learn to ignore the variable (unless, for
# some unforeseen reason, the magnitude of a zip code affects recruitment
# success. Color me skeptical.)
#
'cont_features': ['ZIP'],
# The CURSTATUS_CD field contains values indicating the outcome of an Air Force
# recruitment effort.
#
# To experiment with this, replace this with the label from your own dataset.
#
'label_field': 'CURSTATUS_CD',
# Declare which values of the CURSTATUS_CD field are considered positive outcomes
# (that is, successful recruitment)
#
# ACE = accession gain, ACG = accession gain, as per prior information request
#
# To experiment with this, change this so it contains the positive values from
# the label_field in your dataset.
#
'true_values': ['ACE', 'ACG'],
},
# This object describes aspects of the model that are likely to be changed
#
'model': {
'num_epochs': 15,
'batch_size': 4,
'learning_rate': 0.001
}
}
| config = {'data': {'type': 'CSV', 'collection': 'FY11Leads.csv', 'dbname': None, 'query': {}, 'host': 'localhost', 'port': 27017, 'username': None, 'password': None, 'noid': True}, 'collection': {'label_outputs': ['Recruitment Failure', 'Recruitment Success'], 'cat_features': ['GENDER', 'RACE', 'STATE'], 'cont_features': ['ZIP'], 'label_field': 'CURSTATUS_CD', 'true_values': ['ACE', 'ACG']}, 'model': {'num_epochs': 15, 'batch_size': 4, 'learning_rate': 0.001}} |
__author__ = 'Arseniy'
class Project:
def __init__(self, name="", description=""):
self.name = name
self.description = description
def __repr__(self):
return "%s; %s" % (self.name, self.description)
def __eq__(self, other):
return self.name == other.name
def name(self):
return self.name
| __author__ = 'Arseniy'
class Project:
def __init__(self, name='', description=''):
self.name = name
self.description = description
def __repr__(self):
return '%s; %s' % (self.name, self.description)
def __eq__(self, other):
return self.name == other.name
def name(self):
return self.name |
class credentials:
'''
Class that generates new instances of credentials
'''
credentials_list = []
def __init__(self, user_name, password):
self.user_name = user_name
self.password = password
'''
__init__method that helps define properties for our objects.
Args:
user_name: user name
passord : password of the user
'''
def save_credentials(self):
'''
save_credentials method saves the user object into the database/user_list
'''
credentials.user_list.append(self) | class Credentials:
"""
Class that generates new instances of credentials
"""
credentials_list = []
def __init__(self, user_name, password):
self.user_name = user_name
self.password = password
'\n __init__method that helps define properties for our objects.\n Args:\n user_name: user name\n passord : password of the user\n '
def save_credentials(self):
"""
save_credentials method saves the user object into the database/user_list
"""
credentials.user_list.append(self) |
# Python implementation of puzzle 5
# Probably should add string ops to Lavender STL
def main(str):
seq = list(map(lambda x: int(x), str.split()))
count = 0
pos = 0
while pos >= 0 and pos < len(seq):
tmp = pos
pos += seq[pos]
seq[tmp] += 1
count += 1
return count
def main2(str):
seq = list(map(lambda x: int(x), str.split()))
count = 0
pos = 0
while pos >= 0 and pos < len(seq):
tmp = pos
pos += seq[pos]
if seq[tmp] < 3:
seq[tmp] += 1
else:
seq[tmp] -= 1
count += 1
return count
| def main(str):
seq = list(map(lambda x: int(x), str.split()))
count = 0
pos = 0
while pos >= 0 and pos < len(seq):
tmp = pos
pos += seq[pos]
seq[tmp] += 1
count += 1
return count
def main2(str):
seq = list(map(lambda x: int(x), str.split()))
count = 0
pos = 0
while pos >= 0 and pos < len(seq):
tmp = pos
pos += seq[pos]
if seq[tmp] < 3:
seq[tmp] += 1
else:
seq[tmp] -= 1
count += 1
return count |
text = type(type)
print(text)
| text = type(type)
print(text) |
#C1 = int(input())
#N1 = int(input())
#V1 = float(input())
#C2 = int(input())
#N2 = int(input())
#V2 = float(input())
#soma1 = N1 * V1
#soma2 = N2 * V2
#resultado = soma1 + soma2
#print('VALOR A PAGAR: R$ %.2f' % resultado)
linha = input().split()
C1 = int(linha[0])
N1 = int(linha[1])
V1 = float(linha[2])
linha2 = input().split()
C2 = int(linha2[0])
N2 = int(linha2[1])
V2 = float(linha2[2])
resultado = N1 * V1 + N2 * V2
print('VALOR A PAGAR: R$ %.2f' % resultado)
| linha = input().split()
c1 = int(linha[0])
n1 = int(linha[1])
v1 = float(linha[2])
linha2 = input().split()
c2 = int(linha2[0])
n2 = int(linha2[1])
v2 = float(linha2[2])
resultado = N1 * V1 + N2 * V2
print('VALOR A PAGAR: R$ %.2f' % resultado) |
class AccessingNonExistingUserError(Exception):
def __init__(self, uid):
self.message = (f"User with ID {uid} can not be accessed as this user",
" does not exist or is not registered")
super().__init__(self.message)
| class Accessingnonexistingusererror(Exception):
def __init__(self, uid):
self.message = (f'User with ID {uid} can not be accessed as this user', ' does not exist or is not registered')
super().__init__(self.message) |
# Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# File generated from /opt/config
#
GLOBAL_INJECTED_APPMGR_IP_ADDR = "127.0.0.1"
GLOBAL_INJECTED_APPMGR_USER= "test"
GLOBAL_INJECTED_APPMGR_PASSWORD= "test"
GLOBAL_INJECTED_E2MGR_IP_ADDR = "127.0.0.1"
GLOBAL_INJECTED_E2MGR_USER= "test"
GLOBAL_INJECTED_E2MGR_PASSWORD= "test"
GLOBAL_INJECTED_PROPERTIES = {
"GLOBAL_INJECTED_APPMGR_IP_ADDR" : "127.0.0.1",
"GLOBAL_INJECTED_APPMGR_USER" : "test",
"GLOBAL_INJECTED_APPMGR_PASSWORD" : "test",
"GLOBAL_INJECTED_E2MGR_IP_ADDR" : "127.0.0.1",
"GLOBAL_INJECTED_E2MGR_USER" : "test",
"GLOBAL_INJECTED_E2MGR_PASSWORD" : "test",
}
| global_injected_appmgr_ip_addr = '127.0.0.1'
global_injected_appmgr_user = 'test'
global_injected_appmgr_password = 'test'
global_injected_e2_mgr_ip_addr = '127.0.0.1'
global_injected_e2_mgr_user = 'test'
global_injected_e2_mgr_password = 'test'
global_injected_properties = {'GLOBAL_INJECTED_APPMGR_IP_ADDR': '127.0.0.1', 'GLOBAL_INJECTED_APPMGR_USER': 'test', 'GLOBAL_INJECTED_APPMGR_PASSWORD': 'test', 'GLOBAL_INJECTED_E2MGR_IP_ADDR': '127.0.0.1', 'GLOBAL_INJECTED_E2MGR_USER': 'test', 'GLOBAL_INJECTED_E2MGR_PASSWORD': 'test'} |
expected_output = {
1: {
"groupname": "2c",
"sec_model": "v1",
"contextname": "none",
"storage_type": "volatile",
"readview": "none",
"writeview": "none",
"notifyview": "*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F",
"row_status": {"status": "active"},
},
2: {
"groupname": "2c",
"sec_model": "v2c",
"contextname": "none",
"storage_type": "volatile",
"readview": "none",
"writeview": "none",
"notifyview": "*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F",
"row_status": {"status": "active"},
},
3: {
"groupname": "ag-ro",
"sec_model": "v1",
"contextname": "none",
"storage_type": "volatile",
"readview": "v1default",
"writeview": "none",
"notifyview": "*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F",
"row_status": {"status": "active"},
},
4: {
"groupname": "ag-ro",
"sec_model": "v3 auth",
"contextname": "none",
"storage_type": "nonvolatile",
"readview": "v1default",
"writeview": "none",
"notifyview": "none",
"row_status": {"status": "active"},
},
5: {
"groupname": "ag-ro",
"sec_model": "v3 priv",
"contextname": "none",
"storage_type": "nonvolatile",
"readview": "v1default",
"writeview": "none",
"notifyview": "none",
"row_status": {"status": "active"},
},
6: {
"groupname": "ag-rw",
"sec_model": "v2c",
"contextname": "none",
"storage_type": "volatile",
"readview": "v1default",
"writeview": "v1default",
"notifyview": "none",
"row_status": {"status": "active", "access_list": "snmp-servers"},
},
7: {
"groupname": "IMI",
"sec_model": "v2c",
"contextname": "none",
"storage_type": "permanent",
"readview": "*ilmi",
"writeview": "*ilmi",
"notifyview": "none",
"row_status": {"status": "active"},
},
8: {
"groupname": "AlfaV",
"sec_model": "v2c",
"contextname": "none",
"storage_type": "permanent",
"readview": "v1default",
"writeview": "none",
"notifyview": "none",
"row_status": {"status": "active", "access_list": "90"},
},
9: {
"groupname": "ag-rw",
"sec_model": "v1",
"readview": "v1default",
"writeview": "v1default",
"notifyview": "none",
"row_status": {"status": "active", "access_list": "snmp-servers"},
},
10: {
"groupname": "2c",
"sec_model": "v2c",
"readview": "none",
"writeview": "none",
"notifyview": "*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F",
"row_status": {"status": "active"},
},
}
| expected_output = {1: {'groupname': '2c', 'sec_model': 'v1', 'contextname': 'none', 'storage_type': 'volatile', 'readview': 'none', 'writeview': 'none', 'notifyview': '*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F', 'row_status': {'status': 'active'}}, 2: {'groupname': '2c', 'sec_model': 'v2c', 'contextname': 'none', 'storage_type': 'volatile', 'readview': 'none', 'writeview': 'none', 'notifyview': '*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F', 'row_status': {'status': 'active'}}, 3: {'groupname': 'ag-ro', 'sec_model': 'v1', 'contextname': 'none', 'storage_type': 'volatile', 'readview': 'v1default', 'writeview': 'none', 'notifyview': '*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F', 'row_status': {'status': 'active'}}, 4: {'groupname': 'ag-ro', 'sec_model': 'v3 auth', 'contextname': 'none', 'storage_type': 'nonvolatile', 'readview': 'v1default', 'writeview': 'none', 'notifyview': 'none', 'row_status': {'status': 'active'}}, 5: {'groupname': 'ag-ro', 'sec_model': 'v3 priv', 'contextname': 'none', 'storage_type': 'nonvolatile', 'readview': 'v1default', 'writeview': 'none', 'notifyview': 'none', 'row_status': {'status': 'active'}}, 6: {'groupname': 'ag-rw', 'sec_model': 'v2c', 'contextname': 'none', 'storage_type': 'volatile', 'readview': 'v1default', 'writeview': 'v1default', 'notifyview': 'none', 'row_status': {'status': 'active', 'access_list': 'snmp-servers'}}, 7: {'groupname': 'IMI', 'sec_model': 'v2c', 'contextname': 'none', 'storage_type': 'permanent', 'readview': '*ilmi', 'writeview': '*ilmi', 'notifyview': 'none', 'row_status': {'status': 'active'}}, 8: {'groupname': 'AlfaV', 'sec_model': 'v2c', 'contextname': 'none', 'storage_type': 'permanent', 'readview': 'v1default', 'writeview': 'none', 'notifyview': 'none', 'row_status': {'status': 'active', 'access_list': '90'}}, 9: {'groupname': 'ag-rw', 'sec_model': 'v1', 'readview': 'v1default', 'writeview': 'v1default', 'notifyview': 'none', 'row_status': {'status': 'active', 'access_list': 'snmp-servers'}}, 10: {'groupname': '2c', 'sec_model': 'v2c', 'readview': 'none', 'writeview': 'none', 'notifyview': '*tv.FFFF58bf.eaFF58bf.eaFFFFFF.F', 'row_status': {'status': 'active'}}} |
def day06a(input_path):
responses = [line.strip() for line in open(input_path)]
group_response = set()
total = 0
for response in responses:
if not response:
total += len(group_response)
group_response = set()
else:
group_response |= set(response)
total += len(group_response)
return total
def test06a():
assert 11 == day06a('test_input.txt')
def day06b(input_path):
responses = [line.strip() for line in open(input_path)]
group_response = None
total = 0
for response in responses:
if not response:
total += len(group_response)
group_response = None
elif group_response is None:
group_response = set(response)
else:
group_response &= set(response)
total += len(group_response)
return total
def test06b():
assert 6 == day06b('test_input.txt')
if __name__ == '__main__':
test06a()
print('Day 06a:', day06a('day06_input.txt'))
test06b()
print('Day 06b:', day06b('day06_input.txt'))
| def day06a(input_path):
responses = [line.strip() for line in open(input_path)]
group_response = set()
total = 0
for response in responses:
if not response:
total += len(group_response)
group_response = set()
else:
group_response |= set(response)
total += len(group_response)
return total
def test06a():
assert 11 == day06a('test_input.txt')
def day06b(input_path):
responses = [line.strip() for line in open(input_path)]
group_response = None
total = 0
for response in responses:
if not response:
total += len(group_response)
group_response = None
elif group_response is None:
group_response = set(response)
else:
group_response &= set(response)
total += len(group_response)
return total
def test06b():
assert 6 == day06b('test_input.txt')
if __name__ == '__main__':
test06a()
print('Day 06a:', day06a('day06_input.txt'))
test06b()
print('Day 06b:', day06b('day06_input.txt')) |
def exponentiation(a, n):
'''log(n) time exponentiation'''
if n == 0:
return 1
elif n % 2: # odd
return a*exponentiation(a, n-1)
else: # even
return exponentiation(a*a, n/2)
def test_one(a, n, res_exp):
an = exponentiation(a, n)
print("exponentiation(%d, %d) = %d" % (a, n, an))
assert an == res_exp
def test():
for i in range(10):
test_one(3, i, pow(3, i))
if __name__ == '__main__':
test()
| def exponentiation(a, n):
"""log(n) time exponentiation"""
if n == 0:
return 1
elif n % 2:
return a * exponentiation(a, n - 1)
else:
return exponentiation(a * a, n / 2)
def test_one(a, n, res_exp):
an = exponentiation(a, n)
print('exponentiation(%d, %d) = %d' % (a, n, an))
assert an == res_exp
def test():
for i in range(10):
test_one(3, i, pow(3, i))
if __name__ == '__main__':
test() |
USER_AGENTS = [
(
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko)'
' Chrome/39.0.2171.95 Safari/537.36'
),
(
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)'
' Chrome/42.0.2311.135 Safari/537.36 Edge/12.246'
)
] | user_agents = ['Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246'] |
def main():
print("Hello World!")
test()
pozdrav()
def test():
print("This is a test")
def pozdrav():
print("Hello")
if __name__ == '__main__':
main()
| def main():
print('Hello World!')
test()
pozdrav()
def test():
print('This is a test')
def pozdrav():
print('Hello')
if __name__ == '__main__':
main() |
class Empty:
def __init__(self, *args, **kwargs):
pass
def __repr__(self):
return "Empty"
def __str__(self):
return "Empty" | class Empty:
def __init__(self, *args, **kwargs):
pass
def __repr__(self):
return 'Empty'
def __str__(self):
return 'Empty' |
# -*- coding: utf-8 -*-
class drone:
def __init__(self, location, maximum_load):
self.location = location
self.maximum_load = maximum_load
productsOnBoard = list()
self.state = 0
self.alarm = 0
self.isBusy = False
def Load(self, warehouse, product):
if warehouse.take(product):
productsOnBoard.append(product)
def Unload(self,product):
if product in self.productsOnBoard:
self.productsOnBoard.remove(product)
return True
return False
def deliver(self,productLocation, ):
pass
def droneCurrentWeight(self):
return sum([i.weight for i in self.productsOnBoard])
def setAlarm(self, time):
self.isBusy = True
self.alarm = time
def checkBusy(self):
return self.isBusy
def step(self):
if self.alarm > 0:
self.alarm -= 1
if self.alarm == 0:
self.isBusy = False
| class Drone:
def __init__(self, location, maximum_load):
self.location = location
self.maximum_load = maximum_load
products_on_board = list()
self.state = 0
self.alarm = 0
self.isBusy = False
def load(self, warehouse, product):
if warehouse.take(product):
productsOnBoard.append(product)
def unload(self, product):
if product in self.productsOnBoard:
self.productsOnBoard.remove(product)
return True
return False
def deliver(self, productLocation):
pass
def drone_current_weight(self):
return sum([i.weight for i in self.productsOnBoard])
def set_alarm(self, time):
self.isBusy = True
self.alarm = time
def check_busy(self):
return self.isBusy
def step(self):
if self.alarm > 0:
self.alarm -= 1
if self.alarm == 0:
self.isBusy = False |
# date: 09/07/2020
# Description:
# Given a string, we want to remove 2 adjacent characters that are the same,
# and repeat the process with the new string until we can no longer perform the operation.
def remove_adjacent_dup(s):
finished = False
index = 0
while not finished:
if s[index+1]==s[index]:
s = s.replace(s[index+1],'')
index = 0
else:
index +=1
if index+1 > len(s)-1:
finished = True
return s
print(remove_adjacent_dup("cabba"))
# Start with cabba
# After remove bb: caa
# After remove aa: c
# print c
| def remove_adjacent_dup(s):
finished = False
index = 0
while not finished:
if s[index + 1] == s[index]:
s = s.replace(s[index + 1], '')
index = 0
else:
index += 1
if index + 1 > len(s) - 1:
finished = True
return s
print(remove_adjacent_dup('cabba')) |
wtf = list(range(1000))
for i in range(len(wtf)):
wtf[i] = 2
print(wtf) | wtf = list(range(1000))
for i in range(len(wtf)):
wtf[i] = 2
print(wtf) |
#!/usr/bin/env python3
########################################################################
# #
# Program purpose: Program to check the priority of the four #
# operators (+, -, *, /) #
# Program Author : Happi Yvan <ivensteinpoker@gmail.com> #
# Creation Date : September 6, 2019 #
# #
########################################################################
__operators__ = "+-/*"
__parenthesis__ = "()"
__priority__ = {
'+': 0,
'-': 0,
'*': 1,
'/': 1
}
def test_higher_priority(operatorA, operatorB):
return __priority__[operatorA] >= __priority__[operatorB]
if __name__ == "__main__":
print(test_higher_priority('*', '-'))
print(test_higher_priority('+', '-'))
print(test_higher_priority('+', '*'))
print(test_higher_priority('+', '/'))
print(test_higher_priority('*', '/'))
| __operators__ = '+-/*'
__parenthesis__ = '()'
__priority__ = {'+': 0, '-': 0, '*': 1, '/': 1}
def test_higher_priority(operatorA, operatorB):
return __priority__[operatorA] >= __priority__[operatorB]
if __name__ == '__main__':
print(test_higher_priority('*', '-'))
print(test_higher_priority('+', '-'))
print(test_higher_priority('+', '*'))
print(test_higher_priority('+', '/'))
print(test_higher_priority('*', '/')) |
par = []
impar = []
cont = 0
im = 0
p = 0
while cont < 15:
num = int(input())
if num % 2 == 0:
par.append(num)
p += 1
else:
impar.append(num)
im += 1
if p > 4:
for i in range(5):
print(f'par[{i}] = {par[i]}')
par = []
p = 0
if im > 4:
for y in range(5):
print(f'impar[{y}] = {impar[y]}')
impar = []
im = 0
cont += 1
if im > 0:
for j in range(im):
print('impar[{}] = {}'.format(j, impar[j]))
if p > 0:
for h in range(p):
print('par[{}] = {}'.format(h, par[h]))
| par = []
impar = []
cont = 0
im = 0
p = 0
while cont < 15:
num = int(input())
if num % 2 == 0:
par.append(num)
p += 1
else:
impar.append(num)
im += 1
if p > 4:
for i in range(5):
print(f'par[{i}] = {par[i]}')
par = []
p = 0
if im > 4:
for y in range(5):
print(f'impar[{y}] = {impar[y]}')
impar = []
im = 0
cont += 1
if im > 0:
for j in range(im):
print('impar[{}] = {}'.format(j, impar[j]))
if p > 0:
for h in range(p):
print('par[{}] = {}'.format(h, par[h])) |
#==================================================================================================
# python_scripts/set_state.py
# modified from - https://community.home-assistant.io/t/how-to-manually-set-state-value-of-sensor/43975/37
#==================================================================================================
#--------------------------------------------------------------------------------------------------
# Set the state or other attributes for the entity specified in the Automation Action
#--------------------------------------------------------------------------------------------------
inputEntity = data.get('entity_id')
if inputEntity is None:
logger.warning("===== entity_id is required if you want to set something.")
else:
inputStateObject = hass.states.get(inputEntity)
if inputStateObject is None and not data.get('allow_create'):
logger.warning("===== unknown entity_id: %s", inputEntity)
else:
if not inputStateObject is None:
inputState = inputStateObject.state
inputAttributesObject = inputStateObject.attributes.copy()
else:
inputAttributesObject = {}
for item in data:
newAttribute = data.get(item)
logger.debug("===== item = {0}; value = {1}".format(item,newAttribute))
if item == 'entity_id':
continue # already handled
elif item == 'allow_create':
continue # already handled
elif item == 'state':
inputState = newAttribute
else:
inputAttributesObject[item] = newAttribute
hass.states.set(inputEntity, inputState, inputAttributesObject)
| input_entity = data.get('entity_id')
if inputEntity is None:
logger.warning('===== entity_id is required if you want to set something.')
else:
input_state_object = hass.states.get(inputEntity)
if inputStateObject is None and (not data.get('allow_create')):
logger.warning('===== unknown entity_id: %s', inputEntity)
else:
if not inputStateObject is None:
input_state = inputStateObject.state
input_attributes_object = inputStateObject.attributes.copy()
else:
input_attributes_object = {}
for item in data:
new_attribute = data.get(item)
logger.debug('===== item = {0}; value = {1}'.format(item, newAttribute))
if item == 'entity_id':
continue
elif item == 'allow_create':
continue
elif item == 'state':
input_state = newAttribute
else:
inputAttributesObject[item] = newAttribute
hass.states.set(inputEntity, inputState, inputAttributesObject) |
string1 = "Devops"
string2 = "Project"
joined_string = string1 +' '+ string2 ## Add space between two strings
print(joined_string)
| string1 = 'Devops'
string2 = 'Project'
joined_string = string1 + ' ' + string2
print(joined_string) |
num = 2 ** 1000
num = list(str(num))
total = 0
for i in num:
total += int(i)
print(total)
| num = 2 ** 1000
num = list(str(num))
total = 0
for i in num:
total += int(i)
print(total) |
#desafio 25: procurando uma string dentro de outra // verifica se o nome tem SILVA
nome = str(input('Digite seu nome completo: ')).strip().upper()
print('^'*30)
print(f'\33[34mSeu nome tem Silva? {"SILVA" in nome}\33[m')
print('^'*30)
| nome = str(input('Digite seu nome completo: ')).strip().upper()
print('^' * 30)
print(f"\x1b[34mSeu nome tem Silva? {'SILVA' in nome}\x1b[m")
print('^' * 30) |
# part one
lines = open('input.txt', 'r').readlines()
gammaRate = ""
for pos in range(len(lines[0].strip())):
oneCount = len([p for p in lines if p[pos] == "1"])
gammaRate += "1" if 2 * oneCount > len(lines) else "0"
print(int(gammaRate, 2) * int(gammaRate.replace("1", "#").replace("0", "1").replace("#", "0"), 2))
# part two
oxygen = [entry.strip() for entry in open('input.txt', 'r').readlines()]
co2 = [entry for entry in oxygen]
for pos in range(len(oxygen[0])):
if len(oxygen) != 1:
oneCount = len([p for p in oxygen if p[pos] == "1"])
keepNumber = "1" if 2 * oneCount >= len(oxygen) else "0"
oxygen = [entry for entry in oxygen if (entry[pos] == keepNumber)]
if len(co2) != 1:
zeroCount = len([p for p in co2 if p[pos] == "0"])
keepNumber = "0" if 2 * zeroCount <= len(co2) else "1"
co2 = [entry for entry in co2 if entry[pos] == keepNumber]
print(int(oxygen[0], 2) * int(co2[0], 2)) | lines = open('input.txt', 'r').readlines()
gamma_rate = ''
for pos in range(len(lines[0].strip())):
one_count = len([p for p in lines if p[pos] == '1'])
gamma_rate += '1' if 2 * oneCount > len(lines) else '0'
print(int(gammaRate, 2) * int(gammaRate.replace('1', '#').replace('0', '1').replace('#', '0'), 2))
oxygen = [entry.strip() for entry in open('input.txt', 'r').readlines()]
co2 = [entry for entry in oxygen]
for pos in range(len(oxygen[0])):
if len(oxygen) != 1:
one_count = len([p for p in oxygen if p[pos] == '1'])
keep_number = '1' if 2 * oneCount >= len(oxygen) else '0'
oxygen = [entry for entry in oxygen if entry[pos] == keepNumber]
if len(co2) != 1:
zero_count = len([p for p in co2 if p[pos] == '0'])
keep_number = '0' if 2 * zeroCount <= len(co2) else '1'
co2 = [entry for entry in co2 if entry[pos] == keepNumber]
print(int(oxygen[0], 2) * int(co2[0], 2)) |
def network():
model = tf.keras.Sequential()
model.add(kl.InputLayer(input_shape=(224, 224, 3)))
# First conv block
model.add(kl.Conv2D(filters=96, kernel_size=7, padding='same', strides=2))
model.add(tf.keras.layers.ReLU())
model.add(kl.MaxPooling2D(pool_size=(3, 3)))
# Second conv block
model.add(kl.Conv2D(filters=256, kernel_size=5, padding='same', strides=1))
model.add(tf.keras.layers.ReLU())
model.add(kl.MaxPooling2D(pool_size=(2, 2)))
# Third-Fourth-Fifth conv block
for i in range(3):
model.add(kl.Conv2D(filters=512, kernel_size=3, padding='same', strides=1))
model.add(tf.keras.layers.ReLU())
model.add(kl.MaxPooling2D(pool_size=(3, 3)))
# Flatten
model.add(kl.Flatten())
# First FC
model.add(kl.Dense(4048))
# Second Fc
model.add(kl.Dense(4048))
# Third FC
model.add(kl.Dense(4))
# Softmax at the end
model.add(kl.Softmax())
return model
| def network():
model = tf.keras.Sequential()
model.add(kl.InputLayer(input_shape=(224, 224, 3)))
model.add(kl.Conv2D(filters=96, kernel_size=7, padding='same', strides=2))
model.add(tf.keras.layers.ReLU())
model.add(kl.MaxPooling2D(pool_size=(3, 3)))
model.add(kl.Conv2D(filters=256, kernel_size=5, padding='same', strides=1))
model.add(tf.keras.layers.ReLU())
model.add(kl.MaxPooling2D(pool_size=(2, 2)))
for i in range(3):
model.add(kl.Conv2D(filters=512, kernel_size=3, padding='same', strides=1))
model.add(tf.keras.layers.ReLU())
model.add(kl.MaxPooling2D(pool_size=(3, 3)))
model.add(kl.Flatten())
model.add(kl.Dense(4048))
model.add(kl.Dense(4048))
model.add(kl.Dense(4))
model.add(kl.Softmax())
return model |
src = []
component = aos_component('osal', src)
component.add_global_includes('mico/include', 'include')
component.add_comp_deps("middleware/alink/cloud")
if aos_global_config.arch == 'ARM968E-S':
component.add_cflags('-marm')
@pre_config('osal')
def osal_pre(comp):
osal = aos_global_config.get('osal', 'rhino')
if osal == 'freertos':
comp.add_global_macros('OSAL_FREERTOS')
comp.add_sources('aos/freertos.c')
elif osal == 'posix':
comp.add_global_macros('OSAL_POSIX')
comp.add_sources('aos/posix.c')
elif osal == 'winmsvs':
comp.add_global_macros('OSAL_MSVS')
comp.add_sources('aos/winnt.c')
else:
comp.add_global_macros('OSAL_RHINO')
comp.add_comp_deps('kernel/rhino')
if aos_global_config.mcu_family == 'esp32' or aos_global_config.mcu_family == 'esp8266':
comp.add_comp_deps('osal/espos')
if aos_global_config.board == 'linuxhost' or aos_global_config.board == 'mk3060' \
or aos_global_config.board == 'mk3239' or aos_global_config.board == 'mk3166' or aos_global_config.board == 'mk3165':
comp.add_sources('mico/mico_rhino.c')
comp.add_sources('aos/rhino.c')
osal_pre(component)
| src = []
component = aos_component('osal', src)
component.add_global_includes('mico/include', 'include')
component.add_comp_deps('middleware/alink/cloud')
if aos_global_config.arch == 'ARM968E-S':
component.add_cflags('-marm')
@pre_config('osal')
def osal_pre(comp):
osal = aos_global_config.get('osal', 'rhino')
if osal == 'freertos':
comp.add_global_macros('OSAL_FREERTOS')
comp.add_sources('aos/freertos.c')
elif osal == 'posix':
comp.add_global_macros('OSAL_POSIX')
comp.add_sources('aos/posix.c')
elif osal == 'winmsvs':
comp.add_global_macros('OSAL_MSVS')
comp.add_sources('aos/winnt.c')
else:
comp.add_global_macros('OSAL_RHINO')
comp.add_comp_deps('kernel/rhino')
if aos_global_config.mcu_family == 'esp32' or aos_global_config.mcu_family == 'esp8266':
comp.add_comp_deps('osal/espos')
if aos_global_config.board == 'linuxhost' or aos_global_config.board == 'mk3060' or aos_global_config.board == 'mk3239' or (aos_global_config.board == 'mk3166') or (aos_global_config.board == 'mk3165'):
comp.add_sources('mico/mico_rhino.c')
comp.add_sources('aos/rhino.c')
osal_pre(component) |
#
# PySNMP MIB module TRAPEZE-NETWORKS-BASIC-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TRAPEZE-NETWORKS-BASIC-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:27:11 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ConstraintsUnion")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
iso, Counter64, NotificationType, Counter32, IpAddress, Integer32, Bits, Unsigned32, ModuleIdentity, Gauge32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "Counter64", "NotificationType", "Counter32", "IpAddress", "Integer32", "Bits", "Unsigned32", "ModuleIdentity", "Gauge32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "ObjectIdentity")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
TrpzLicenseFeature, = mibBuilder.importSymbols("TRAPEZE-NETWORKS-LICENSE-FEATURE-TC-MIB", "TrpzLicenseFeature")
trpzMibs, = mibBuilder.importSymbols("TRAPEZE-NETWORKS-ROOT-MIB", "trpzMibs")
trpzBasic = ModuleIdentity((1, 3, 6, 1, 4, 1, 14525, 4, 2))
trpzBasic.setRevisions(('2009-11-16 00:10', '2006-07-10 00:08', '2006-04-14 00:07', '2005-01-01 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: trpzBasic.setRevisionsDescriptions(('v3.0.0: Moved TrpzLicenseFeature into its own module for easier maintenance. This will be published in 7.1 release.', 'v2.0.6: Fixed MAX-ACCESS of trpzMobilityMemberEntryAddr, an index that was also the only column', 'v2.0.5: Revised for 4.1 release', 'v1: initial version, as for 4.0 and older releases',))
if mibBuilder.loadTexts: trpzBasic.setLastUpdated('200911160010Z')
if mibBuilder.loadTexts: trpzBasic.setOrganization('Trapeze Networks')
if mibBuilder.loadTexts: trpzBasic.setContactInfo('Trapeze Networks Technical Support www.trapezenetworks.com US: 866.TRPZ.TAC International: 925.474.2400 support@trapezenetworks.com')
if mibBuilder.loadTexts: trpzBasic.setDescription("Basic objects for Trapeze Networks wireless switches. Copyright 2004-2009 Trapeze Networks, Inc. All rights reserved. This Trapeze Networks SNMP Management Information Base Specification (Specification) embodies Trapeze Networks' confidential and proprietary intellectual property. Trapeze Networks retains all title and ownership in the Specification, including any revisions. This Specification is supplied 'AS IS' and Trapeze Networks makes no warranty, either express or implied, as to the use, operation, condition, or performance of the Specification.")
trpzBasicSystemInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1))
trpzSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzSerialNumber.setStatus('current')
if mibBuilder.loadTexts: trpzSerialNumber.setDescription('The serial number of the switch.')
trpzSwMajorVersionNumber = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 99))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzSwMajorVersionNumber.setStatus('current')
if mibBuilder.loadTexts: trpzSwMajorVersionNumber.setDescription('The major release version of the running software.')
trpzSwMinorVersionNumber = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 99))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzSwMinorVersionNumber.setStatus('current')
if mibBuilder.loadTexts: trpzSwMinorVersionNumber.setDescription('The minor release version of the running software.')
trpzVersionString = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzVersionString.setStatus('current')
if mibBuilder.loadTexts: trpzVersionString.setDescription('The version string of the running software, including the major, minor, patch and build numbers, such as 3.0.0.185')
trpzMobilityDomainInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2))
trpzMobilityDomainName = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzMobilityDomainName.setStatus('current')
if mibBuilder.loadTexts: trpzMobilityDomainName.setDescription('The mobility domain containing the switch, or a zero-length string when the mobility domain is unknown.')
trpzMobilitySeedIp = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzMobilitySeedIp.setStatus('current')
if mibBuilder.loadTexts: trpzMobilitySeedIp.setDescription("The IPv4 address of the seed switch for this switch's mobility domain, or the IPv4 address 0.0.0.0 if unknown.")
trpzMobilityMemberTableSize = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzMobilityMemberTableSize.setStatus('current')
if mibBuilder.loadTexts: trpzMobilityMemberTableSize.setDescription('The number of entries in the mobility member table, trpzMobilityMemberTable.')
trpzMobilityMemberTable = MibTable((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 4), )
if mibBuilder.loadTexts: trpzMobilityMemberTable.setStatus('current')
if mibBuilder.loadTexts: trpzMobilityMemberTable.setDescription('Table of members of the mobility domain, indexed by the member IPv4 address.')
trpzMobilityMemberEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 4, 1), ).setIndexNames((0, "TRAPEZE-NETWORKS-BASIC-MIB", "trpzMobilityMemberEntryAddr"))
if mibBuilder.loadTexts: trpzMobilityMemberEntry.setStatus('current')
if mibBuilder.loadTexts: trpzMobilityMemberEntry.setDescription('An entry in the trpzMobilityMemberTable table.')
trpzMobilityMemberEntryAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 4, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzMobilityMemberEntryAddr.setStatus('current')
if mibBuilder.loadTexts: trpzMobilityMemberEntryAddr.setDescription('IPv4 address of a member of the mobility domain.')
trpzLicenseInfoGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3))
trpzLicenseInfoTableSize = MibScalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzLicenseInfoTableSize.setStatus('current')
if mibBuilder.loadTexts: trpzLicenseInfoTableSize.setDescription('The number of entries in the license table, trpzLicenseInfoTable.')
trpzLicenseInfoTable = MibTable((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2), )
if mibBuilder.loadTexts: trpzLicenseInfoTable.setStatus('current')
if mibBuilder.loadTexts: trpzLicenseInfoTable.setDescription('Table of installed licenses on the switch. The licences provide additional capabilities over the default capabilities of the switch.')
trpzLicenseInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1), ).setIndexNames((0, "TRAPEZE-NETWORKS-BASIC-MIB", "trpzLicenseInfoEntryFeature"))
if mibBuilder.loadTexts: trpzLicenseInfoEntry.setStatus('current')
if mibBuilder.loadTexts: trpzLicenseInfoEntry.setDescription('A license table entry.')
trpzLicenseInfoEntryFeature = MibTableColumn((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1, 1), TrpzLicenseFeature())
if mibBuilder.loadTexts: trpzLicenseInfoEntryFeature.setStatus('current')
if mibBuilder.loadTexts: trpzLicenseInfoEntryFeature.setDescription('The feature being reported on')
trpzLicenseInfoEntryValue = MibTableColumn((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzLicenseInfoEntryValue.setStatus('current')
if mibBuilder.loadTexts: trpzLicenseInfoEntryValue.setDescription('The value of the feature enabled, for example a feature may have multiple levels of licensing, so the value will very with the license level.')
trpzLicenseInfoEntryDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: trpzLicenseInfoEntryDescr.setStatus('current')
if mibBuilder.loadTexts: trpzLicenseInfoEntryDescr.setDescription("A human interpretable description of this license, for example, '120 APs or DAPs.'")
mibBuilder.exportSymbols("TRAPEZE-NETWORKS-BASIC-MIB", trpzBasicSystemInfo=trpzBasicSystemInfo, trpzSwMinorVersionNumber=trpzSwMinorVersionNumber, trpzBasic=trpzBasic, trpzMobilityMemberTableSize=trpzMobilityMemberTableSize, trpzMobilityDomainName=trpzMobilityDomainName, trpzLicenseInfoTable=trpzLicenseInfoTable, trpzLicenseInfoTableSize=trpzLicenseInfoTableSize, trpzVersionString=trpzVersionString, trpzMobilityMemberTable=trpzMobilityMemberTable, trpzLicenseInfoGroup=trpzLicenseInfoGroup, trpzLicenseInfoEntryDescr=trpzLicenseInfoEntryDescr, PYSNMP_MODULE_ID=trpzBasic, trpzMobilityMemberEntry=trpzMobilityMemberEntry, trpzSerialNumber=trpzSerialNumber, trpzSwMajorVersionNumber=trpzSwMajorVersionNumber, trpzMobilityMemberEntryAddr=trpzMobilityMemberEntryAddr, trpzLicenseInfoEntry=trpzLicenseInfoEntry, trpzLicenseInfoEntryValue=trpzLicenseInfoEntryValue, trpzMobilityDomainInfo=trpzMobilityDomainInfo, trpzLicenseInfoEntryFeature=trpzLicenseInfoEntryFeature, trpzMobilitySeedIp=trpzMobilitySeedIp)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, value_size_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ConstraintsUnion')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(iso, counter64, notification_type, counter32, ip_address, integer32, bits, unsigned32, module_identity, gauge32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'Counter64', 'NotificationType', 'Counter32', 'IpAddress', 'Integer32', 'Bits', 'Unsigned32', 'ModuleIdentity', 'Gauge32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'ObjectIdentity')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
(trpz_license_feature,) = mibBuilder.importSymbols('TRAPEZE-NETWORKS-LICENSE-FEATURE-TC-MIB', 'TrpzLicenseFeature')
(trpz_mibs,) = mibBuilder.importSymbols('TRAPEZE-NETWORKS-ROOT-MIB', 'trpzMibs')
trpz_basic = module_identity((1, 3, 6, 1, 4, 1, 14525, 4, 2))
trpzBasic.setRevisions(('2009-11-16 00:10', '2006-07-10 00:08', '2006-04-14 00:07', '2005-01-01 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
trpzBasic.setRevisionsDescriptions(('v3.0.0: Moved TrpzLicenseFeature into its own module for easier maintenance. This will be published in 7.1 release.', 'v2.0.6: Fixed MAX-ACCESS of trpzMobilityMemberEntryAddr, an index that was also the only column', 'v2.0.5: Revised for 4.1 release', 'v1: initial version, as for 4.0 and older releases'))
if mibBuilder.loadTexts:
trpzBasic.setLastUpdated('200911160010Z')
if mibBuilder.loadTexts:
trpzBasic.setOrganization('Trapeze Networks')
if mibBuilder.loadTexts:
trpzBasic.setContactInfo('Trapeze Networks Technical Support www.trapezenetworks.com US: 866.TRPZ.TAC International: 925.474.2400 support@trapezenetworks.com')
if mibBuilder.loadTexts:
trpzBasic.setDescription("Basic objects for Trapeze Networks wireless switches. Copyright 2004-2009 Trapeze Networks, Inc. All rights reserved. This Trapeze Networks SNMP Management Information Base Specification (Specification) embodies Trapeze Networks' confidential and proprietary intellectual property. Trapeze Networks retains all title and ownership in the Specification, including any revisions. This Specification is supplied 'AS IS' and Trapeze Networks makes no warranty, either express or implied, as to the use, operation, condition, or performance of the Specification.")
trpz_basic_system_info = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1))
trpz_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
trpzSerialNumber.setDescription('The serial number of the switch.')
trpz_sw_major_version_number = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 99))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzSwMajorVersionNumber.setStatus('current')
if mibBuilder.loadTexts:
trpzSwMajorVersionNumber.setDescription('The major release version of the running software.')
trpz_sw_minor_version_number = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 99))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzSwMinorVersionNumber.setStatus('current')
if mibBuilder.loadTexts:
trpzSwMinorVersionNumber.setDescription('The minor release version of the running software.')
trpz_version_string = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzVersionString.setStatus('current')
if mibBuilder.loadTexts:
trpzVersionString.setDescription('The version string of the running software, including the major, minor, patch and build numbers, such as 3.0.0.185')
trpz_mobility_domain_info = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2))
trpz_mobility_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzMobilityDomainName.setStatus('current')
if mibBuilder.loadTexts:
trpzMobilityDomainName.setDescription('The mobility domain containing the switch, or a zero-length string when the mobility domain is unknown.')
trpz_mobility_seed_ip = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzMobilitySeedIp.setStatus('current')
if mibBuilder.loadTexts:
trpzMobilitySeedIp.setDescription("The IPv4 address of the seed switch for this switch's mobility domain, or the IPv4 address 0.0.0.0 if unknown.")
trpz_mobility_member_table_size = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzMobilityMemberTableSize.setStatus('current')
if mibBuilder.loadTexts:
trpzMobilityMemberTableSize.setDescription('The number of entries in the mobility member table, trpzMobilityMemberTable.')
trpz_mobility_member_table = mib_table((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 4))
if mibBuilder.loadTexts:
trpzMobilityMemberTable.setStatus('current')
if mibBuilder.loadTexts:
trpzMobilityMemberTable.setDescription('Table of members of the mobility domain, indexed by the member IPv4 address.')
trpz_mobility_member_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 4, 1)).setIndexNames((0, 'TRAPEZE-NETWORKS-BASIC-MIB', 'trpzMobilityMemberEntryAddr'))
if mibBuilder.loadTexts:
trpzMobilityMemberEntry.setStatus('current')
if mibBuilder.loadTexts:
trpzMobilityMemberEntry.setDescription('An entry in the trpzMobilityMemberTable table.')
trpz_mobility_member_entry_addr = mib_table_column((1, 3, 6, 1, 4, 1, 14525, 4, 2, 2, 4, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzMobilityMemberEntryAddr.setStatus('current')
if mibBuilder.loadTexts:
trpzMobilityMemberEntryAddr.setDescription('IPv4 address of a member of the mobility domain.')
trpz_license_info_group = mib_identifier((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3))
trpz_license_info_table_size = mib_scalar((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzLicenseInfoTableSize.setStatus('current')
if mibBuilder.loadTexts:
trpzLicenseInfoTableSize.setDescription('The number of entries in the license table, trpzLicenseInfoTable.')
trpz_license_info_table = mib_table((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2))
if mibBuilder.loadTexts:
trpzLicenseInfoTable.setStatus('current')
if mibBuilder.loadTexts:
trpzLicenseInfoTable.setDescription('Table of installed licenses on the switch. The licences provide additional capabilities over the default capabilities of the switch.')
trpz_license_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1)).setIndexNames((0, 'TRAPEZE-NETWORKS-BASIC-MIB', 'trpzLicenseInfoEntryFeature'))
if mibBuilder.loadTexts:
trpzLicenseInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
trpzLicenseInfoEntry.setDescription('A license table entry.')
trpz_license_info_entry_feature = mib_table_column((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1, 1), trpz_license_feature())
if mibBuilder.loadTexts:
trpzLicenseInfoEntryFeature.setStatus('current')
if mibBuilder.loadTexts:
trpzLicenseInfoEntryFeature.setDescription('The feature being reported on')
trpz_license_info_entry_value = mib_table_column((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzLicenseInfoEntryValue.setStatus('current')
if mibBuilder.loadTexts:
trpzLicenseInfoEntryValue.setDescription('The value of the feature enabled, for example a feature may have multiple levels of licensing, so the value will very with the license level.')
trpz_license_info_entry_descr = mib_table_column((1, 3, 6, 1, 4, 1, 14525, 4, 2, 3, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
trpzLicenseInfoEntryDescr.setStatus('current')
if mibBuilder.loadTexts:
trpzLicenseInfoEntryDescr.setDescription("A human interpretable description of this license, for example, '120 APs or DAPs.'")
mibBuilder.exportSymbols('TRAPEZE-NETWORKS-BASIC-MIB', trpzBasicSystemInfo=trpzBasicSystemInfo, trpzSwMinorVersionNumber=trpzSwMinorVersionNumber, trpzBasic=trpzBasic, trpzMobilityMemberTableSize=trpzMobilityMemberTableSize, trpzMobilityDomainName=trpzMobilityDomainName, trpzLicenseInfoTable=trpzLicenseInfoTable, trpzLicenseInfoTableSize=trpzLicenseInfoTableSize, trpzVersionString=trpzVersionString, trpzMobilityMemberTable=trpzMobilityMemberTable, trpzLicenseInfoGroup=trpzLicenseInfoGroup, trpzLicenseInfoEntryDescr=trpzLicenseInfoEntryDescr, PYSNMP_MODULE_ID=trpzBasic, trpzMobilityMemberEntry=trpzMobilityMemberEntry, trpzSerialNumber=trpzSerialNumber, trpzSwMajorVersionNumber=trpzSwMajorVersionNumber, trpzMobilityMemberEntryAddr=trpzMobilityMemberEntryAddr, trpzLicenseInfoEntry=trpzLicenseInfoEntry, trpzLicenseInfoEntryValue=trpzLicenseInfoEntryValue, trpzMobilityDomainInfo=trpzMobilityDomainInfo, trpzLicenseInfoEntryFeature=trpzLicenseInfoEntryFeature, trpzMobilitySeedIp=trpzMobilitySeedIp) |
# date: 01/07/2020
# Description:
# A Perfect Number is a positive integer
# that is equal to the sum of all its
# positive divisors except itself.
class Solution(object):
def checkPerfectNumber(self, num):
if num <= 0:
return False,[]
divisors = []
for i in range(1,num):
# perfect number is a positive integer
# that is equal to the sum of its
# positive divisors
if num%i == 0:
divisors.append(i)
total = 0
# double check the results
for i in divisors:
total+=i
if total == num:
return True,divisors
else:
return False,[]
print(Solution().checkPerfectNumber(28))
# True
# 28 = 1 + 2 + 4 + 7 + 14
| class Solution(object):
def check_perfect_number(self, num):
if num <= 0:
return (False, [])
divisors = []
for i in range(1, num):
if num % i == 0:
divisors.append(i)
total = 0
for i in divisors:
total += i
if total == num:
return (True, divisors)
else:
return (False, [])
print(solution().checkPerfectNumber(28)) |
# GCD
def gcd(a, b):
while(b != 0):
t = a
a = b
b = t % b
return a
def main():
print(gcd(60, 96))
print(gcd(20, 8))
if __name__ == "__main__":
main() | def gcd(a, b):
while b != 0:
t = a
a = b
b = t % b
return a
def main():
print(gcd(60, 96))
print(gcd(20, 8))
if __name__ == '__main__':
main() |
n=input()
r=0
for i in range(1, 2**9+1):
r+=(int(bin(i)[2:]) <= int(n))
print(r)
| n = input()
r = 0
for i in range(1, 2 ** 9 + 1):
r += int(bin(i)[2:]) <= int(n)
print(r) |
def run(coro):
try:
coro.send(None)
except StopIteration as e:
return e.value
async def coro():
print('coro')
class AContextManager():
async def __aenter__(self):
print('Entering')
await coro()
return self
async def __aexit__(self, ty, val, tb):
print('Exiting')
await coro()
async def main():
m = AContextManager()
async with m:
print('hello')
run(main())
| def run(coro):
try:
coro.send(None)
except StopIteration as e:
return e.value
async def coro():
print('coro')
class Acontextmanager:
async def __aenter__(self):
print('Entering')
await coro()
return self
async def __aexit__(self, ty, val, tb):
print('Exiting')
await coro()
async def main():
m = a_context_manager()
async with m:
print('hello')
run(main()) |
#!/usr/bin/env python
with open("my_new_file.txt", "a") as f:
f.write('something else\n')
| with open('my_new_file.txt', 'a') as f:
f.write('something else\n') |
# Copyright Rein Halbersma 2018-2021.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# http://forum.stratego.com/topic/357378-strategy-question-findingavoiding-bombs-at-the-end-of-games/?p=432037
print('TODO: implement first move statistics')
| print('TODO: implement first move statistics') |
class TreeNode:
def __init__(self, data, left=None, right=None):
self.data = data
self.left = left
self.right = right
def __str__(self):
fmt = 'TreeNode(data={}, left={}, right={})'
return fmt.format(self.data, self.left, self.right)
class BinarySearchTree:
def __init__(self, tree_data):
self.root = None
for data in tree_data:
self.insert(data)
def insert(self, data):
if self.root is None:
self.root = TreeNode(data)
elif data <= self.root.data:
if self.root.left is None:
self.root.left = TreeNode(data)
else:
left_tree = BinarySearchTree([])
left_tree.root = self.root.left
left_tree.insert(data)
else:
if self.root.right is None:
self.root.right = TreeNode(data)
else:
right_tree = BinarySearchTree([])
right_tree.root = self.root.right
right_tree.insert(data)
def data(self):
return self.root
def sorted_data(self):
if self.root is None:
return []
left_tree = BinarySearchTree([])
left_tree.root = self.root.left
right_tree = BinarySearchTree([])
right_tree.root = self.root.right
return left_tree.sorted_data() + [self.root.data] + right_tree.sorted_data()
| class Treenode:
def __init__(self, data, left=None, right=None):
self.data = data
self.left = left
self.right = right
def __str__(self):
fmt = 'TreeNode(data={}, left={}, right={})'
return fmt.format(self.data, self.left, self.right)
class Binarysearchtree:
def __init__(self, tree_data):
self.root = None
for data in tree_data:
self.insert(data)
def insert(self, data):
if self.root is None:
self.root = tree_node(data)
elif data <= self.root.data:
if self.root.left is None:
self.root.left = tree_node(data)
else:
left_tree = binary_search_tree([])
left_tree.root = self.root.left
left_tree.insert(data)
elif self.root.right is None:
self.root.right = tree_node(data)
else:
right_tree = binary_search_tree([])
right_tree.root = self.root.right
right_tree.insert(data)
def data(self):
return self.root
def sorted_data(self):
if self.root is None:
return []
left_tree = binary_search_tree([])
left_tree.root = self.root.left
right_tree = binary_search_tree([])
right_tree.root = self.root.right
return left_tree.sorted_data() + [self.root.data] + right_tree.sorted_data() |
##CONFIG##
##Leave it for blank if you don't want to include data from that source
#Ether addresses that you'd like to watch. Input them as a list if there're more than one address.
#E.g.: addresses = ['0xad2a6d5890c06083c340d723053b4040a28580ef', '0x214d0bb2b260b22b1498977200c1a32bdb75131b']
addresses = []
#Get this from Bittrex pannel. Watch-only permmision recommended
bittrex_apikey = ''
bittrex_apisecret = b''
#Get this from Poloniex pannel. Watch-only permmision recommended
poloniex_apikey = ''
poloniex_apisecret = b''
#Get this from Bitfinex pannel. Watch-only permmision recommended
bitfinex_apikey = ''
bitfinex_apisecret = b''
#Get this from Bigone settings page.
bigone_apikey = ''
#Mannually add balance from other sources that this program has not covered yet
#E.g.: other_bl = {'BTC': 5.2, 'ETH': 10}
other_bl = {}
| addresses = []
bittrex_apikey = ''
bittrex_apisecret = b''
poloniex_apikey = ''
poloniex_apisecret = b''
bitfinex_apikey = ''
bitfinex_apisecret = b''
bigone_apikey = ''
other_bl = {} |
potential_list = [[1,1],[1,0],[-1,0],[0,-1],[-3,1]]
print(potential_list)
for item1,item2 in potential_list:
if item2 <= 0:
potential_list.remove([item1,item2])
for item1,item2 in potential_list:
if item1 <= 0:
potential_list.remove([item1,item2])
print(potential_list) | potential_list = [[1, 1], [1, 0], [-1, 0], [0, -1], [-3, 1]]
print(potential_list)
for (item1, item2) in potential_list:
if item2 <= 0:
potential_list.remove([item1, item2])
for (item1, item2) in potential_list:
if item1 <= 0:
potential_list.remove([item1, item2])
print(potential_list) |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# File: __init__.py
# -------------------
# Divine Oasis
# Text Based RPG Game
# By wsngamerz
# -------------------
__author__ = "wsngamerz"
__version__ = "0.0.1 ALPHA 1"
| __author__ = 'wsngamerz'
__version__ = '0.0.1 ALPHA 1' |
print(1,2,3)
| print(1, 2, 3) |
geo, par, val,override = IN
setPreviously = False
try:
tags = geo.Tags
if tags.LookupTag(par) is None or override:
tags.AddTag(par, val)
except ValueError:
setPreviously = True
OUT = IN[0], setPreviously | (geo, par, val, override) = IN
set_previously = False
try:
tags = geo.Tags
if tags.LookupTag(par) is None or override:
tags.AddTag(par, val)
except ValueError:
set_previously = True
out = (IN[0], setPreviously) |
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
# def bstFromPreorder(self, preorder):
# if not preorder:
# return None
# preorder.sort()
# root = self.generator(1, preorder)
# return root
# def generator(self, idx, preorder):
# mx = len(preorder)
# if idx > mx:
# return None
# node = TreeNode(preorder[idx - 1])
# if mx - 1 == idx << 1:
# if preorder[idx - 1] > preorder[-1]:
# node.left = TreeNode(preorder[-1])
# else:
# node.right = TreeNode(preorder[-1])
# else:
# next_l = idx << 1
# node.left = self.generator(next_l, preorder)
# next_r = (idx << 1) + 1
# node.right = self.generator(next_r, preorder)
# return node
def bstFromPreorder(self, preorder):
if not preorder:
return None
inorder = sorted(preorder)
def generator(preorder, inorder):
if not preorder or not inorder:
return None
node = TreeNode(preorder[0])
inorder_idx = inorder.index(preorder[0])
node.left = generator(preorder[1:inorder_idx + 1], inorder[:inorder_idx])
node.right = generator(preorder[inorder_idx + 1:], inorder[inorder_idx + 1:])
return node
return generator(preorder, inorder)
if __name__ == '__main__':
a = Solution()
b = a.bstFromPreorder([1,3])
print(b) | class Treenode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def bst_from_preorder(self, preorder):
if not preorder:
return None
inorder = sorted(preorder)
def generator(preorder, inorder):
if not preorder or not inorder:
return None
node = tree_node(preorder[0])
inorder_idx = inorder.index(preorder[0])
node.left = generator(preorder[1:inorder_idx + 1], inorder[:inorder_idx])
node.right = generator(preorder[inorder_idx + 1:], inorder[inorder_idx + 1:])
return node
return generator(preorder, inorder)
if __name__ == '__main__':
a = solution()
b = a.bstFromPreorder([1, 3])
print(b) |
def sum_mul(n, m):
sumu = 0
if n > 0 and m > 0:
for i in range(n, m):
if (i % n == 0):
sumu += i
else:
return 'INVALID'
return sumu | def sum_mul(n, m):
sumu = 0
if n > 0 and m > 0:
for i in range(n, m):
if i % n == 0:
sumu += i
else:
return 'INVALID'
return sumu |
string = 'some text'
print(string)
print(id(string))
print('Run fuction, then print string and it\'s id again without using the function')
def changeString():
string = 'changed'
print(string)
print(id(string))
changeString()
print(string)
print(id(string))
print('(Redeclaring function)')
print('Run fuction, then print string and it\'s id again without using the function')
def changeString():
string = 'changed'
print(string)
print(id(string))
return string
changeString()
print(string)
print(id(string))
print('-----------------------------')
arr = [1, 2, 3]
print(arr)
def changeArr():
arr = [6, 7, 8]
print(arr)
changeArr()
print(arr)
print('-----------------------------')
print(arr)
def changeArr():
arr[0] = 6
arr[1] = 7
arr[2] = 8
print(arr)
changeArr()
print(arr)
print('-----------------------------')
arr = [1, 2, 3]
print(arr)
print(id(arr))
def changeArr():
global arr
arr = [6, 7, 8]
print(arr)
changeArr()
print(arr) #this time the arr got modified
print(id(arr)) #arr also got a new adress | string = 'some text'
print(string)
print(id(string))
print("Run fuction, then print string and it's id again without using the function")
def change_string():
string = 'changed'
print(string)
print(id(string))
change_string()
print(string)
print(id(string))
print('(Redeclaring function)')
print("Run fuction, then print string and it's id again without using the function")
def change_string():
string = 'changed'
print(string)
print(id(string))
return string
change_string()
print(string)
print(id(string))
print('-----------------------------')
arr = [1, 2, 3]
print(arr)
def change_arr():
arr = [6, 7, 8]
print(arr)
change_arr()
print(arr)
print('-----------------------------')
print(arr)
def change_arr():
arr[0] = 6
arr[1] = 7
arr[2] = 8
print(arr)
change_arr()
print(arr)
print('-----------------------------')
arr = [1, 2, 3]
print(arr)
print(id(arr))
def change_arr():
global arr
arr = [6, 7, 8]
print(arr)
change_arr()
print(arr)
print(id(arr)) |
for letter in 'Python':
if letter == 'h':
pass
print("This is Pass Block")
print("Current letter", letter)
print("Good Job") | for letter in 'Python':
if letter == 'h':
pass
print('This is Pass Block')
print('Current letter', letter)
print('Good Job') |
### building a more advance calculator with python
num1 = float(input("Enter first number: "))
op = input("Enter operator: ")
num2 = float(input("Enter second number: "))
if op == "+":
print(num1 + num2)
elif op == "-":
print(num1 - num2)
elif op == "*":
print(num1 * num2)
elif op == "/":
print(num1 / num2)
else:
print("invalid operation")
| num1 = float(input('Enter first number: '))
op = input('Enter operator: ')
num2 = float(input('Enter second number: '))
if op == '+':
print(num1 + num2)
elif op == '-':
print(num1 - num2)
elif op == '*':
print(num1 * num2)
elif op == '/':
print(num1 / num2)
else:
print('invalid operation') |
print("FINDING ROOTS OF A QUADRATIC EQUATION\n\n")
print("Any general quadratic equation will be of the form 'ax^2+bx+c=0', \ntherefore state values...")
a=int(input("\tcoefficient of x^2, a= "))
b=int(input("\tcoefficient of x, b= "))
c=int(input("\tconstant, c= "))
x=(b**2)-4*a*c
if(x==0):
print("\nThe roots are equal\nThe roots are")
r1=(-b/2*a)
r2=(-b/2*a)
print("\t",r1)
print("\t",r2)
elif(x>0):
print("The roots are real and unequal\nThe roots are")
r1=(-b+(x**(1/2)))/2*a
r2=(-b-(x**(1/2)))/2*a
print("\t",r1)
print("\t",r2)
else:
print("The roots are imaginary and unequal\nThe roots are")
r1=(-b/2*a)
r2=((-x)**(1/2))/2*a
print("\t",r1,"+i",r2)
print("\t",r1,"-i",r2)
print("\n\nProgram Ends, Press 'Enter' key to close")
i=input()
| print('FINDING ROOTS OF A QUADRATIC EQUATION\n\n')
print("Any general quadratic equation will be of the form 'ax^2+bx+c=0', \ntherefore state values...")
a = int(input('\tcoefficient of x^2, a= '))
b = int(input('\tcoefficient of x, b= '))
c = int(input('\tconstant, c= '))
x = b ** 2 - 4 * a * c
if x == 0:
print('\nThe roots are equal\nThe roots are')
r1 = -b / 2 * a
r2 = -b / 2 * a
print('\t', r1)
print('\t', r2)
elif x > 0:
print('The roots are real and unequal\nThe roots are')
r1 = (-b + x ** (1 / 2)) / 2 * a
r2 = (-b - x ** (1 / 2)) / 2 * a
print('\t', r1)
print('\t', r2)
else:
print('The roots are imaginary and unequal\nThe roots are')
r1 = -b / 2 * a
r2 = (-x) ** (1 / 2) / 2 * a
print('\t', r1, '+i', r2)
print('\t', r1, '-i', r2)
print("\n\nProgram Ends, Press 'Enter' key to close")
i = input() |
dysk = set()
with open(
r"D:\_MACIEK_\python_proby\skany_fabianki\lista_P.txt", "r"
) as listadysk:
for line in listadysk:
dysk.add(line)
with open(
r"D:\_MACIEK_\python_proby\skany_fabianki\lista_dysk.txt", "r"
) as listaP:
for line in listaP:
if line not in dysk:
with open(
r"D:\_MACIEK_\python_proby\skany_fabianki\jest_a_nie_bylo.txt",
"a",
) as brak:
brak.write(line)
| dysk = set()
with open('D:\\_MACIEK_\\python_proby\\skany_fabianki\\lista_P.txt', 'r') as listadysk:
for line in listadysk:
dysk.add(line)
with open('D:\\_MACIEK_\\python_proby\\skany_fabianki\\lista_dysk.txt', 'r') as lista_p:
for line in listaP:
if line not in dysk:
with open('D:\\_MACIEK_\\python_proby\\skany_fabianki\\jest_a_nie_bylo.txt', 'a') as brak:
brak.write(line) |
# initial configurations
PORT=33000
HOST="0.0.0.0"
| port = 33000
host = '0.0.0.0' |
#
# PySNMP MIB module NAI-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NAI-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:22:50 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Counter32, iso, MibIdentifier, NotificationType, Gauge32, ObjectIdentity, TimeTicks, NotificationType, Bits, Unsigned32, ModuleIdentity, Counter64, MibScalar, MibTable, MibTableRow, MibTableColumn, enterprises, Integer32, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "iso", "MibIdentifier", "NotificationType", "Gauge32", "ObjectIdentity", "TimeTicks", "NotificationType", "Bits", "Unsigned32", "ModuleIdentity", "Counter64", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "enterprises", "Integer32", "IpAddress")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
nai = MibIdentifier((1, 3, 6, 1, 4, 1, 3401))
naiStandardTrap = MibIdentifier((1, 3, 6, 1, 4, 1, 3401, 1))
naiTrapAgent = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapAgent.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapAgent.setDescription('The name of the agent that generated the trap.')
naiTrapAgentVersion = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapAgentVersion.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapAgentVersion.setDescription('The version of the agent that generated the trap.')
naiTrapSeverity = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("inform", 1), ("warning", 2), ("minor", 3), ("major", 4), ("critical", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapSeverity.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapSeverity.setDescription('Additional information delivered with alarm messages and indicated the critical, Major, Minor, Warning and informational. Advanced management applications can make use of this information to better evaluate the severity of the situation. This variable is only intended for use with traps; no meaning should be assumed by a Manager to the value retrieved through a Get operation on this object.')
naiTrapDescription = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 300))).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapDescription.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapDescription.setDescription('The alarm description.')
naiTrapAlarmSourceAddress = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapAlarmSourceAddress.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapAlarmSourceAddress.setDescription('This information identifies the piece of equipment which is casuing the alarm. If the information is not available, then this field can be left blank.')
naiTrapAlarmSourceDNSName = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapAlarmSourceDNSName.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapAlarmSourceDNSName.setDescription('The fully qualified DNS name of the piece of equipment which is casuing the alarm.This can contain the name of the machine that sent the trap, if DNS name is not available.')
naiTrapGMTTime = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 7), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapGMTTime.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapGMTTime.setDescription('The time that the condition or event occurred which caused generation of this alarm. This value is given in seconds since 00:00:00 Greenwich mean time (GMT) January 1, 1970.')
naiTrapLocalTime = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 8), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapLocalTime.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapLocalTime.setDescription('The time that the condition or event occurred which caused generation of this alarm. This value is given in seconds since 00:00:00 Local time January 1, 1970.')
naiTrapURL = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 9), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapURL.setStatus('mandatory')
if mibBuilder.loadTexts: naiTrapURL.setDescription('A fully qualified URL link to an HTML page/FTP file for more information about the alarm.')
naiTrapPseudoID = MibScalar((1, 3, 6, 1, 4, 1, 3401, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: naiTrapPseudoID.setStatus('optional')
if mibBuilder.loadTexts: naiTrapPseudoID.setDescription('This information identifies the pseudo-Id of the trap being sent. If the information is not available, then this field can be left blank.')
mibBuilder.exportSymbols("NAI-MIB", naiTrapAgentVersion=naiTrapAgentVersion, nai=nai, naiTrapAgent=naiTrapAgent, naiTrapLocalTime=naiTrapLocalTime, naiTrapURL=naiTrapURL, naiTrapGMTTime=naiTrapGMTTime, naiTrapPseudoID=naiTrapPseudoID, naiTrapAlarmSourceAddress=naiTrapAlarmSourceAddress, naiTrapAlarmSourceDNSName=naiTrapAlarmSourceDNSName, naiTrapDescription=naiTrapDescription, naiStandardTrap=naiStandardTrap, naiTrapSeverity=naiTrapSeverity)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_size_constraint, constraints_union, constraints_intersection, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(counter32, iso, mib_identifier, notification_type, gauge32, object_identity, time_ticks, notification_type, bits, unsigned32, module_identity, counter64, mib_scalar, mib_table, mib_table_row, mib_table_column, enterprises, integer32, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'iso', 'MibIdentifier', 'NotificationType', 'Gauge32', 'ObjectIdentity', 'TimeTicks', 'NotificationType', 'Bits', 'Unsigned32', 'ModuleIdentity', 'Counter64', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'enterprises', 'Integer32', 'IpAddress')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
nai = mib_identifier((1, 3, 6, 1, 4, 1, 3401))
nai_standard_trap = mib_identifier((1, 3, 6, 1, 4, 1, 3401, 1))
nai_trap_agent = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapAgent.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapAgent.setDescription('The name of the agent that generated the trap.')
nai_trap_agent_version = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapAgentVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapAgentVersion.setDescription('The version of the agent that generated the trap.')
nai_trap_severity = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('inform', 1), ('warning', 2), ('minor', 3), ('major', 4), ('critical', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapSeverity.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapSeverity.setDescription('Additional information delivered with alarm messages and indicated the critical, Major, Minor, Warning and informational. Advanced management applications can make use of this information to better evaluate the severity of the situation. This variable is only intended for use with traps; no meaning should be assumed by a Manager to the value retrieved through a Get operation on this object.')
nai_trap_description = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 300))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapDescription.setDescription('The alarm description.')
nai_trap_alarm_source_address = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapAlarmSourceAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapAlarmSourceAddress.setDescription('This information identifies the piece of equipment which is casuing the alarm. If the information is not available, then this field can be left blank.')
nai_trap_alarm_source_dns_name = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapAlarmSourceDNSName.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapAlarmSourceDNSName.setDescription('The fully qualified DNS name of the piece of equipment which is casuing the alarm.This can contain the name of the machine that sent the trap, if DNS name is not available.')
nai_trap_gmt_time = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 7), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapGMTTime.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapGMTTime.setDescription('The time that the condition or event occurred which caused generation of this alarm. This value is given in seconds since 00:00:00 Greenwich mean time (GMT) January 1, 1970.')
nai_trap_local_time = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 8), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapLocalTime.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapLocalTime.setDescription('The time that the condition or event occurred which caused generation of this alarm. This value is given in seconds since 00:00:00 Local time January 1, 1970.')
nai_trap_url = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 9), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapURL.setStatus('mandatory')
if mibBuilder.loadTexts:
naiTrapURL.setDescription('A fully qualified URL link to an HTML page/FTP file for more information about the alarm.')
nai_trap_pseudo_id = mib_scalar((1, 3, 6, 1, 4, 1, 3401, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
naiTrapPseudoID.setStatus('optional')
if mibBuilder.loadTexts:
naiTrapPseudoID.setDescription('This information identifies the pseudo-Id of the trap being sent. If the information is not available, then this field can be left blank.')
mibBuilder.exportSymbols('NAI-MIB', naiTrapAgentVersion=naiTrapAgentVersion, nai=nai, naiTrapAgent=naiTrapAgent, naiTrapLocalTime=naiTrapLocalTime, naiTrapURL=naiTrapURL, naiTrapGMTTime=naiTrapGMTTime, naiTrapPseudoID=naiTrapPseudoID, naiTrapAlarmSourceAddress=naiTrapAlarmSourceAddress, naiTrapAlarmSourceDNSName=naiTrapAlarmSourceDNSName, naiTrapDescription=naiTrapDescription, naiStandardTrap=naiStandardTrap, naiTrapSeverity=naiTrapSeverity) |
# Checking if a binary tree is a perfect binary tree in Python
class newNode:
def __init__(self, k):
self.key = k
self.right = self.left = None
# Calculate the depth
def calculateDepth(node):
d = 0
while node is not None:
d += 1
node = node.left
return d
# Check if the tree is perfect binary tree
def is_perfect(root, d, level=0):
# Check if the tree is empty
if root is None:
return True
# Check the presence of trees
if root.left is None and root.right is None:
return d == level + 1
if root.left is None or root.right is None:
return False
return is_perfect(root.left, d, level + 1) and is_perfect(root.right, d, level + 1)
root = None
root = newNode(1)
root.left = newNode(2)
root.right = newNode(3)
root.left.left = newNode(4)
root.left.right = newNode(5)
if is_perfect(root, calculateDepth(root)):
print("The tree is a perfect binary tree")
else:
print("The tree is not a perfect binary tree")
| class Newnode:
def __init__(self, k):
self.key = k
self.right = self.left = None
def calculate_depth(node):
d = 0
while node is not None:
d += 1
node = node.left
return d
def is_perfect(root, d, level=0):
if root is None:
return True
if root.left is None and root.right is None:
return d == level + 1
if root.left is None or root.right is None:
return False
return is_perfect(root.left, d, level + 1) and is_perfect(root.right, d, level + 1)
root = None
root = new_node(1)
root.left = new_node(2)
root.right = new_node(3)
root.left.left = new_node(4)
root.left.right = new_node(5)
if is_perfect(root, calculate_depth(root)):
print('The tree is a perfect binary tree')
else:
print('The tree is not a perfect binary tree') |
# print("Please choose your option from the list below:")
# print("1:\tLearn Python")
# print("2:\tLearn Java")
# print("3:\tGo swimming")
# print("4:\tHave dinner")
# print("5:\tGo to bed")
# print("0:\tExit")
choice = "-"
while choice != "0":
# while True:
# choice = input()
# if choice == "0":
# break
# elif choice in "12345":
if choice in "12345":
print("You chose {}".format(choice))
else:
print("Please choose your option from the list below:")
print("1:\tLearn Python")
print("2:\tLearn Java")
print("3:\tGo swimming")
print("4:\tHave dinner")
print("5:\tGo to bed")
print("0:\tExit")
choice = input()
| choice = '-'
while choice != '0':
if choice in '12345':
print('You chose {}'.format(choice))
else:
print('Please choose your option from the list below:')
print('1:\tLearn Python')
print('2:\tLearn Java')
print('3:\tGo swimming')
print('4:\tHave dinner')
print('5:\tGo to bed')
print('0:\tExit')
choice = input() |
k = int(input())
chess = 'W'
empty = '.'
neighbour = [[0, -1], [0, 1], [1, 0], [-1, 0],[1,-1],[1,1],[-1,-1],[-1,1]]
def dfs(r, c, area, visited):
mianji = 1
visited[r][c] = 1
stack = []
stack.append([r, c])
while len(stack) != 0:
x, y = stack.pop()
for dx, dy in neighbour:
temp_x = x + dx
temp_y = y + dy
if area[temp_x][temp_y] == chess and visited[temp_x][temp_y] == 0:
visited[temp_x][temp_y] = 1
stack.append([temp_x, temp_y])
mianji += 1
return mianji
for _ in range(k):
n, m = list(map(int,input().split()))
area = []
visited =[]
area.append(empty*(m+2))
visited.append([0] * (m + 2))
current_max = 0
for __ in range(n):
area.append(empty+input()+empty)
visited.append([0] * (m + 2))
area.append(empty*(m+2))
visited.append([0] * (m + 2))
# search
for row in range(1,n+1):
for column in range(1,m+1):
if area[row][column] != empty and visited[row][column] == 0:
# dfs
temp_mianji = dfs(row,column,area=area,visited=visited)
if temp_mianji > current_max:
current_max = temp_mianji
print(current_max)
| k = int(input())
chess = 'W'
empty = '.'
neighbour = [[0, -1], [0, 1], [1, 0], [-1, 0], [1, -1], [1, 1], [-1, -1], [-1, 1]]
def dfs(r, c, area, visited):
mianji = 1
visited[r][c] = 1
stack = []
stack.append([r, c])
while len(stack) != 0:
(x, y) = stack.pop()
for (dx, dy) in neighbour:
temp_x = x + dx
temp_y = y + dy
if area[temp_x][temp_y] == chess and visited[temp_x][temp_y] == 0:
visited[temp_x][temp_y] = 1
stack.append([temp_x, temp_y])
mianji += 1
return mianji
for _ in range(k):
(n, m) = list(map(int, input().split()))
area = []
visited = []
area.append(empty * (m + 2))
visited.append([0] * (m + 2))
current_max = 0
for __ in range(n):
area.append(empty + input() + empty)
visited.append([0] * (m + 2))
area.append(empty * (m + 2))
visited.append([0] * (m + 2))
for row in range(1, n + 1):
for column in range(1, m + 1):
if area[row][column] != empty and visited[row][column] == 0:
temp_mianji = dfs(row, column, area=area, visited=visited)
if temp_mianji > current_max:
current_max = temp_mianji
print(current_max) |
r_result_json = {
'result': [{
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'bfc39682-3929-4635-9834-e95b8ba7c2c2',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_07',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/emh-home-ip',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_07',
'disabled':
False,
'application':
'/oracle/public/all',
'action':
'PERMIT',
'id':
'5aee8ea3-8065-4ca2-8a28-e4306829da1e',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'992dd2ac-5ba3-4c5d-b383-1f989c693a92',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'5c47fcc5-a75c-49d1-aa0e-f09a6df44a20',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources',
'action':
'PERMIT',
'id':
'b6c6cd74-c85d-4389-9ac9-b149a9a349e8',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dbconsole-soacsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'e2c35278-38c8-4527-a4a6-6c56d029bfdf',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_http-soacsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'0e8c8a98-2089-477d-8439-f9092f54d150',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'55c7e0cd-14b3-4f7f-9bd4-cfc3b74ab311',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'f846d5f7-be36-4657-84ee-578345c93db0',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/tresources',
'action':
'PERMIT',
'id':
'7bd5149d-e77b-418b-b7bd-acfc86b440fe',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'071af2b8-2aa3-4bb4-8d4b-c6dd6579e76a',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'5d8813ad-e633-4ab7-8fa5-d7522d3632f8',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/tresources',
'action':
'PERMIT',
'id':
'176ea0f5-f116-4c1b-994b-2dfbd7d76af3',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'0153aaf6-4cce-4f0d-8df0-e6457433c559',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_dbport-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources',
'action':
'PERMIT',
'id':
'02715c0b-707a-43fd-b3ef-efcd64204962',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_http-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources',
'action':
'PERMIT',
'id':
'c0f1a35a-c93f-425a-b922-8ae893630057',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'd5d34ba2-df0f-46db-873b-87c81dc7b4ea',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'6da4cf69-bdde-4400-8d1d-0ad3d758181c',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/tresources',
'action':
'PERMIT',
'id':
'4a2f56b6-3d64-4818-9a58-8c2bde68c533',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources',
'action':
'PERMIT',
'id':
'8e032dc3-8dfa-4e20-9cc4-118fa69c8d27',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources',
'action':
'PERMIT',
'id':
'55274756-111d-42ce-87f0-b35edd500126',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_http-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources',
'action':
'PERMIT',
'id':
'a2c2f139-be3a-444f-b76f-0c8d430ec682',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'0be41ca5-f469-4e65-9c95-f4ed76ff1fd8',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a546b8ef-e32c-480e-96d3-15fad12791e0',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/tresources',
'action':
'PERMIT',
'id':
'87f9995f-605e-4c7d-9abe-07ec23fb8efa',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_02',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_02',
'disabled':
False,
'application':
'/oracle/public/https',
'action':
'PERMIT',
'id':
'77808af7-ea5a-4b6b-88b6-cb12ff0c810f',
'description':
'NAAC/SOAR allow HTTPS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_03',
'src_list':
'seciplist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb-ipl',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_03',
'disabled':
False,
'application':
'/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_dblistener',
'action':
'PERMIT',
'id':
'c09063e1-a887-49e0-bdb6-b9b1372a06fc',
'description':
'port 1521 for ntsb'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_chttps-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'524e58f8-9dab-4d33-8568-a9a905feec4f',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_chttps-jcs/tresources',
'action':
'PERMIT',
'id':
'143e544e-eea3-4a11-a095-26e49b8ec675',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_04',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_04',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/http-tcp-8000',
'action':
'PERMIT',
'id':
'db8650b4-bf5a-4183-b435-8ee8dd6a132c',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'aba47e68-44e0-40b8-aa3f-c876ab9cd71e',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_03',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_03',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/HTTPS-4443',
'action':
'PERMIT',
'id':
'd4a9a29d-6444-4522-8130-f54e7423e084',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dbconsole',
'action':
'PERMIT',
'id':
'c4b4d71e-49a6-4a4a-ad47-916207415e37',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_admin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources',
'action':
'PERMIT',
'id':
'553c8390-3217-485d-b04f-7d9688105795',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_admin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'5e9ea51b-41d6-4419-b19e-72b5c469b467',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT',
'name':
'/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT-HTTPS-4443-PUBLIC-GC3NAACCDMT_PSFT',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/GC3NAACCDMT-HTTPS-4443-PUBLIC-GC3NAACCDMT_PSFT',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/https-tcp-4443',
'action':
'PERMIT',
'id':
'fa8d0424-3235-4725-8779-c7e280f77377',
'description':
'Allow HTTPS on port 4443'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dbexpress-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources',
'action':
'PERMIT',
'id':
'6438443d-d4e4-4db3-b929-097ea3a64dd7',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'dda07d42-4813-4449-b7a6-6426335c4054',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dblistener',
'action':
'PERMIT',
'id':
'ce983d6b-8d59-4ea6-9dcc-2507c03315f5',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_ahttps',
'action':
'PERMIT',
'id':
'26796471-da52-4606-948c-1bad6d9a44b1',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_seclist_01',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_02',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_02',
'disabled':
False,
'application':
'/oracle/public/https',
'action':
'PERMIT',
'id':
'b3beef75-bdc7-4a60-837e-fdb59076af7d',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'bda14c5f-5e32-46b3-a419-afd0055345dc',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_06',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_06',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/https-943',
'action':
'PERMIT',
'id':
'e543d10e-6739-49f0-8098-a3b139655661',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dbexpress-soacsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'9290d556-705a-4d51-ad14-c41ece37ec01',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'43253bb8-2075-4f2a-9ae1-38aa0ba5fbc2',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/tresources',
'action':
'PERMIT',
'id':
'a44b7976-552c-4b22-9e80-12607551c967',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dbexpress',
'action':
'PERMIT',
'id':
'2924a77c-4ac8-4cce-8e0f-1e7ff5bdfca3',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'db7d7c45-3045-4282-8c20-72cf3b5758aa',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/tresources',
'action':
'PERMIT',
'id':
'291cce74-a446-4ca2-8e07-feb10cea5beb',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ahttps-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'29716862-7b4c-49a6-be42-b87dd8e03c51',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/tresources',
'action':
'PERMIT',
'id':
'ff82eb71-69fa-49ef-80e8-20a9f16d5b09',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dblistener',
'action':
'PERMIT',
'id':
'080a39d8-52aa-4f05-a8f1-29886c17c0fe',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_04',
'src_list':
'seciplist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb-ipl',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_04',
'disabled':
False,
'application':
'/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_dblistener',
'action':
'PERMIT',
'id':
'236f92fa-1c17-4ef4-90a6-67eb645bd9e2',
'description':
'port 1521 for ntsb'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_ahttps-jcs/lb/tresources',
'action':
'PERMIT',
'id':
'37c1a77d-ed78-4ae6-baaa-69096235a1dc',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/tresources',
'action':
'PERMIT',
'id':
'70752320-fd6a-4920-8527-684a81f6c3f5',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'4c81488f-1a7d-429c-88a3-032a53a3c1a0',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_seclist_01',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_01',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_01',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9090efd5-1b62-4041-b558-c0d32282f7a1',
'description':
'SSH secrule for naacntsb'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_chttps-jcs/lb/tresources',
'action':
'PERMIT',
'id':
'dc081aa1-1cab-43b9-bffd-25a31c1fe07f',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ea540fa6-0e97-4b65-b7a8-33e0be9bdf03',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'c5ab6942-5116-44e9-ad52-e92142732e8e',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ad2e926d-0db1-451c-832a-df124508a170',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'52a8bb81-b745-413d-b5e9-84fe4a306603',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9f7c30bc-1f43-4d54-9442-597232408aa4',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttp',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_chttp-jcs/lb/tresources',
'action':
'PERMIT',
'id':
'a437591e-b494-4db2-bb4d-a9fbd8daaa7c',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT',
'name':
'/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT-SSH-PUBLIC-GC3NAACCDMT_PSFT',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/GC3NAACCDMT-SSH-PUBLIC-GC3NAACCDMT_PSFT',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'1cfb6883-29d4-4e55-b32a-6abe26bc9d47',
'description':
'Allow SSH for GC3NAACCDMT'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_05',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_05',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/openvpn-udp-1194',
'action':
'PERMIT',
'id':
'a11b0d07-0a33-4249-9806-8a49f50c47e0',
'description':
'OpenVPN'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/sn_oel_ssh_sec_list',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/sn_oel_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/sn_oel_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'7cd6db40-6117-4aa5-9d2d-1b6ea02b43f2',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpadmin',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpadmin',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_httpadmin',
'action':
'PERMIT',
'id':
'0b2594f8-196e-49b4-beae-c7700a1bcba2',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_admin',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ahttps',
'action':
'PERMIT',
'id':
'aaadb573-8639-4ccc-97c3-96ccb293fa74',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_chttps',
'action':
'PERMIT',
'id':
'6d0487fa-8e48-4bb4-9589-a47fa6e4ba56',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_chttps',
'action':
'PERMIT',
'id':
'64d6bc28-355c-4f0a-af2a-142fd0982a95',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_ahttps-jcs/lb/tresources',
'action':
'PERMIT',
'id':
'335f284d-4807-4763-8a89-4d27f4c8a31c',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'fdbaac06-4022-4ba9-8b9f-833448d7b0cd',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dbconsole',
'action':
'PERMIT',
'id':
'01219c5c-c7a3-4053-9cd0-61d773f8ec2b',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dbconsole',
'action':
'PERMIT',
'id':
'e26504ae-566c-4eeb-976f-46be1f340c45',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'56cf62d0-3441-41c7-97b8-0b93e3a1c0d6',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a091e865-c72c-4cf8-bf9d-ef72d68bc9d9',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_admin',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a9c35a03-6c38-4814-9809-49e4dbe9fd91',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_http',
'action':
'PERMIT',
'id':
'427839ff-7585-4818-8ddd-1191dc173a73',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'1a863933-4060-4f9e-b0cc-bcdb8a6b19bd',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_chttps',
'action':
'PERMIT',
'id':
'8477401e-b50d-45dd-bfd2-e187d3a15738',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'b4d2be43-b600-4dae-9aaa-ec30fe542e18',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'b27adb24-95ba-4deb-bf92-444a7f7a0397',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'b864fb50-bc67-4d7e-acdf-798f5308e39a',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttp',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_chttp',
'action':
'PERMIT',
'id':
'da60a887-e6e5-43f4-aecf-55e2e35bd47c',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_chttps',
'action':
'PERMIT',
'id':
'8fba824e-b99e-413f-825c-3286963817d0',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ahttps',
'action':
'PERMIT',
'id':
'123cf1b7-5c2d-422c-934c-010709c214c5',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_dbport',
'action':
'PERMIT',
'id':
'5c00aa44-7151-42e0-acfd-44afb14fc3a9',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_httpssl',
'action':
'PERMIT',
'id':
'569b84d2-e55b-479d-9001-6173d47f38de',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_chttp-jcs/tresources',
'action':
'PERMIT',
'id':
'81544963-38d7-42c1-881b-dc0549145178',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_ahttps',
'action':
'PERMIT',
'id':
'9ff9bae5-3b8c-4a93-b61e-21f8cc9ef4c2',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'f3fa5796-40f9-41e3-83a4-faa9f516c51d',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/gc3ntagrogr601_SecurityList',
'name':
'/Compute-587626604/siva.subramani@oracle.com/gc3ntagrogr601_SecurityRule',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/gc3ntagrogr601_SecurityRule',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'05b091c0-062b-44f2-9f24-b9f8231e69ff',
'description':
'gc3ntagrogr601_SecurityRule'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dblistener',
'action':
'PERMIT',
'id':
'0dad3a4a-adad-4f49-92a9-cdae00aca8d3',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dbexpress',
'action':
'PERMIT',
'id':
'74593d28-1581-4d2e-beec-c45d8e46bf58',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_http',
'action':
'PERMIT',
'id':
'c175519c-91c5-4809-a0d2-57ce8ee6abc0',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_chttp',
'action':
'PERMIT',
'id':
'bd0fc0f9-8786-461b-b0a8-a69d14514c3b',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'65020a49-e695-428b-99cf-583c50da8f1a',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9ccbb8c4-aef9-4ce9-aa11-d2f5d9c3ef86',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dblistener',
'action':
'PERMIT',
'id':
'f765df78-2db0-44d1-ab8d-5771df5317b5',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_httpssl',
'action':
'PERMIT',
'id':
'ffb5ea45-ebf3-4440-b7b9-334158b99844',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_http-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources',
'action':
'PERMIT',
'id':
'fdeafbda-2a89-4548-86cc-3654a3b9e671',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_chttps',
'action':
'PERMIT',
'id':
'4961d497-9b0b-461c-b8b3-c093d1b70c20',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_dbport',
'action':
'PERMIT',
'id':
'34c4173a-6f7c-4630-89d7-0a0818c43f1d',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'50c2e576-0aa3-405f-a11c-eb2935f65b82',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dblistener',
'action':
'PERMIT',
'id':
'd3b84419-a07e-4870-85e4-5769a51a48fe',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpadmin',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpadmin',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_httpadmin',
'action':
'PERMIT',
'id':
'35edcaa3-5738-4f86-b76c-d380ab0b6468',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_httpssl',
'action':
'PERMIT',
'id':
'2e417757-f8e3-4651-bffa-2e0334500440',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dbexpress',
'action':
'PERMIT',
'id':
'61b59f92-a5e3-4568-afa8-432f7a0c57f4',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'fec914c3-e1c3-4549-aec2-c42dd717e45a',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_http',
'action':
'PERMIT',
'id':
'be0b6731-4dab-4c44-aab0-eac2dacfca65',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dblistener',
'action':
'PERMIT',
'id':
'a34ba23d-c8d1-4132-ace3-7146888b0c8f',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_chttp',
'action':
'PERMIT',
'id':
'ebb19e07-cc6a-4965-885a-fb57cd54d2fa',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpadmin',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpadmin',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_httpadmin',
'action':
'PERMIT',
'id':
'bd976906-0826-4e21-b30d-1edae554ec7b',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_chttps',
'action':
'PERMIT',
'id':
'45ce7491-fc53-4477-9401-c05ed2f6c893',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a4b8e22a-abe5-46d6-b897-272935b2f895',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_chttp',
'action':
'PERMIT',
'id':
'fe7684e4-9c23-427e-910c-c800a3108874',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a8f815bd-615f-4b05-8298-61d598e626a5',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_seclist_01',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_secrule_02',
'src_list':
'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_iplist_01',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/gc3hutil_secrule_02',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_rsyslog',
'action':
'PERMIT',
'id':
'69329db3-2dcc-4bc2-915f-94ff6347b778',
'description':
'GC3 Hosting Utility Servers'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/tresources',
'action':
'PERMIT',
'id':
'22fbbd68-b79c-4a6e-8d6e-24fdc2e44264',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dblistener-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources',
'action':
'PERMIT',
'id':
'2e74d95d-6ae5-4872-9ca4-49b16f682b1e',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dbexpress-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources',
'action':
'PERMIT',
'id':
'99dd5599-43ad-4ee6-a453-6f14932a9742',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_dbport-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/tresources',
'action':
'PERMIT',
'id':
'dcc5dba0-7fdb-4358-9dce-9d7e7f7e9e72',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources',
'action':
'PERMIT',
'id':
'fcc8d275-d041-4f01-9a4c-641cf9ae9086',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttp',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources',
'action':
'PERMIT',
'id':
'96ce4342-7ee9-4f46-a674-dac64a6d3e5c',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttp',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources',
'action':
'PERMIT',
'id':
'd945ea2b-dc30-4213-808e-240755dbde87',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'660734e9-0bda-4428-bd32-b406a00bb956',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_dbport-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'dff36792-ce27-42c6-b8c6-332849c3eb6c',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/GC3OSCSA_Seclist',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/secrule_HTTPS_GC3OSCSA',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/secrule_HTTPS_GC3OSCSA',
'disabled':
False,
'application':
'/oracle/public/https',
'action':
'PERMIT',
'id':
'4a2fc532-bb60-48ba-825a-642ac1cecc16',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'e8aef85f-d0a9-448d-b546-1c7b40ff7f33',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources',
'action':
'PERMIT',
'id':
'a12256e5-d43e-42e9-8ef1-a7406f95c4e2',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_chttp-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'a029b6be-c6fb-4b4f-931f-779755d1469a',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/GC3OSCSA_Seclist',
'name':
'/Compute-587626604/seetharaman.nandyal@oracle.com/secrule_SSH_GC3OSCSA',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/secrule_SSH_GC3OSCSA',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'58dceca5-3c83-4b10-ade5-d5128d9c4562',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'4b77dfb2-a29f-40cf-90b5-9e669d479d70',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/tresources',
'action':
'PERMIT',
'id':
'39c1058a-39da-4053-bcea-37027ae5e343',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_dbport-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources',
'action':
'PERMIT',
'id':
'f6d8f1f4-34c2-4164-9ded-c1239c35141f',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/tresources',
'action':
'PERMIT',
'id':
'f79c69c6-9ad2-4b62-b7ef-16387bcede8c',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_chttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/tresources',
'action':
'PERMIT',
'id':
'4a4c0954-7154-4559-8f93-208fb784ecca',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources',
'action':
'PERMIT',
'id':
'93ef46ba-47d6-4d37-b7ff-418f06f7d4ee',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'acd7bcf0-5ada-4cbe-ba47-5282de7dfb87',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ef2c6332-3dfe-4299-bd51-dcf0c96a4de9',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/NTAG_POD1',
'name':
'/Compute-587626604/eric.harris@oracle.com/emh-home-ip_NTAG_POD1',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/emh-home-ip',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/emh-home-ip_NTAG_POD1',
'disabled':
False,
'application':
'/oracle/public/all',
'action':
'PERMIT',
'id':
'7a9ab679-552e-4353-aabc-c75af8274ca0',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'959ce11e-8160-43ce-9dac-af1c3e3f31a9',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dbconsole-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources',
'action':
'PERMIT',
'id':
'1347583c-cbd9-4d32-92c3-ac8de39718a7',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources',
'action':
'PERMIT',
'id':
'a11c15b3-54b3-4ff3-bae2-c03abe7dbee6',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'1a645af2-2974-43e0-9072-c34faf6e44a2',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources',
'action':
'PERMIT',
'id':
'9e0980f6-af0b-4a70-a71f-d2deb175b2e8',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_httpssl-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'809f8336-02ff-40c4-8c8c-eae0bb020616',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/NTAG_POD',
'name':
'/Compute-587626604/eric.harris@oracle.com/NTAG_POD-public-ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/NTAG_POD-public-ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'268fb759-e95b-40b3-9b2b-a06490bc6f2a',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources',
'action':
'PERMIT',
'id':
'32f79b8d-b0c4-4206-b40e-7f224ad81eba',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'425cafd4-736c-47b9-bd87-6dce4377c4be',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'3c34a7b4-f7cd-462a-86a9-692edd66f7a0',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_seclist_01',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_secrule_01',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/gc3hutil_secrule_01',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'354c2523-e7fe-4b3f-a755-38d0a4c63bfd',
'description':
'GC3 Hosting Utility Servers'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dbconsole-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'2beb4c7d-826d-42c6-9b32-7feaba3f8124',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'2638c8b7-f865-4985-b618-011c9d4441fc',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'7cc5113f-05cf-41c8-a24b-b9d72671c040',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'8b909af0-34fd-4f0c-afa9-20a360b8b7c0',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'85b5a73c-7258-42a1-ab56-869ba3ba05e4',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dbexpress-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'74c315df-130d-4d3c-8ba2-c104dbc93644',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ae4a6eb2-c6fc-4c70-8d58-2d171aa36885',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a158359b-7fc6-44a4-b5f3-311d455771fc',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_ahttps-JCS/lb/tresources',
'action':
'PERMIT',
'id':
'2b8f5892-a3a8-4a55-996c-2548007d67e8',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_http-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'120b212b-4979-42b1-ad85-d9dd1887dc53',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_dbport-JCS/wls/tresources',
'action':
'PERMIT',
'id':
'853be60e-f794-4d10-acdf-a31520cc0780',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ahttps-JCS/wls/tresources',
'action':
'PERMIT',
'id':
'7fd4343a-a509-4d5e-8de5-c06cbd59c7c8',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_chttps-JCS/tresources',
'action':
'PERMIT',
'id':
'299029b4-6916-4c1a-b4f0-c6a878866d02',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'0c66d6d9-1a26-4513-b4cd-d8f3d94e01d1',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_admin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources',
'action':
'PERMIT',
'id':
'364385db-d8d5-42ad-ab23-30a6cb697262',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/tresources',
'action':
'PERMIT',
'id':
'052a83d0-264a-4fa4-a9b9-c066276c718c',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_chttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/tresources',
'action':
'PERMIT',
'id':
'8c66afe7-e6d7-4d9b-b617-589cf842f23c',
'description':
'Permit public access to https Application Context port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'2a3cf0b7-2d89-4409-84db-37a82ca9b1f7',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_http-DBCS/db_1/tresources',
'action':
'PERMIT',
'id':
'5cfd0ec2-9bc2-4c6f-bf61-73f288e21936',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_chttp-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/tresources',
'action':
'PERMIT',
'id':
'f12ac69f-8f8d-4c52-ad1e-910a462c08e0',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dbconsole-DBCS/db_1/tresources',
'action':
'PERMIT',
'id':
'c5292c9d-c2b3-4f4e-960e-e1e9a031127a',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources',
'action':
'PERMIT',
'id':
'3eae2817-7595-48c0-b7fc-6e0745554f97',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9f3fc3a4-edbb-45af-a5df-2106b2708711',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'5a322601-83a2-4a43-b67e-15bd05355c86',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttp',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_chttp-JCS/wls/tresources',
'action':
'PERMIT',
'id':
'741239d6-cb3e-4516-b270-6759d7785936',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_01',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_01',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'26f52559-aecf-4f3e-87f0-71608331a982',
'description':
'NAAC/SOAR allow SSH'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/tresources',
'action':
'PERMIT',
'id':
'e8258118-3c07-446a-aaf2-5a9bd5025f3d',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'412ebe9d-b7f2-42d2-afde-5e46a9049634',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/NTAG_POD',
'name':
'/Compute-587626604/eric.harris@oracle.com/NTAG_POD-public-https',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/NTAG_POD-public-https',
'disabled':
False,
'application':
'/oracle/public/https',
'action':
'PERMIT',
'id':
'db912f42-8ae4-4831-bb06-97a11717137b',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'5d7bfdc2-b70a-461d-b7ae-93918b301246',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'08c94820-ab8c-45e7-8d63-157429591767',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttp',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_chttp-JCS/lb/tresources',
'action':
'PERMIT',
'id':
'630c63d0-9a89-48b2-8bb7-99eb20895948',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a9274fd1-7df1-47a3-b385-2a6d87e02ea7',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbrepo_repodbport',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbrepo_repodbport',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_repodbport-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/tresources',
'action':
'PERMIT',
'id':
'be5c42b7-b68b-4bd1-af43-70bf0f597d73',
'description':
'Permit connection to Database Service from GoldenGate Service'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/tresources',
'action':
'PERMIT',
'id':
'79471830-c1ef-4851-b5e1-6321dc00fbb1',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_httpssl-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'a3a8cdd4-11dc-45ee-9110-38929b6678f9',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/tresources',
'action':
'PERMIT',
'id':
'171b0263-b97a-42c1-b3af-436e35a4ca9f',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_chttps-JCS/lb/tresources',
'action':
'PERMIT',
'id':
'56aa9897-24e0-4e06-a51f-502c88faee28',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttp',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/tresources',
'action':
'PERMIT',
'id':
'8ce4ff0a-8dba-46a2-b89c-4afc3e37d0c5',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/tresources',
'action':
'PERMIT',
'id':
'da3d94ee-bc42-4a0d-8e4c-762216d2d6a4',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'f52b1bb2-9697-455c-9b03-4092b0089dd7',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources',
'action':
'PERMIT',
'id':
'99d0c9a9-9857-4aa5-926e-2406000e43bf',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dbexpress-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources',
'action':
'PERMIT',
'id':
'97d99997-af2b-4ff7-9a37-dafd99eaa7ca',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttp',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources',
'action':
'PERMIT',
'id':
'a03f67a2-0191-4c57-9d47-2e0e7c495725',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_chttps-JCS/wls/tresources',
'action':
'PERMIT',
'id':
'5b462183-c484-4312-854c-07b143b02b00',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_httpssl-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources',
'action':
'PERMIT',
'id':
'c10b9d7c-ced7-48cf-9a1c-3b455924ef0e',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources',
'action':
'PERMIT',
'id':
'4f954b2a-182e-4cf3-9d60-1fcdcac2770a',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/tresources',
'action':
'PERMIT',
'id':
'c0c8b495-0ef0-4c3a-83c3-23125290585c',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dblistener-DBCS/db_1/tresources',
'action':
'PERMIT',
'id':
'bdb54c20-5292-4703-b6d3-9ef17278cf68',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9ec2b3d1-f7a2-4fc3-8fbf-5d0c0a0bfc14',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'edaff0dd-6a1b-44b6-8bab-0c0dc41e5f0b',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dbexpress-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'0e62f784-8628-4789-ac23-002e6f6f7771',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_ahttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/tresources',
'action':
'PERMIT',
'id':
'91b0ec34-cabd-4afc-9d44-b2730040de12',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'c5a5201a-ed91-40f6-a55c-869bd6183378',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dbconsole-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources',
'action':
'PERMIT',
'id':
'852e1b2e-02b2-4fbe-b98d-1f7136eb6b13',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'c7db45ec-9699-4dd8-8210-849254fc1a5a',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_httpssl-DBCS/db_1/tresources',
'action':
'PERMIT',
'id':
'0fd2f145-c366-426e-8cf8-272d904dbbc7',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'fb4ca61a-6b19-4977-b3fd-26ba4999d3c3',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'055a6e82-57ce-47d3-8983-44c1bd0b2848',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_chttp-JCS/tresources',
'action':
'PERMIT',
'id':
'c9bf82b5-f8c9-4dec-a6ef-3d2aa74aca8c',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'db49238d-8f46-45d1-98c6-1fb918060ac9',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/tresources',
'action':
'PERMIT',
'id':
'bc4e53aa-b9af-4c2f-9888-8ee058f5a1bd',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources',
'action':
'PERMIT',
'id':
'c54fdd4a-2f5d-4f63-8182-3297438d7dd9',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_http-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'46665562-04fa-4e8b-be03-eeba424a7a55',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'1e7b62ea-3995-4fb7-a56c-7a180fdf0132',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources',
'action':
'PERMIT',
'id':
'a1044826-5f2f-4836-80d1-1f319505d55f',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'c41773c9-9fdd-4de4-99da-9f2c37e9162c',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources',
'action':
'PERMIT',
'id':
'f5b0221e-dc72-4c03-9fd4-d38023973d24',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dbexpress-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources',
'action':
'PERMIT',
'id':
'34ca229e-98a4-4647-b5aa-3ba267f8d39d',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ad98c929-d641-4014-898a-cca69520456f',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'2ac82279-b3cb-4370-ad8c-c4343bfa3fc8',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/tresources',
'action':
'PERMIT',
'id':
'f9b25c3d-8c31-461d-a21f-f15f97c6490f',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_dbport-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources',
'action':
'PERMIT',
'id':
'7fccc884-7f99-43c4-a131-885f5f3a31ea',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_httpssl-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources',
'action':
'PERMIT',
'id':
'93935155-1f9c-4ed5-a02e-1e888b8c6cb1',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'6926d49d-6df3-466c-8d76-47bacdd60776',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttp',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/tresources',
'action':
'PERMIT',
'id':
'f9dae2f4-dec6-4d15-a9ff-ddc33f7918ba',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_http-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources',
'action':
'PERMIT',
'id':
'928b6606-ce1c-40b3-a490-01f19c2d71e8',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/tresources',
'action':
'PERMIT',
'id':
'ef734c45-8e02-4766-8185-1d1c1901cf71',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'd450206c-884e-43fd-855b-1bd61c3eb6d2',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_httpssl-soacsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'd1899f1b-ec99-4c3f-8f99-95eb1d9172af',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dblistener-soacsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'66aedd05-491d-477e-89ab-7acb7f841719',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'47bc4aff-603a-43d2-8bb8-e4f8ff828760',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dbexpress-DBCS/db_1/tresources',
'action':
'PERMIT',
'id':
'7fa1e2f4-d647-43d8-82fa-62dfa997f271',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/tresources',
'action':
'PERMIT',
'id':
'21c4b69e-b535-46d8-967b-9dca16975880',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dblistener-DBCS/db_1/tresources',
'action':
'PERMIT',
'id':
'd367c2f2-f8ba-4fb1-b7e7-1b199093b1dc',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9c95e65f-abd0-4cf8-997d-fb6db1a82eb1',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/tresources',
'action':
'PERMIT',
'id':
'708bd83e-18ff-47f5-a087-46cd74ed6d5e',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/tresources',
'action':
'PERMIT',
'id':
'c8dc9a7b-2c85-4481-baea-a08ef0b8c232',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'd1d49d0c-51ab-48cf-8996-c58093c1365a',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttp',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/tresources',
'action':
'PERMIT',
'id':
'f53d5e2a-8dfa-41c9-b0b1-0dd07f9ddfb5',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources',
'action':
'PERMIT',
'id':
'b31490ac-8996-4036-8359-4f0417b0d2fe',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbreporac_repodbportrac',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbreporac_repodbportrac',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_repodbportrac-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/tresources',
'action':
'PERMIT',
'id':
'11c441f6-bd7d-4615-a224-6f33601859e9',
'description':
'Permit connection to Database Service db_listener in case RAC from GoldenGate Service'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ahttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/tresources',
'action':
'PERMIT',
'id':
'dde17d2b-d53f-404c-a7b1-23d0ef8eeff0',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'0cc77193-df68-432a-b153-60016be68999',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'8fb83b5a-b1cd-4f92-ad3b-d68d5902f2cb',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dblistener-soacsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'3818842f-37d1-491e-a27a-07032a30a5ba',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'5b466504-c874-4eef-bcb2-5bea27ba01c4',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/tarek.orfaly@oracle.com/torfaly_seclist',
'name':
'/Compute-587626604/tarek.orfaly@oracle.com/torfaly_secrule',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/tarek.orfaly%40oracle.com/torfaly_secrule',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'bd68765b-f085-4b05-854f-342fc7d66eff',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'df5e2e90-7bf2-4c62-b31a-4db2232aabbd',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT',
'name':
'/Compute-587626604/eric.harris@oracle.com/emh-home-ip_CDMT',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/emh-home-ip',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/emh-home-ip_CDMT',
'disabled':
False,
'application':
'/oracle/public/all',
'action':
'PERMIT',
'id':
'915e048e-5603-45eb-a345-193962fb1be7',
'description':
'Allow traffic to CDMT'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_chttp-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/tresources',
'action':
'PERMIT',
'id':
'88d2b383-afa5-452d-af6f-0eff3e60b719',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_chttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/tresources',
'action':
'PERMIT',
'id':
'bb24898f-23cc-4e29-aabc-6a366690f929',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dbexpress-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'ba960c47-b0d5-4a95-afec-d588ca7909e2',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'b15e2f23-02ad-4e7d-bfc7-a414822a106b',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_http-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources',
'action':
'PERMIT',
'id':
'ab3951dc-12be-41ce-a797-0818d403e9eb',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_bdc_infraadmin',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/sys_infra2bdc_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/sys_infra2bdc_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ad29c2b3-6030-4fdd-8053-c9dafe07cea9',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dbconsole-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'8c19f196-2bca-46c2-a5fd-e4643743b5b0',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'3c9451c7-ae46-4d1c-acf5-d7de4c241ce7',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_admin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'2f182c58-e781-4cb0-980f-a88cf4226f28',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/tresources',
'action':
'PERMIT',
'id':
'788c6e13-ccfc-4d00-b545-81259146eb94',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/tresources',
'action':
'PERMIT',
'id':
'5eb114dd-fa83-4545-bc06-e979a2365828',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ahttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/tresources',
'action':
'PERMIT',
'id':
'b7d3bd53-5d0e-40ba-a363-7670e6963ae7',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_httpssl-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources',
'action':
'PERMIT',
'id':
'cfd3ae74-e171-4886-9e23-144956842d74',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dbconsole-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources',
'action':
'PERMIT',
'id':
'702377f7-5b61-42d5-adf0-5fbcfccb978d',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttp',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/tresources',
'action':
'PERMIT',
'id':
'3214d01b-0710-4310-8206-eabb24e32cd2',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_httpssl-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources',
'action':
'PERMIT',
'id':
'a087c5b2-b158-4423-8a09-dea270ba22ba',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'e7324764-fd6a-45a3-b958-a1b81141fa46',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dbconsole-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources',
'action':
'PERMIT',
'id':
'34a65910-260f-4c9d-9f0f-eeb1629b30f8',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dbconsole-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources',
'action':
'PERMIT',
'id':
'ecebce7c-733c-4221-8ce4-b412d7703e15',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_nw',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9edacadf-fdb1-4a7e-af5b-cd28411fa644',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/tarek.orfaly@oracle.com/ossa_seclist',
'name':
'/Compute-587626604/tarek.orfaly@oracle.com/ossa_secrule',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/tarek.orfaly%40oracle.com/ossa_secrule',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'cd2a9d53-0268-42e8-8bdc-5904e6b634e1',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ec027422-4e49-4774-bffd-ef857cad4671',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'dc9c19aa-4765-4eee-95b1-3b1a66c412ba',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/tresources',
'action':
'PERMIT',
'id':
'b0d93e63-6b29-4b2e-aee4-86ff231548a7',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources',
'action':
'PERMIT',
'id':
'148d0f97-18eb-4e69-9054-27adb81f2cf6',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dbconsole-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'8bf66a9f-8bf3-49a1-9851-f7888ebff785',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a9839b1c-45d9-41d2-8120-8ca855481494',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'4bc9934e-76e5-4927-8ad7-813c58a896c5',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dbexpress-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources',
'action':
'PERMIT',
'id':
'6063b0fc-45a9-4d37-abd0-45741cda0870',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_dbport-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources',
'action':
'PERMIT',
'id':
'491a9d7f-13c2-4fc3-92b1-9b07e752c74b',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'eb4ae542-0976-400c-b53b-b933d8fed01f',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/ossa_gscc_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/ossa_gscc_SSH',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/ossa_gscc_SSH',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'd87c6567-321b-4bd2-91f6-b7b04b73a869',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/tresources',
'action':
'PERMIT',
'id':
'8d6cc030-6e69-4fd2-9b9f-ca0eac2b9014',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_dbport-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/tresources',
'action':
'PERMIT',
'id':
'310b9c4c-fd48-4d19-b66b-7f7e5beb96fd',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttp',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources',
'action':
'PERMIT',
'id':
'59e397f3-0624-48de-bdcd-c6b1dfc45c79',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm705_secList',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm705_secRule',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/gc3ntagdevm705_secRule',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'b592cba8-78e7-443d-a525-b40b19459cbc',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_httpssl-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'1a3e50f6-e28a-4fea-bb80-57421235ccfc',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_admin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'71545d97-259e-460e-881f-54e34bdff7ae',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_admin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources',
'action':
'PERMIT',
'id':
'4dc74751-03f5-4154-a725-5dfae98bf880',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_admin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'17a9dd57-1cc0-45b9-af0b-6c61de4e1555',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_admin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources',
'action':
'PERMIT',
'id':
'dbf48b96-3ced-4a77-b3db-40b695505f2f',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'08158e25-33fa-4f9a-aa53-df48c75fa8c7',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_master_nw',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_nginx',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_nginx',
'disabled':
False,
'application':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_nginx-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/tresources',
'action':
'PERMIT',
'id':
'c5e54cf2-4d3f-49f9-b375-dda49bdf8198',
'description':
'NGINX Proxy'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'e9695be8-fba7-441d-8c1a-d3bfd3eae6d2',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources',
'action':
'PERMIT',
'id':
'8cb21a18-1697-4b9b-860d-8569c4959ef8',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db',
'name':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources',
'action':
'PERMIT',
'id':
'fb2e5f0e-8b7c-46fd-9f96-26d8f7c2cc55',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dbexpress-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'7f0146ab-8315-4e62-b2e7-54033da62eab',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'dcb5768b-acd7-43b4-824d-80a4071456d1',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_admin',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/tresources',
'action':
'PERMIT',
'id':
'b861c9ad-f85b-4b2b-aa80-0bd83ada363c',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/tresources',
'action':
'PERMIT',
'id':
'a5a0dd17-f8fe-4bdf-a3df-a9f8433badb5',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttp',
'disabled':
True,
'application':
'/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/tresources',
'action':
'PERMIT',
'id':
'3b6f9154-3301-4488-a6d0-fb17b7b42fd5',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'a5def31a-f6f1-45cd-ae6f-4aa24b3e9838',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'97349e7f-85db-437f-b913-9b9f8650f697',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dbconsole-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'0261ea8f-5da9-4cc4-845c-b5b311965f68',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm706_secList',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm706_secRule',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/gc3ntagdevm706_secRule',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'c62607e9-2cde-4500-b8b7-c18dcd68a88f',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_httpssl-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'ba4974be-01aa-46e3-bf32-c2d5cda9a105',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_http-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'fa515e4d-21ae-4362-ba8a-ddb858a862d9',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'6ff2cd6a-b885-403d-b5cc-2ad330ca6154',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_httpssl-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'5d787c13-b6c5-4eb8-b739-b70efc178906',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_http-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'651bdc1a-3a97-4519-bb61-d0bb7422fde3',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_cdmt_secrule_05',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_cdmt_secrule_05',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/openvpn-udp-1194',
'action':
'PERMIT',
'id':
'62d28da9-9bf0-4170-a3d8-00f015014ef1',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'0b46b304-2bc0-4231-a85d-ecf18f677b03',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_http-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'775f87b5-d283-4d70-857b-51bce7d2ebf6',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'61a26038-24a5-44e8-b50d-16f08014633c',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_gg_infraadmin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/sys_infra2gg_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/sys_infra2gg_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9b0219c2-de2d-44ff-891e-fe3028980bdb',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'392b0ed0-ef78-495a-985a-7039d8b5112d',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_httpssl-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources',
'action':
'PERMIT',
'id':
'6c113314-9655-40f3-b16f-0e04b5353679',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm708_secList',
'name':
'/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm708_secRule',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/gc3ntagdevm708_secRule',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'e4f7c028-b315-4ecf-9541-07bf445a234e',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'1dd91dfa-09dd-468c-bf86-60c037027245',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources',
'action':
'PERMIT',
'id':
'c1b17271-a261-4ee6-b745-4a22b622c972',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_chttp-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'de76b81f-451a-43ef-abcd-eb725dfed3dd',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_chttp-jcs/tresources',
'action':
'PERMIT',
'id':
'3f276264-9594-4b48-a808-f051178381fb',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_dbport-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'90424ef9-4766-4616-8024-c4a8a9a23ad1',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'52818fff-3a4d-481b-8bf0-179a24ad74c3',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_chttp-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'54b17ade-2748-457c-8b44-a4e2fefe0423',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_chttps-jcs/lb/tresources',
'action':
'PERMIT',
'id':
'21918d4d-c4b9-48b0-b456-90fdac6a385f',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls2db_dbport',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls2db_dbport',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_dbport-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'b5a170e9-ed03-4b91-93c2-c9a584cfc19e',
'description':
'Permit connection to Database Service from WLS'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dbexpress-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'6aa632f8-560a-4ba6-8516-3e50fb5a289b',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'48628194-9a29-487f-ab3c-0ce6235514bc',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_master_nw',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ambari',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ambari',
'disabled':
False,
'application':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_ambari-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/tresources',
'action':
'PERMIT',
'id':
'70ad744f-2b4a-4577-87b4-a698dff2f18d',
'description':
'Ambari REST'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'1999e85d-37fb-4ee6-835b-7c3f7e07beeb',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'0f541a5b-16ca-4b67-aefa-7f14769e0be6',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'69880c7a-98ee-4729-af50-5ee1a65fcdc5',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_chttps-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'e6cb7ec8-1e6f-4c6f-81e2-782a4a589f41',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/ossa_gscc_seclist_01',
'name':
'/Compute-587626604/eric.harris@oracle.com/ossa_gscc_HTTPS',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/ossa_gscc_HTTPS',
'disabled':
False,
'application':
'/oracle/public/https',
'action':
'PERMIT',
'id':
'b0b9a844-4586-4c59-b5ee-c86ce2d102b4',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_chttps-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'6fba6324-aa5a-4fac-a5b0-6f954b0cbaa4',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'4be57feb-a626-4a5d-832a-7a1bb25244af',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_chttp-jcs/tresources',
'action':
'PERMIT',
'id':
'd88cc64c-9c21-475f-bb12-a5af2b82b666',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'12e9d94d-e4c0-4409-9d70-b6e98542bf6f',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'60ccd29b-8be6-4087-8af4-61e2da8467c5',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources',
'action':
'PERMIT',
'id':
'a36e7df4-0c0e-413b-a38a-c7e1276d86db',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT',
'name':
'/Compute-587626604/eric.harris@oracle.com/gc3_naac_cdmt_secrule_06',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_cdmt_secrule_06',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/https-943',
'action':
'PERMIT',
'id':
'3154a7d3-2b44-4351-998e-0cc430a4dcbf',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/tresources',
'action':
'PERMIT',
'id':
'43b5ae9c-004e-42a3-b62a-f4f9141418c4',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_http-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources',
'action':
'PERMIT',
'id':
'f759a8a4-e90e-46fa-8f4a-97f52c6494b2',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_chttps-jcs/tresources',
'action':
'PERMIT',
'id':
'e4cc6a49-0bf6-404d-a2bd-1c3ab2335289',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9b7940b2-1d92-4706-a11e-7ccb1fda5be0',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dbexpress-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources',
'action':
'PERMIT',
'id':
'160010c5-dd1e-4f2e-88d0-1698da938462',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ad2d1646-a7a0-4154-8e4b-100810dd523d',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources',
'action':
'PERMIT',
'id':
'ff48355e-417d-4b5e-8521-e319031728de',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'dd58e5a6-d37c-4cef-bdee-68984569613f',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbexpress',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbexpress',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dbexpress-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'53bed8ad-0df6-4ebc-aa01-c43820868d47',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'ef776742-95b1-44c7-923b-03056f564348',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_chttps-jcs/lb/tresources',
'action':
'PERMIT',
'id':
'd2bb5373-8131-4616-a734-4f0a8e27bf57',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ahttps-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'1449dfef-aee9-41d4-9ff1-570e1f541765',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'5a997922-a2de-493d-a9e5-6ed07880e65f',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'b36acc99-531a-4a92-a23e-e096cf6c6f23',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_bhttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_bhttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_bhttps-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/tresources',
'action':
'PERMIT',
'id':
'8e1a58ed-43e3-4636-905d-c165772395f6',
'description':
'Permit public access to https Application Context port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/tresources',
'action':
'PERMIT',
'id':
'c7f6f431-d61e-4f25-aacd-c7f2ddeaec4a',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dbconsole-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'6febbd2a-f6a0-4d9f-904d-5289f956a629',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_ahttps-jcs/lb/tresources',
'action':
'PERMIT',
'id':
'e2e8d11b-df8b-4c4f-8295-bc64cc3b6cba',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'be941961-9ee3-4295-a19f-0ec105ad4c58',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'4975feab-51fe-408d-84a3-09406e19ce00',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'92585996-1d61-43b0-afa8-38ee1b2473f8',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_httpssl',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_httpssl-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'6bc4f45f-015b-4f33-b21a-08659378f1e2',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources',
'action':
'PERMIT',
'id':
'7ef4b1fe-0263-4f9c-bf5f-e309570df9cc',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dbconsole-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'e10807a2-bace-4a83-b0f5-0e57def86d9d',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/tresources',
'action':
'PERMIT',
'id':
'ef4a059e-54a9-4ef6-89cf-87127938da07',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'e0ac04f0-3faf-43f7-88af-07b935408000',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources',
'action':
'PERMIT',
'id':
'7cabe311-805b-483f-a5ef-e5f07d114274',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/tresources',
'action':
'PERMIT',
'id':
'a51a4372-a3b1-41a4-afb2-b92999275026',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'25cfe5c2-9f86-4a40-9834-cc95e1e9d95e',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls_infraadmin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/sys_infra2wls_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/sys_infra2wls_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'42c3ca42-5e0b-46b1-bf14-879b21fd0603',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_chttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_chttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/tresources',
'action':
'PERMIT',
'id':
'3b4f1474-c669-42c9-8a5a-f3c1b351fa73',
'description':
'Permit public access to https content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_http',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_http',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_http-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'2cec4212-940e-4a6f-aecb-aa7bd2616fff',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_admin',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources',
'action':
'PERMIT',
'id':
'595038ee-357f-47d5-83ce-b056cde495a9',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'f7c9d7f7-c248-46b5-84b5-f1e1bef072ac',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbconsole',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbconsole',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dbconsole-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources',
'action':
'PERMIT',
'id':
'ba2ceff4-bdf8-4564-aea8-a036a14d6494',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_admin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ahttps',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ahttps',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ahttps-jcs/wls/tresources',
'action':
'PERMIT',
'id':
'687d52fe-5682-4615-894d-407c4d9f9535',
'description':
'Permit public access to https administration port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_chttps-jcs/tresources',
'action':
'PERMIT',
'id':
'eb7df455-ac1f-40ee-95bc-334e7a8e0632',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_sys_ms2db_ssh',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_sys_ms2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'0f7d24d1-1d6c-4c65-aba4-ac93b51af1a1',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'6baf64a9-6ef8-45d5-8fc8-6cd4517d95cc',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_httpssl',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_httpssl',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_httpssl-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources',
'action':
'PERMIT',
'id':
'65e987f0-6773-42ee-9aef-8323f99192b2',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/tresources',
'action':
'PERMIT',
'id':
'd65b2c7a-da93-49e4-96b3-d386d9e6c5d7',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dblistener',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dblistener',
'disabled':
True,
'application':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources',
'action':
'PERMIT',
'id':
'd7518908-8160-4b6a-aacd-68c575dda830',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'8d19c4fb-f920-4701-8d9a-d736b5c2189d',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms',
'name':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttp',
'disabled':
True,
'application':
'/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources',
'action':
'PERMIT',
'id':
'7e6353f9-b375-4111-bef0-57e20369b77e',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'9095f81c-b9a0-4e5f-9055-7b050f3bfea6',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/sys_infra2db_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/sys_infra2db_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'212d5f22-a7b3-4767-b79d-b04a70b7aaff',
'description':
'DO NOT MODIFY: Permit PSM to ssh to database'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_admin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'1ae6002a-e022-49dd-97f1-6844b652546b',
'description':
'Permit ssh access to nodes'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'4ce42a31-4d18-49c6-8d5e-1218386ad000',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db',
'name':
'/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'7d824c81-b981-49cc-bcf7-c557c24fd0ca',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/sys_infra2otd_admin_ssh',
'src_list':
'seciplist:/oracle/public/paas-infra',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/sys_infra2otd_admin_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'332c5d52-226f-48cc-9a32-f1d57398946a',
'description':
'DO NOT MODIFY: Permit PSM to ssh to admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_master_nw',
'name':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_trusted_hosts_bdcsce',
'src_list':
'seciplist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_trusted_hosts_bdcsce',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_trusted_hosts_bdcsce',
'disabled':
False,
'application':
'/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_hosts_bdcsce-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/tresources',
'action':
'PERMIT',
'id':
'bbcc7d93-bb65-4b2b-81bd-9daef56b6ceb',
'description':
'DO NOT MODIFY: Permit specific IPs to access BDC port '
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/tresources',
'action':
'PERMIT',
'id':
'14a23fe1-271f-4557-b218-3b3a7d96eb96',
'description':
'Permit https connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/tresources',
'action':
'PERMIT',
'id':
'ceb2a493-1e23-442c-a30d-8d60c1aae9cc',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttp',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources',
'action':
'PERMIT',
'id':
'f65e607d-7331-4b61-b129-d665e072bbc8',
'description':
'Permit public access to http content port'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_ssh',
'src_list':
'seciplist:/oracle/public/public-internet',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'1e1534ca-f68b-41da-a584-204ba7c68869',
'description':
''
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd_infraadmin',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/sys_wls2otd_ssh',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls_infraadmin',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/sys_wls2otd_ssh',
'disabled':
False,
'application':
'/oracle/public/ssh',
'action':
'PERMIT',
'id':
'59b40f59-938a-443c-bce9-463b114ee176',
'description':
'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'true',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_trusted_hosts_dblistener',
'src_list':
'seciplist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_trusted_hosts_dblistener',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_trusted_hosts_dblistener',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dblistener-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources',
'action':
'PERMIT',
'id':
'07eca2ed-0822-49cf-aff1-4411c79336b8',
'description':
'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttp',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttp',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/tresources',
'action':
'PERMIT',
'id':
'f9d125ab-88b7-446a-bc29-b7625925e9e4',
'description':
'Permit http connection to managed servers from OTD'
}, {
'dst_is_ip':
'false',
'src_is_ip':
'false',
'dst_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms',
'name':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttps',
'src_list':
'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd',
'uri':
'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttps',
'disabled':
False,
'application':
'/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/tresources',
'action':
'PERMIT',
'id':
'80f023f5-6aab-4863-9aa3-c45bb2f6d7ec',
'description':
'Permit https connection to managed servers from OTD'
}]
}
| r_result_json = {'result': [{'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'bfc39682-3929-4635-9834-e95b8ba7c2c2', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_07', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/emh-home-ip', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_07', 'disabled': False, 'application': '/oracle/public/all', 'action': 'PERMIT', 'id': '5aee8ea3-8065-4ca2-8a28-e4306829da1e', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '992dd2ac-5ba3-4c5d-b383-1f989c693a92', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '5c47fcc5-a75c-49d1-aa0e-f09a6df44a20', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources', 'action': 'PERMIT', 'id': 'b6c6cd74-c85d-4389-9ac9-b149a9a349e8', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dbconsole-soacsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'e2c35278-38c8-4527-a4a6-6c56d029bfdf', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_http-soacsdb/db_1/tresources', 'action': 'PERMIT', 'id': '0e8c8a98-2089-477d-8439-f9092f54d150', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '55c7e0cd-14b3-4f7f-9bd4-cfc3b74ab311', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'f846d5f7-be36-4657-84ee-578345c93db0', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/tresources', 'action': 'PERMIT', 'id': '7bd5149d-e77b-418b-b7bd-acfc86b440fe', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '071af2b8-2aa3-4bb4-8d4b-c6dd6579e76a', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '5d8813ad-e633-4ab7-8fa5-d7522d3632f8', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/tresources', 'action': 'PERMIT', 'id': '176ea0f5-f116-4c1b-994b-2dfbd7d76af3', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '0153aaf6-4cce-4f0d-8df0-e6457433c559', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_dbport-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources', 'action': 'PERMIT', 'id': '02715c0b-707a-43fd-b3ef-efcd64204962', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_http-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources', 'action': 'PERMIT', 'id': 'c0f1a35a-c93f-425a-b922-8ae893630057', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'd5d34ba2-df0f-46db-873b-87c81dc7b4ea', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '6da4cf69-bdde-4400-8d1d-0ad3d758181c', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/tresources', 'action': 'PERMIT', 'id': '4a2f56b6-3d64-4818-9a58-8c2bde68c533', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources', 'action': 'PERMIT', 'id': '8e032dc3-8dfa-4e20-9cc4-118fa69c8d27', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources', 'action': 'PERMIT', 'id': '55274756-111d-42ce-87f0-b35edd500126', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_http-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources', 'action': 'PERMIT', 'id': 'a2c2f139-be3a-444f-b76f-0c8d430ec682', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '0be41ca5-f469-4e65-9c95-f4ed76ff1fd8', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a546b8ef-e32c-480e-96d3-15fad12791e0', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/tresources', 'action': 'PERMIT', 'id': '87f9995f-605e-4c7d-9abe-07ec23fb8efa', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_02', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_02', 'disabled': False, 'application': '/oracle/public/https', 'action': 'PERMIT', 'id': '77808af7-ea5a-4b6b-88b6-cb12ff0c810f', 'description': 'NAAC/SOAR allow HTTPS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_03', 'src_list': 'seciplist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb-ipl', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_03', 'disabled': False, 'application': '/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_dblistener', 'action': 'PERMIT', 'id': 'c09063e1-a887-49e0-bdb6-b9b1372a06fc', 'description': 'port 1521 for ntsb'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_chttps-jcs/wls/tresources', 'action': 'PERMIT', 'id': '524e58f8-9dab-4d33-8568-a9a905feec4f', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_chttps-jcs/tresources', 'action': 'PERMIT', 'id': '143e544e-eea3-4a11-a095-26e49b8ec675', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_04', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_04', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/http-tcp-8000', 'action': 'PERMIT', 'id': 'db8650b4-bf5a-4183-b435-8ee8dd6a132c', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': 'aba47e68-44e0-40b8-aa3f-c876ab9cd71e', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_03', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_03', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/HTTPS-4443', 'action': 'PERMIT', 'id': 'd4a9a29d-6444-4522-8130-f54e7423e084', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dbconsole', 'action': 'PERMIT', 'id': 'c4b4d71e-49a6-4a4a-ad47-916207415e37', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_admin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ahttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources', 'action': 'PERMIT', 'id': '553c8390-3217-485d-b04f-7d9688105795', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_admin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '5e9ea51b-41d6-4419-b19e-72b5c469b467', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT', 'name': '/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT-HTTPS-4443-PUBLIC-GC3NAACCDMT_PSFT', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/GC3NAACCDMT-HTTPS-4443-PUBLIC-GC3NAACCDMT_PSFT', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/https-tcp-4443', 'action': 'PERMIT', 'id': 'fa8d0424-3235-4725-8779-c7e280f77377', 'description': 'Allow HTTPS on port 4443'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dbexpress-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources', 'action': 'PERMIT', 'id': '6438443d-d4e4-4db3-b929-097ea3a64dd7', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'dda07d42-4813-4449-b7a6-6426335c4054', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dblistener', 'action': 'PERMIT', 'id': 'ce983d6b-8d59-4ea6-9dcc-2507c03315f5', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_ahttps', 'action': 'PERMIT', 'id': '26796471-da52-4606-948c-1bad6d9a44b1', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_seclist_01', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_02', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_02', 'disabled': False, 'application': '/oracle/public/https', 'action': 'PERMIT', 'id': 'b3beef75-bdc7-4a60-837e-fdb59076af7d', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'bda14c5f-5e32-46b3-a419-afd0055345dc', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_06', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_06', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/https-943', 'action': 'PERMIT', 'id': 'e543d10e-6739-49f0-8098-a3b139655661', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dbexpress-soacsdb/db_1/tresources', 'action': 'PERMIT', 'id': '9290d556-705a-4d51-ad14-c41ece37ec01', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '43253bb8-2075-4f2a-9ae1-38aa0ba5fbc2', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/tresources', 'action': 'PERMIT', 'id': 'a44b7976-552c-4b22-9e80-12607551c967', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dbexpress', 'action': 'PERMIT', 'id': '2924a77c-4ac8-4cce-8e0f-1e7ff5bdfca3', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'db7d7c45-3045-4282-8c20-72cf3b5758aa', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/tresources', 'action': 'PERMIT', 'id': '291cce74-a446-4ca2-8e07-feb10cea5beb', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ahttps-jcs/wls/tresources', 'action': 'PERMIT', 'id': '29716862-7b4c-49a6-be42-b87dd8e03c51', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ahttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/tresources', 'action': 'PERMIT', 'id': 'ff82eb71-69fa-49ef-80e8-20a9f16d5b09', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_dblistener', 'action': 'PERMIT', 'id': '080a39d8-52aa-4f05-a8f1-29886c17c0fe', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_04', 'src_list': 'seciplist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb-ipl', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_04', 'disabled': False, 'application': '/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_dblistener', 'action': 'PERMIT', 'id': '236f92fa-1c17-4ef4-90a6-67eb645bd9e2', 'description': 'port 1521 for ntsb'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_ahttps-jcs/lb/tresources', 'action': 'PERMIT', 'id': '37c1a77d-ed78-4ae6-baaa-69096235a1dc', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/tresources', 'action': 'PERMIT', 'id': '70752320-fd6a-4920-8527-684a81f6c3f5', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '4c81488f-1a7d-429c-88a3-032a53a3c1a0', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_seclist_01', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/naacntsb_secrule_01', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/naacntsb_secrule_01', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9090efd5-1b62-4041-b558-c0d32282f7a1', 'description': 'SSH secrule for naacntsb'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_chttps-jcs/lb/tresources', 'action': 'PERMIT', 'id': 'dc081aa1-1cab-43b9-bffd-25a31c1fe07f', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ea540fa6-0e97-4b65-b7a8-33e0be9bdf03', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'c5ab6942-5116-44e9-ad52-e92142732e8e', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ad2e926d-0db1-451c-832a-df124508a170', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '52a8bb81-b745-413d-b5e9-84fe4a306603', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9f7c30bc-1f43-4d54-9442-597232408aa4', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_chttp', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_chttp-jcs/lb/tresources', 'action': 'PERMIT', 'id': 'a437591e-b494-4db2-bb4d-a9fbd8daaa7c', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT', 'name': '/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT-SSH-PUBLIC-GC3NAACCDMT_PSFT', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/GC3NAACCDMT-SSH-PUBLIC-GC3NAACCDMT_PSFT', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '1cfb6883-29d4-4e55-b32a-6abe26bc9d47', 'description': 'Allow SSH for GC3NAACCDMT'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_05', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_05', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/openvpn-udp-1194', 'action': 'PERMIT', 'id': 'a11b0d07-0a33-4249-9806-8a49f50c47e0', 'description': 'OpenVPN'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/sn_oel_ssh_sec_list', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/sn_oel_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/sn_oel_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '7cd6db40-6117-4aa5-9d2d-1b6ea02b43f2', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpadmin', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpadmin', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_httpadmin', 'action': 'PERMIT', 'id': '0b2594f8-196e-49b4-beae-c7700a1bcba2', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_admin', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ahttps', 'action': 'PERMIT', 'id': 'aaadb573-8639-4ccc-97c3-96ccb293fa74', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_chttps', 'action': 'PERMIT', 'id': '6d0487fa-8e48-4bb4-9589-a47fa6e4ba56', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_chttps', 'action': 'PERMIT', 'id': '64d6bc28-355c-4f0a-af2a-142fd0982a95', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_ahttps-jcs/lb/tresources', 'action': 'PERMIT', 'id': '335f284d-4807-4763-8a89-4d27f4c8a31c', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'fdbaac06-4022-4ba9-8b9f-833448d7b0cd', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dbconsole', 'action': 'PERMIT', 'id': '01219c5c-c7a3-4053-9cd0-61d773f8ec2b', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dbconsole', 'action': 'PERMIT', 'id': 'e26504ae-566c-4eeb-976f-46be1f340c45', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '56cf62d0-3441-41c7-97b8-0b93e3a1c0d6', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a091e865-c72c-4cf8-bf9d-ef72d68bc9d9', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_admin', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a9c35a03-6c38-4814-9809-49e4dbe9fd91', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_http', 'action': 'PERMIT', 'id': '427839ff-7585-4818-8ddd-1191dc173a73', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '1a863933-4060-4f9e-b0cc-bcdb8a6b19bd', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_chttps', 'action': 'PERMIT', 'id': '8477401e-b50d-45dd-bfd2-e187d3a15738', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'b4d2be43-b600-4dae-9aaa-ec30fe542e18', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'b27adb24-95ba-4deb-bf92-444a7f7a0397', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'b864fb50-bc67-4d7e-acdf-798f5308e39a', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttp', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_chttp', 'action': 'PERMIT', 'id': 'da60a887-e6e5-43f4-aecf-55e2e35bd47c', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_chttps', 'action': 'PERMIT', 'id': '8fba824e-b99e-413f-825c-3286963817d0', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ahttps', 'action': 'PERMIT', 'id': '123cf1b7-5c2d-422c-934c-010709c214c5', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_dbport', 'action': 'PERMIT', 'id': '5c00aa44-7151-42e0-acfd-44afb14fc3a9', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_httpssl', 'action': 'PERMIT', 'id': '569b84d2-e55b-479d-9001-6173d47f38de', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/ora_chttp-jcs/tresources', 'action': 'PERMIT', 'id': '81544963-38d7-42c1-881b-dc0549145178', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_ahttps', 'action': 'PERMIT', 'id': '9ff9bae5-3b8c-4a93-b61e-21f8cc9ef4c2', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'f3fa5796-40f9-41e3-83a4-faa9f516c51d', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/gc3ntagrogr601_SecurityList', 'name': '/Compute-587626604/siva.subramani@oracle.com/gc3ntagrogr601_SecurityRule', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/gc3ntagrogr601_SecurityRule', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '05b091c0-062b-44f2-9f24-b9f8231e69ff', 'description': 'gc3ntagrogr601_SecurityRule'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dblistener', 'action': 'PERMIT', 'id': '0dad3a4a-adad-4f49-92a9-cdae00aca8d3', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dbexpress', 'action': 'PERMIT', 'id': '74593d28-1581-4d2e-beec-c45d8e46bf58', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_http', 'action': 'PERMIT', 'id': 'c175519c-91c5-4809-a0d2-57ce8ee6abc0', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_chttp', 'action': 'PERMIT', 'id': 'bd0fc0f9-8786-461b-b0a8-a69d14514c3b', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '65020a49-e695-428b-99cf-583c50da8f1a', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9ccbb8c4-aef9-4ce9-aa11-d2f5d9c3ef86', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dblistener', 'action': 'PERMIT', 'id': 'f765df78-2db0-44d1-ab8d-5771df5317b5', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_httpssl', 'action': 'PERMIT', 'id': 'ffb5ea45-ebf3-4440-b7b9-334158b99844', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_http-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources', 'action': 'PERMIT', 'id': 'fdeafbda-2a89-4548-86cc-3654a3b9e671', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/ora_chttps', 'action': 'PERMIT', 'id': '4961d497-9b0b-461c-b8b3-c093d1b70c20', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_dbport', 'action': 'PERMIT', 'id': '34c4173a-6f7c-4630-89d7-0a0818c43f1d', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '50c2e576-0aa3-405f-a11c-eb2935f65b82', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_dblistener', 'action': 'PERMIT', 'id': 'd3b84419-a07e-4870-85e4-5769a51a48fe', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpadmin', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpadmin', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_httpadmin', 'action': 'PERMIT', 'id': '35edcaa3-5738-4f86-b76c-d380ab0b6468', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_httpssl', 'action': 'PERMIT', 'id': '2e417757-f8e3-4651-bffa-2e0334500440', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dbexpress', 'action': 'PERMIT', 'id': '61b59f92-a5e3-4568-afa8-432f7a0c57f4', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'fec914c3-e1c3-4549-aec2-c42dd717e45a', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB003/db_1/ora_http', 'action': 'PERMIT', 'id': 'be0b6731-4dab-4c44-aab0-eac2dacfca65', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_db', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/dbaas/GC3NAACNTSB004/db_1/ora_dblistener', 'action': 'PERMIT', 'id': 'a34ba23d-c8d1-4132-ace3-7146888b0c8f', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_ms', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_p2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/seetharaman.nandyal@oracle.com/paas/JaaS/GC3NAACNTSB005/wls/ora_chttp', 'action': 'PERMIT', 'id': 'ebb19e07-cc6a-4965-885a-fb57cd54d2fa', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpadmin', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_p2_httpadmin', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/GC3NAAC-CDMT-DB1/db_1/ora_httpadmin', 'action': 'PERMIT', 'id': 'bd976906-0826-4e21-b30d-1edae554ec7b', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_chttps', 'action': 'PERMIT', 'id': '45ce7491-fc53-4477-9401-c05ed2f6c893', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a4b8e22a-abe5-46d6-b897-272935b2f895', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/ora_chttp', 'action': 'PERMIT', 'id': 'fe7684e4-9c23-427e-910c-c800a3108874', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/GC3NAAC-CDMT-ODI/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a8f815bd-615f-4b05-8298-61d598e626a5', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_seclist_01', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_secrule_02', 'src_list': 'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_iplist_01', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/gc3hutil_secrule_02', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_rsyslog', 'action': 'PERMIT', 'id': '69329db3-2dcc-4bc2-915f-94ff6347b778', 'description': 'GC3 Hosting Utility Servers'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/tresources', 'action': 'PERMIT', 'id': '22fbbd68-b79c-4a6e-8d6e-24fdc2e44264', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dblistener-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources', 'action': 'PERMIT', 'id': '2e74d95d-6ae5-4872-9ca4-49b16f682b1e', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dbexpress-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources', 'action': 'PERMIT', 'id': '99dd5599-43ad-4ee6-a453-6f14932a9742', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_dbport-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/tresources', 'action': 'PERMIT', 'id': 'dcc5dba0-7fdb-4358-9dce-9d7e7f7e9e72', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources', 'action': 'PERMIT', 'id': 'fcc8d275-d041-4f01-9a4c-641cf9ae9086', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttp', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources', 'action': 'PERMIT', 'id': '96ce4342-7ee9-4f46-a674-dac64a6d3e5c', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2ms_chttp', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources', 'action': 'PERMIT', 'id': 'd945ea2b-dc30-4213-808e-240755dbde87', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '660734e9-0bda-4428-bd32-b406a00bb956', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_dbport-jcs/wls/tresources', 'action': 'PERMIT', 'id': 'dff36792-ce27-42c6-b8c6-332849c3eb6c', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/GC3OSCSA_Seclist', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/secrule_HTTPS_GC3OSCSA', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/secrule_HTTPS_GC3OSCSA', 'disabled': False, 'application': '/oracle/public/https', 'action': 'PERMIT', 'id': '4a2fc532-bb60-48ba-825a-642ac1cecc16', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'e8aef85f-d0a9-448d-b546-1c7b40ff7f33', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources', 'action': 'PERMIT', 'id': 'a12256e5-d43e-42e9-8ef1-a7406f95c4e2', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_p2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-ntag-pod1-d01-jcs/wls/ora_chttp-jcs/wls/tresources', 'action': 'PERMIT', 'id': 'a029b6be-c6fb-4b4f-931f-779755d1469a', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/seetharaman.nandyal@oracle.com/GC3OSCSA_Seclist', 'name': '/Compute-587626604/seetharaman.nandyal@oracle.com/secrule_SSH_GC3OSCSA', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/seetharaman.nandyal%40oracle.com/secrule_SSH_GC3OSCSA', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '58dceca5-3c83-4b10-ade5-d5128d9c4562', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '4b77dfb2-a29f-40cf-90b5-9e669d479d70', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/tresources', 'action': 'PERMIT', 'id': '39c1058a-39da-4053-bcea-37027ae5e343', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_dbport-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources', 'action': 'PERMIT', 'id': 'f6d8f1f4-34c2-4164-9ded-c1239c35141f', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/tresources', 'action': 'PERMIT', 'id': 'f79c69c6-9ad2-4b62-b7ef-16387bcede8c', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_chttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/tresources', 'action': 'PERMIT', 'id': '4a4c0954-7154-4559-8f93-208fb784ecca', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/tresources', 'action': 'PERMIT', 'id': '93ef46ba-47d6-4d37-b7ff-418f06f7d4ee', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'acd7bcf0-5ada-4cbe-ba47-5282de7dfb87', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ef2c6332-3dfe-4299-bd51-dcf0c96a4de9', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/NTAG_POD1', 'name': '/Compute-587626604/eric.harris@oracle.com/emh-home-ip_NTAG_POD1', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/emh-home-ip', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/emh-home-ip_NTAG_POD1', 'disabled': False, 'application': '/oracle/public/all', 'action': 'PERMIT', 'id': '7a9ab679-552e-4353-aabc-c75af8274ca0', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '959ce11e-8160-43ce-9dac-af1c3e3f31a9', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dbconsole-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources', 'action': 'PERMIT', 'id': '1347583c-cbd9-4d32-92c3-ac8de39718a7', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources', 'action': 'PERMIT', 'id': 'a11c15b3-54b3-4ff3-bae2-c03abe7dbee6', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '1a645af2-2974-43e0-9072-c34faf6e44a2', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources', 'action': 'PERMIT', 'id': '9e0980f6-af0b-4a70-a71f-d2deb175b2e8', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_httpssl-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '809f8336-02ff-40c4-8c8c-eae0bb020616', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/NTAG_POD', 'name': '/Compute-587626604/eric.harris@oracle.com/NTAG_POD-public-ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/NTAG_POD-public-ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '268fb759-e95b-40b3-9b2b-a06490bc6f2a', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources', 'action': 'PERMIT', 'id': '32f79b8d-b0c4-4206-b40e-7f224ad81eba', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '425cafd4-736c-47b9-bd87-6dce4377c4be', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '3c34a7b4-f7cd-462a-86a9-692edd66f7a0', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_seclist_01', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/gc3hutil_secrule_01', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/gc3hutil_secrule_01', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '354c2523-e7fe-4b3f-a755-38d0a4c63bfd', 'description': 'GC3 Hosting Utility Servers'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dbconsole-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '2beb4c7d-826d-42c6-9b32-7feaba3f8124', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '2638c8b7-f865-4985-b618-011c9d4441fc', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '7cc5113f-05cf-41c8-a24b-b9d72671c040', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '8b909af0-34fd-4f0c-afa9-20a360b8b7c0', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '85b5a73c-7258-42a1-ab56-869ba3ba05e4', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dbexpress-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '74c315df-130d-4d3c-8ba2-c104dbc93644', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ae4a6eb2-c6fc-4c70-8d58-2d171aa36885', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a158359b-7fc6-44a4-b5f3-311d455771fc', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_ahttps-JCS/lb/tresources', 'action': 'PERMIT', 'id': '2b8f5892-a3a8-4a55-996c-2548007d67e8', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_http-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '120b212b-4979-42b1-ad85-d9dd1887dc53', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_dbport-JCS/wls/tresources', 'action': 'PERMIT', 'id': '853be60e-f794-4d10-acdf-a31520cc0780', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ahttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ahttps-JCS/wls/tresources', 'action': 'PERMIT', 'id': '7fd4343a-a509-4d5e-8de5-c06cbd59c7c8', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_chttps-JCS/tresources', 'action': 'PERMIT', 'id': '299029b4-6916-4c1a-b4f0-c6a878866d02', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '0c66d6d9-1a26-4513-b4cd-d8f3d94e01d1', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_admin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ahttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources', 'action': 'PERMIT', 'id': '364385db-d8d5-42ad-ab23-30a6cb697262', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ahttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/tresources', 'action': 'PERMIT', 'id': '052a83d0-264a-4fa4-a9b9-c066276c718c', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_chttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/tresources', 'action': 'PERMIT', 'id': '8c66afe7-e6d7-4d9b-b617-589cf842f23c', 'description': 'Permit public access to https Application Context port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '2a3cf0b7-2d89-4409-84db-37a82ca9b1f7', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_http-DBCS/db_1/tresources', 'action': 'PERMIT', 'id': '5cfd0ec2-9bc2-4c6f-bf61-73f288e21936', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_chttp-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/tresources', 'action': 'PERMIT', 'id': 'f12ac69f-8f8d-4c52-ad1e-910a462c08e0', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dbconsole-DBCS/db_1/tresources', 'action': 'PERMIT', 'id': 'c5292c9d-c2b3-4f4e-960e-e1e9a031127a', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources', 'action': 'PERMIT', 'id': '3eae2817-7595-48c0-b7fc-6e0745554f97', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9f3fc3a4-edbb-45af-a5df-2106b2708711', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '5a322601-83a2-4a43-b67e-15bd05355c86', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttp', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_chttp-JCS/wls/tresources', 'action': 'PERMIT', 'id': '741239d6-cb3e-4516-b270-6759d7785936', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_soar_secrule_01', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_soar_secrule_01', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '26f52559-aecf-4f3e-87f0-71608331a982', 'description': 'NAAC/SOAR allow SSH'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/tresources', 'action': 'PERMIT', 'id': 'e8258118-3c07-446a-aaf2-5a9bd5025f3d', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '412ebe9d-b7f2-42d2-afde-5e46a9049634', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/NTAG_POD', 'name': '/Compute-587626604/eric.harris@oracle.com/NTAG_POD-public-https', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/NTAG_POD-public-https', 'disabled': False, 'application': '/oracle/public/https', 'action': 'PERMIT', 'id': 'db912f42-8ae4-4831-bb06-97a11717137b', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '5d7bfdc2-b70a-461d-b7ae-93918b301246', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '08c94820-ab8c-45e7-8d63-157429591767', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttp', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_chttp-JCS/lb/tresources', 'action': 'PERMIT', 'id': '630c63d0-9a89-48b2-8bb7-99eb20895948', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a9274fd1-7df1-47a3-b385-2a6d87e02ea7', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbrepo_repodbport', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbrepo_repodbport', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_repodbport-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/tresources', 'action': 'PERMIT', 'id': 'be5c42b7-b68b-4bd1-af43-70bf0f597d73', 'description': 'Permit connection to Database Service from GoldenGate Service'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/tresources', 'action': 'PERMIT', 'id': '79471830-c1ef-4851-b5e1-6321dc00fbb1', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_httpssl-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'a3a8cdd4-11dc-45ee-9110-38929b6678f9', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/tresources', 'action': 'PERMIT', 'id': '171b0263-b97a-42c1-b3af-436e35a4ca9f', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_chttps-JCS/lb/tresources', 'action': 'PERMIT', 'id': '56aa9897-24e0-4e06-a51f-502c88faee28', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_chttp', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/tresources', 'action': 'PERMIT', 'id': '8ce4ff0a-8dba-46a2-b89c-4afc3e37d0c5', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/tresources', 'action': 'PERMIT', 'id': 'da3d94ee-bc42-4a0d-8e4c-762216d2d6a4', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'f52b1bb2-9697-455c-9b03-4092b0089dd7', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources', 'action': 'PERMIT', 'id': '99d0c9a9-9857-4aa5-926e-2406000e43bf', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dbexpress-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources', 'action': 'PERMIT', 'id': '97d99997-af2b-4ff7-9a37-dafd99eaa7ca', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2ms_chttp', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources', 'action': 'PERMIT', 'id': 'a03f67a2-0191-4c57-9d47-2e0e7c495725', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_chttps-JCS/wls/tresources', 'action': 'PERMIT', 'id': '5b462183-c484-4312-854c-07b143b02b00', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_httpssl-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources', 'action': 'PERMIT', 'id': 'c10b9d7c-ced7-48cf-9a1c-3b455924ef0e', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources', 'action': 'PERMIT', 'id': '4f954b2a-182e-4cf3-9d60-1fcdcac2770a', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/tresources', 'action': 'PERMIT', 'id': 'c0c8b495-0ef0-4c3a-83c3-23125290585c', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dblistener-DBCS/db_1/tresources', 'action': 'PERMIT', 'id': 'bdb54c20-5292-4703-b6d3-9ef17278cf68', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9ec2b3d1-f7a2-4fc3-8fbf-5d0c0a0bfc14', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': 'edaff0dd-6a1b-44b6-8bab-0c0dc41e5f0b', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dbexpress-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '0e62f784-8628-4789-ac23-002e6f6f7771', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_p2otd_ahttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_ahttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/tresources', 'action': 'PERMIT', 'id': '91b0ec34-cabd-4afc-9d44-b2730040de12', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': 'c5a5201a-ed91-40f6-a55c-869bd6183378', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dbconsole-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources', 'action': 'PERMIT', 'id': '852e1b2e-02b2-4fbe-b98d-1f7136eb6b13', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'c7db45ec-9699-4dd8-8210-849254fc1a5a', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_httpssl-DBCS/db_1/tresources', 'action': 'PERMIT', 'id': '0fd2f145-c366-426e-8cf8-272d904dbbc7', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'fb4ca61a-6b19-4977-b3fd-26ba4999d3c3', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '055a6e82-57ce-47d3-8983-44c1bd0b2848', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/ora_chttp-JCS/tresources', 'action': 'PERMIT', 'id': 'c9bf82b5-f8c9-4dec-a6ef-3d2aa74aca8c', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'db49238d-8f46-45d1-98c6-1fb918060ac9', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/tresources', 'action': 'PERMIT', 'id': 'bc4e53aa-b9af-4c2f-9888-8ee058f5a1bd', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources', 'action': 'PERMIT', 'id': 'c54fdd4a-2f5d-4f63-8182-3297438d7dd9', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_http-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '46665562-04fa-4e8b-be03-eeba424a7a55', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '1e7b62ea-3995-4fb7-a56c-7a180fdf0132', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources', 'action': 'PERMIT', 'id': 'a1044826-5f2f-4836-80d1-1f319505d55f', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'c41773c9-9fdd-4de4-99da-9f2c37e9162c', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources', 'action': 'PERMIT', 'id': 'f5b0221e-dc72-4c03-9fd4-d38023973d24', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_dbexpress-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources', 'action': 'PERMIT', 'id': '34ca229e-98a4-4647-b5aa-3ba267f8d39d', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ad98c929-d641-4014-898a-cca69520456f', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '2ac82279-b3cb-4370-ad8c-c4343bfa3fc8', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/tresources', 'action': 'PERMIT', 'id': 'f9b25c3d-8c31-461d-a21f-f15f97c6490f', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_dbport-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/tresources', 'action': 'PERMIT', 'id': '7fccc884-7f99-43c4-a131-885f5f3a31ea', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_httpssl-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources', 'action': 'PERMIT', 'id': '93935155-1f9c-4ed5-a02e-1e888b8c6cb1', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '6926d49d-6df3-466c-8d76-47bacdd60776', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_chttp', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/tresources', 'action': 'PERMIT', 'id': 'f9dae2f4-dec6-4d15-a9ff-ddc33f7918ba', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagocsd801/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_http-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/tresources', 'action': 'PERMIT', 'id': '928b6606-ce1c-40b3-a490-01f19c2d71e8', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagdevm702/lb/tresources', 'action': 'PERMIT', 'id': 'ef734c45-8e02-4766-8185-1d1c1901cf71', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/NAAC-CDMT-D03-JCS/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'd450206c-884e-43fd-855b-1bd61c3eb6d2', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_httpssl-soacsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'd1899f1b-ec99-4c3f-8f99-95eb1d9172af', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dblistener-soacsdb/db_1/tresources', 'action': 'PERMIT', 'id': '66aedd05-491d-477e-89ab-7acb7f841719', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '47bc4aff-603a-43d2-8bb8-e4f8ff828760', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dbexpress-DBCS/db_1/tresources', 'action': 'PERMIT', 'id': '7fa1e2f4-d647-43d8-82fa-62dfa997f271', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagocsd801/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3ntagocsd802/wls/tresources', 'action': 'PERMIT', 'id': '21c4b69e-b535-46d8-967b-9dca16975880', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/NAAC-CDMT-D03-DBCS/db_1/ora_dblistener-DBCS/db_1/tresources', 'action': 'PERMIT', 'id': 'd367c2f2-f8ba-4fb1-b7e7-1b199093b1dc', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9c95e65f-abd0-4cf8-997d-fb6db1a82eb1', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/tresources', 'action': 'PERMIT', 'id': '708bd83e-18ff-47f5-a087-46cd74ed6d5e', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/tresources', 'action': 'PERMIT', 'id': 'c8dc9a7b-2c85-4481-baea-a08ef0b8c232', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'd1d49d0c-51ab-48cf-8996-c58093c1365a', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_p2otd_chttp', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/lb/tresources', 'action': 'PERMIT', 'id': 'f53d5e2a-8dfa-41c9-b0b1-0dd07f9ddfb5', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/SOA/gc3ntagocsd803/wls/tresources', 'action': 'PERMIT', 'id': 'b31490ac-8996-4036-8359-4f0417b0d2fe', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbreporac_repodbportrac', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/ora_ggcs2dbreporac_repodbportrac', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/ora_repodbportrac-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/tresources', 'action': 'PERMIT', 'id': '11c441f6-bd7d-4615-a224-6f33601859e9', 'description': 'Permit connection to Database Service db_listener in case RAC from GoldenGate Service'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_p2admin_ahttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ahttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/tresources', 'action': 'PERMIT', 'id': 'dde17d2b-d53f-404c-a7b1-23d0ef8eeff0', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '0cc77193-df68-432a-b153-60016be68999', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '8fb83b5a-b1cd-4f92-ad3b-d68d5902f2cb', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d03-soacsdb/db_1/ora_dblistener-soacsdb/db_1/tresources', 'action': 'PERMIT', 'id': '3818842f-37d1-491e-a27a-07032a30a5ba', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '5b466504-c874-4eef-bcb2-5bea27ba01c4', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/tarek.orfaly@oracle.com/torfaly_seclist', 'name': '/Compute-587626604/tarek.orfaly@oracle.com/torfaly_secrule', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/tarek.orfaly%40oracle.com/torfaly_secrule', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'bd68765b-f085-4b05-854f-342fc7d66eff', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'df5e2e90-7bf2-4c62-b31a-4db2232aabbd', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT', 'name': '/Compute-587626604/eric.harris@oracle.com/emh-home-ip_CDMT', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/emh-home-ip', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/emh-home-ip_CDMT', 'disabled': False, 'application': '/oracle/public/all', 'action': 'PERMIT', 'id': '915e048e-5603-45eb-a345-193962fb1be7', 'description': 'Allow traffic to CDMT'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_chttp-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/tresources', 'action': 'PERMIT', 'id': '88d2b383-afa5-452d-af6f-0eff3e60b719', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/ora_chttps-587626604/eric.harris@oracle.com/paas/SOA/gc3ntagpod1d03soacs/tresources', 'action': 'PERMIT', 'id': 'bb24898f-23cc-4e29-aabc-6a366690f929', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d02-dbcs/db_1/ora_dbexpress-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': 'ba960c47-b0d5-4a95-afec-d588ca7909e2', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'b15e2f23-02ad-4e7d-bfc7-a414822a106b', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3ntagdevm701/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/ora_http-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3ntagdevm701/db_1/tresources', 'action': 'PERMIT', 'id': 'ab3951dc-12be-41ce-a797-0818d403e9eb', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_bdc_infraadmin', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/sys_infra2bdc_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/sys_infra2bdc_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ad29c2b3-6030-4fdd-8053-c9dafe07cea9', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-ntag-pod1-d01-jcsdb/db_1/ora_dbconsole-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '8c19f196-2bca-46c2-a5fd-e4643743b5b0', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '3c9451c7-ae46-4d1c-acf5-d7de4c241ce7', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_admin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '2f182c58-e781-4cb0-980f-a88cf4226f28', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/tresources', 'action': 'PERMIT', 'id': '788c6e13-ccfc-4d00-b545-81259146eb94', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/tresources', 'action': 'PERMIT', 'id': '5eb114dd-fa83-4545-bc06-e979a2365828', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ahttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_ahttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/tresources', 'action': 'PERMIT', 'id': 'b7d3bd53-5d0e-40ba-a363-7670e6963ae7', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_httpssl-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources', 'action': 'PERMIT', 'id': 'cfd3ae74-e171-4886-9e23-144956842d74', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dbconsole-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources', 'action': 'PERMIT', 'id': '702377f7-5b61-42d5-adf0-5fbcfccb978d', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_p2otd_chttp', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/lb/tresources', 'action': 'PERMIT', 'id': '3214d01b-0710-4310-8206-eabb24e32cd2', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_httpssl-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources', 'action': 'PERMIT', 'id': 'a087c5b2-b158-4423-8a09-dea270ba22ba', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'e7324764-fd6a-45a3-b958-a1b81141fa46', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dbconsole-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources', 'action': 'PERMIT', 'id': '34a65910-260f-4c9d-9f0f-eeb1629b30f8', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dbconsole-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources', 'action': 'PERMIT', 'id': 'ecebce7c-733c-4221-8ce4-b412d7703e15', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_nw', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9edacadf-fdb1-4a7e-af5b-cd28411fa644', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/tarek.orfaly@oracle.com/ossa_seclist', 'name': '/Compute-587626604/tarek.orfaly@oracle.com/ossa_secrule', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/tarek.orfaly%40oracle.com/ossa_secrule', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'cd2a9d53-0268-42e8-8bdc-5904e6b634e1', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ec027422-4e49-4774-bffd-ef857cad4671', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'dc9c19aa-4765-4eee-95b1-3b1a66c412ba', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/tresources', 'action': 'PERMIT', 'id': 'b0d93e63-6b29-4b2e-aee4-86ff231548a7', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources', 'action': 'PERMIT', 'id': '148d0f97-18eb-4e69-9054-27adb81f2cf6', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dbconsole-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '8bf66a9f-8bf3-49a1-9851-f7888ebff785', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a9839b1c-45d9-41d2-8120-8ca855481494', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '4bc9934e-76e5-4927-8ad7-813c58a896c5', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dbexpress-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources', 'action': 'PERMIT', 'id': '6063b0fc-45a9-4d37-abd0-45741cda0870', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_dbport-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources', 'action': 'PERMIT', 'id': '491a9d7f-13c2-4fc3-92b1-9b07e752c74b', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'eb4ae542-0976-400c-b53b-b933d8fed01f', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/ossa_gscc_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/ossa_gscc_SSH', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/ossa_gscc_SSH', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'd87c6567-321b-4bd2-91f6-b7b04b73a869', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/ora_chttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/tresources', 'action': 'PERMIT', 'id': '8d6cc030-6e69-4fd2-9b9f-ca0eac2b9014', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_dbport-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/tresources', 'action': 'PERMIT', 'id': '310b9c4c-fd48-4d19-b66b-7f7e5beb96fd', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ms', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2ms_chttp', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources', 'action': 'PERMIT', 'id': '59e397f3-0624-48de-bdcd-c6b1dfc45c79', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm705_secList', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm705_secRule', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/gc3ntagdevm705_secRule', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'b592cba8-78e7-443d-a525-b40b19459cbc', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_httpssl-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '1a3e50f6-e28a-4fea-bb80-57421235ccfc', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_admin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '71545d97-259e-460e-881f-54e34bdff7ae', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_admin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/tresources', 'action': 'PERMIT', 'id': '4dc74751-03f5-4154-a725-5dfae98bf880', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_admin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '17a9dd57-1cc0-45b9-af0b-6c61de4e1555', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_admin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/SOA/gc3ntagrogr605/wls/tresources', 'action': 'PERMIT', 'id': 'dbf48b96-3ced-4a77-b3db-40b695505f2f', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '08158e25-33fa-4f9a-aa53-df48c75fa8c7', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_master_nw', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_nginx', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_nginx', 'disabled': False, 'application': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_nginx-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/tresources', 'action': 'PERMIT', 'id': 'c5e54cf2-4d3f-49f9-b375-dda49bdf8198', 'description': 'NGINX Proxy'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'e9695be8-fba7-441d-8c1a-d3bfd3eae6d2', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr603/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/tresources', 'action': 'PERMIT', 'id': '8cb21a18-1697-4b9b-860d-8569c4959ef8', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_db', 'name': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/siva.subramani%40oracle.com/dbaas/gc3ntagrogr602/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/ora_dblistener-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr602/db_1/tresources', 'action': 'PERMIT', 'id': 'fb2e5f0e-8b7c-46fd-9f96-26d8f7c2cc55', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dbexpress-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '7f0146ab-8315-4e62-b2e7-54033da62eab', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/siva.subramani@oracle.com/dbaas/gc3ntagrogr603/db_1/ora_db', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'dcb5768b-acd7-43b4-824d-80a4071456d1', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_admin', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/wls/tresources', 'action': 'PERMIT', 'id': 'b861c9ad-f85b-4b2b-aa80-0bd83ada363c', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/ora_ahttps-587626604/mayurnath.gokare@oracle.com/paas/JaaS/gc3ntagrogr604/lb/tresources', 'action': 'PERMIT', 'id': 'a5a0dd17-f8fe-4bdf-a3df-a9f8433badb5', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_otd', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_p2otd_chttp', 'disabled': True, 'application': '/Compute-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/ora_chttp-587626604/mayurnath.gokare@oracle.com/paas/APICS/gc3ntagrogr606/lb/tresources', 'action': 'PERMIT', 'id': '3b6f9154-3301-4488-a6d0-fb17b7b42fd5', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'a5def31a-f6f1-45cd-ae6f-4aa24b3e9838', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '97349e7f-85db-437f-b913-9b9f8650f697', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dbconsole-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '0261ea8f-5da9-4cc4-845c-b5b311965f68', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm706_secList', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm706_secRule', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/gc3ntagdevm706_secRule', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'c62607e9-2cde-4500-b8b7-c18dcd68a88f', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_httpssl-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': 'ba4974be-01aa-46e3-bf32-c2d5cda9a105', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_http-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'fa515e4d-21ae-4362-ba8a-ddb858a862d9', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '6ff2cd6a-b885-403d-b5cc-2ad330ca6154', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_httpssl-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '5d787c13-b6c5-4eb8-b739-b70efc178906', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_http-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '651bdc1a-3a97-4519-bb61-d0bb7422fde3', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_cdmt_secrule_05', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_cdmt_secrule_05', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/openvpn-udp-1194', 'action': 'PERMIT', 'id': '62d28da9-9bf0-4170-a3d8-00f015014ef1', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '0b46b304-2bc0-4231-a85d-ecf18f677b03', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_http-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '775f87b5-d283-4d70-857b-51bce7d2ebf6', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '61a26038-24a5-44e8-b50d-16f08014633c', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_gg_infraadmin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/sys_infra2gg_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/sys_infra2gg_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9b0219c2-de2d-44ff-891e-fe3028980bdb', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '392b0ed0-ef78-495a-985a-7039d8b5112d', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_httpssl-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources', 'action': 'PERMIT', 'id': '6c113314-9655-40f3-b16f-0e04b5353679', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm708_secList', 'name': '/Compute-587626604/mayurnath.gokare@oracle.com/gc3ntagdevm708_secRule', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/mayurnath.gokare%40oracle.com/gc3ntagdevm708_secRule', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'e4f7c028-b315-4ecf-9541-07bf445a234e', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '1dd91dfa-09dd-468c-bf86-60c037027245', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_dbport-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources', 'action': 'PERMIT', 'id': 'c1b17271-a261-4ee6-b745-4a22b622c972', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_chttp-jcs/wls/tresources', 'action': 'PERMIT', 'id': 'de76b81f-451a-43ef-abcd-eb725dfed3dd', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_chttp-jcs/tresources', 'action': 'PERMIT', 'id': '3f276264-9594-4b48-a808-f051178381fb', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_dbport-jcs/wls/tresources', 'action': 'PERMIT', 'id': '90424ef9-4766-4616-8024-c4a8a9a23ad1', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '52818fff-3a4d-481b-8bf0-179a24ad74c3', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_chttp-jcs/wls/tresources', 'action': 'PERMIT', 'id': '54b17ade-2748-457c-8b44-a4e2fefe0423', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_chttps-jcs/lb/tresources', 'action': 'PERMIT', 'id': '21918d4d-c4b9-48b0-b456-90fdac6a385f', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls2db_dbport', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls2db_dbport', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_dbport-jcs/wls/tresources', 'action': 'PERMIT', 'id': 'b5a170e9-ed03-4b91-93c2-c9a584cfc19e', 'description': 'Permit connection to Database Service from WLS'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dbexpress-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '6aa632f8-560a-4ba6-8516-3e50fb5a289b', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '48628194-9a29-487f-ab3c-0ce6235514bc', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_master_nw', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ambari', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_p2bdcsce_ambari', 'disabled': False, 'application': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_ambari-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/tresources', 'action': 'PERMIT', 'id': '70ad744f-2b4a-4577-87b4-a698dff2f18d', 'description': 'Ambari REST'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '1999e85d-37fb-4ee6-835b-7c3f7e07beeb', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '0f541a5b-16ca-4b67-aefa-7f14769e0be6', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '69880c7a-98ee-4729-af50-5ee1a65fcdc5', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_chttps-jcs/wls/tresources', 'action': 'PERMIT', 'id': 'e6cb7ec8-1e6f-4c6f-81e2-782a4a589f41', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/ossa_gscc_seclist_01', 'name': '/Compute-587626604/eric.harris@oracle.com/ossa_gscc_HTTPS', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/ossa_gscc_HTTPS', 'disabled': False, 'application': '/oracle/public/https', 'action': 'PERMIT', 'id': 'b0b9a844-4586-4c59-b5ee-c86ce2d102b4', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_chttps-jcs/wls/tresources', 'action': 'PERMIT', 'id': '6fba6324-aa5a-4fac-a5b0-6f954b0cbaa4', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '4be57feb-a626-4a5d-832a-7a1bb25244af', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_chttp-jcs/tresources', 'action': 'PERMIT', 'id': 'd88cc64c-9c21-475f-bb12-a5af2b82b666', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '12e9d94d-e4c0-4409-9d70-b6e98542bf6f', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '60ccd29b-8be6-4087-8af4-61e2da8467c5', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources', 'action': 'PERMIT', 'id': 'a36e7df4-0c0e-413b-a38a-c7e1276d86db', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/GC3NAACCDMT_PSFT', 'name': '/Compute-587626604/eric.harris@oracle.com/gc3_naac_cdmt_secrule_06', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/gc3_naac_cdmt_secrule_06', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/https-943', 'action': 'PERMIT', 'id': '3154a7d3-2b44-4351-998e-0cc430a4dcbf', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/tresources', 'action': 'PERMIT', 'id': '43b5ae9c-004e-42a3-b62a-f4f9141418c4', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_http-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources', 'action': 'PERMIT', 'id': 'f759a8a4-e90e-46fa-8f4a-97f52c6494b2', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/ora_chttps-jcs/tresources', 'action': 'PERMIT', 'id': 'e4cc6a49-0bf6-404d-a2bd-1c3ab2335289', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9b7940b2-1d92-4706-a11e-7ccb1fda5be0', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dbexpress-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources', 'action': 'PERMIT', 'id': '160010c5-dd1e-4f2e-88d0-1698da938462', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ad2d1646-a7a0-4154-8e4b-100810dd523d', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources', 'action': 'PERMIT', 'id': 'ff48355e-417d-4b5e-8521-e319031728de', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'dd58e5a6-d37c-4cef-bdee-68984569613f', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbexpress', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbexpress', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dbexpress-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '53bed8ad-0df6-4ebc-aa01-c43820868d47', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'ef776742-95b1-44c7-923b-03056f564348', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_chttps-jcs/lb/tresources', 'action': 'PERMIT', 'id': 'd2bb5373-8131-4616-a734-4f0a8e27bf57', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ahttps-jcs/wls/tresources', 'action': 'PERMIT', 'id': '1449dfef-aee9-41d4-9ff1-570e1f541765', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '5a997922-a2de-493d-a9e5-6ed07880e65f', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'b36acc99-531a-4a92-a23e-e096cf6c6f23', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_GGCSRepSecList', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_bhttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_permit_ggcsrep_bhttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/ora_bhttps-587626604/manjunath.udupa@oracle.com/paas/ggcs/gc3gc3hsamp504/GGCSRep/tresources', 'action': 'PERMIT', 'id': '8e1a58ed-43e3-4636-905d-c165772395f6', 'description': 'Permit public access to https Application Context port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/tresources', 'action': 'PERMIT', 'id': 'c7f6f431-d61e-4f25-aacd-c7f2ddeaec4a', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d05-dbcs/db_1/ora_dbconsole-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '6febbd2a-f6a0-4d9f-904d-5289f956a629', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_p2otd_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_ahttps-jcs/lb/tresources', 'action': 'PERMIT', 'id': 'e2e8d11b-df8b-4c4f-8295-bc64cc3b6cba', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'be941961-9ee3-4295-a19f-0ec105ad4c58', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '4975feab-51fe-408d-84a3-09406e19ce00', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '92585996-1d61-43b0-afa8-38ee1b2473f8', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_httpssl', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_httpssl-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '6bc4f45f-015b-4f33-b21a-08659378f1e2', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-soar-d02-dbcs/db_1/ora_dblistener-dbcs/db_1/tresources', 'action': 'PERMIT', 'id': '7ef4b1fe-0263-4f9c-bf5f-e309570df9cc', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dbconsole-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'e10807a2-bace-4a83-b0f5-0e57def86d9d', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/tresources', 'action': 'PERMIT', 'id': 'ef4a059e-54a9-4ef6-89cf-87127938da07', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'e0ac04f0-3faf-43f7-88af-07b935408000', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dblistener-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources', 'action': 'PERMIT', 'id': '7cabe311-805b-483f-a5ef-e5f07d114274', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/tresources', 'action': 'PERMIT', 'id': 'a51a4372-a3b1-41a4-afb2-b92999275026', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '25cfe5c2-9f86-4a40-9834-cc95e1e9d95e', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls_infraadmin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/sys_infra2wls_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/sys_infra2wls_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '42c3ca42-5e0b-46b1-bf14-879b21fd0603', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_chttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_p2otd_chttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/tresources', 'action': 'PERMIT', 'id': '3b4f1474-c669-42c9-8a5a-f3c1b351fa73', 'description': 'Permit public access to https content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_http', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_http', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_http-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': '2cec4212-940e-4a6f-aecb-aa7bd2616fff', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_admin', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ahttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources', 'action': 'PERMIT', 'id': '595038ee-357f-47d5-83ce-b056cde495a9', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': 'f7c9d7f7-c248-46b5-84b5-f1e1bef072ac', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbconsole', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_dbconsole', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_dbconsole-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources', 'action': 'PERMIT', 'id': 'ba2ceff4-bdf8-4564-aea8-a036a14d6494', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_admin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ahttps', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_p2admin_ahttps', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ahttps-jcs/wls/tresources', 'action': 'PERMIT', 'id': '687d52fe-5682-4615-894d-407c4d9f9535', 'description': 'Permit public access to https administration port'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/wls/ora_ms', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/ora_chttps-jcs/tresources', 'action': 'PERMIT', 'id': 'eb7df455-ac1f-40ee-95bc-334e7a8e0632', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_sys_ms2db_ssh', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_sys_ms2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '0f7d24d1-1d6c-4c65-aba4-ac93b51af1a1', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '6baf64a9-6ef8-45d5-8fc8-6cd4517d95cc', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_db', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_httpssl', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/dbaas/gc3emeaapcr051/db_1/ora_p2_httpssl', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/ora_httpssl-587626604/dhiru.vallabhbhai@oracle.com/dbaas/gc3emeaapcr051/db_1/tresources', 'action': 'PERMIT', 'id': '65e987f0-6773-42ee-9aef-8323f99192b2', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/ora_chttps-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/tresources', 'action': 'PERMIT', 'id': 'd65b2c7a-da93-49e4-96b3-d386d9e6c5d7', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dblistener', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_p2_dblistener', 'disabled': True, 'application': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_dblistener-jcsdb/db_1/tresources', 'action': 'PERMIT', 'id': 'd7518908-8160-4b6a-aacd-68c575dda830', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '8d19c4fb-f920-4701-8d9a-d736b5c2189d', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_ms', 'name': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/dhiru.vallabhbhai%40oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_p2ms_chttp', 'disabled': True, 'application': '/Compute-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/ora_chttp-587626604/dhiru.vallabhbhai@oracle.com/paas/JaaS/gc3emeaapcr052/wls/tresources', 'action': 'PERMIT', 'id': '7e6353f9-b375-4111-bef0-57e20369b77e', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_p2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '9095f81c-b9a0-4e5f-9055-7b050f3bfea6', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/sys_infra2db_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d05-jcsdb/db_1/sys_infra2db_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '212d5f22-a7b3-4767-b79d-b04a70b7aaff', 'description': 'DO NOT MODIFY: Permit PSM to ssh to database'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_admin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '1ae6002a-e022-49dd-97f1-6844b652546b', 'description': 'Permit ssh access to nodes'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d05-jcs/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '4ce42a31-4d18-49c6-8d5e-1218386ad000', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_db', 'name': '/Compute-587626604/eric.harris@oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/dbaas/gc3-naac-cdmt-d04-jcsdb/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '7d824c81-b981-49cc-bcf7-c557c24fd0ca', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/eric.harris@oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/sys_infra2otd_admin_ssh', 'src_list': 'seciplist:/oracle/public/paas-infra', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/eric.harris%40oracle.com/paas/JaaS/gc3-naac-cdmt-d04-jcs/lb/sys_infra2otd_admin_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '332c5d52-226f-48cc-9a32-f1d57398946a', 'description': 'DO NOT MODIFY: Permit PSM to ssh to admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_master_nw', 'name': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_trusted_hosts_bdcsce', 'src_list': 'seciplist:/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_trusted_hosts_bdcsce', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/ramesh.dadhania%40oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_trusted_hosts_bdcsce', 'disabled': False, 'application': '/Compute-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/ora_hosts_bdcsce-587626604/ramesh.dadhania@oracle.com/paas/BDCSCE/rdbdcstest/1/bdcsce/tresources', 'action': 'PERMIT', 'id': 'bbcc7d93-bb65-4b2b-81bd-9daef56b6ceb', 'description': 'DO NOT MODIFY: Permit specific IPs to access BDC port '}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/tresources', 'action': 'PERMIT', 'id': '14a23fe1-271f-4557-b218-3b3a7d96eb96', 'description': 'Permit https connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/tresources', 'action': 'PERMIT', 'id': 'ceb2a493-1e23-442c-a30d-8d60c1aae9cc', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttp', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_p2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/tresources', 'action': 'PERMIT', 'id': 'f65e607d-7331-4b61-b129-d665e072bbc8', 'description': 'Permit public access to http content port'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_ssh', 'src_list': 'seciplist:/oracle/public/public-internet', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_p2_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '1e1534ca-f68b-41da-a584-204ba7c68869', 'description': ''}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/lb/ora_otd_infraadmin', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/sys_wls2otd_ssh', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/JaaS/gc3gc3hsamp502/wls/ora_wls_infraadmin', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/JaaS/gc3gc3hsamp502/sys_wls2otd_ssh', 'disabled': False, 'application': '/oracle/public/ssh', 'action': 'PERMIT', 'id': '59b40f59-938a-443c-bce9-463b114ee176', 'description': 'DO NOT MODIFY: Permit WLS admin host to ssh to OTD admin host'}, {'dst_is_ip': 'false', 'src_is_ip': 'true', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_db', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_trusted_hosts_dblistener', 'src_list': 'seciplist:/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_trusted_hosts_dblistener', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_trusted_hosts_dblistener', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/ora_dblistener-587626604/manjunath.udupa@oracle.com/dbaas/gc3gc3hsamp501/db_1/tresources', 'action': 'PERMIT', 'id': '07eca2ed-0822-49cf-aff1-4411c79336b8', 'description': 'DO NOT MODIFY: A secrule to allow specific IPs to connect to this db'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttp', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttp', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_chttp-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/tresources', 'action': 'PERMIT', 'id': 'f9d125ab-88b7-446a-bc29-b7625925e9e4', 'description': 'Permit http connection to managed servers from OTD'}, {'dst_is_ip': 'false', 'src_is_ip': 'false', 'dst_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/wls/ora_ms', 'name': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttps', 'src_list': 'seclist:/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/lb/ora_otd', 'uri': 'https://compute.uscom-central-1.oraclecloud.com/secrule/Compute-587626604/manjunath.udupa%40oracle.com/paas/SOA/gc3gc3hsamp503/ora_otd2ms_chttps', 'disabled': False, 'application': '/Compute-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/ora_chttps-587626604/manjunath.udupa@oracle.com/paas/SOA/gc3gc3hsamp503/tresources', 'action': 'PERMIT', 'id': '80f023f5-6aab-4863-9aa3-c45bb2f6d7ec', 'description': 'Permit https connection to managed servers from OTD'}]} |
# SPDX-License-Identifier: MIT
# Copyright (c) 2020 Akumatic
#
#https://adventofcode.com/2020/day/13
def readFile() -> tuple:
with open(f"{__file__.rstrip('code.py')}input.txt", "r") as f:
timestamp = int(f.readline().strip())
values = f.readline().strip().split(",")
bus_ids = [{"value": int(values[i]), "index": i}
for i in range(len(values))
if values[i] != "x"]
return timestamp, bus_ids
def part1(timestamp: int, bus_ids: list) -> int:
min = timestamp
min_id = None
for bus in bus_ids:
waiting_time = bus["value"] - (timestamp % bus["value"])
if waiting_time < min:
min = waiting_time
min_id = bus["value"]
return min * min_id
def part2(bus_ids: list) -> int:
time, step = 1, 1
for bus in bus_ids:
while (time + bus["index"]) % bus["value"] != 0:
time += step
step *= bus["value"]
return time
if __name__ == "__main__":
input = readFile()
print(f"Part 1: {part1(*input)}")
print(f"Part 2: {part2(input[1])}") | def read_file() -> tuple:
with open(f"{__file__.rstrip('code.py')}input.txt", 'r') as f:
timestamp = int(f.readline().strip())
values = f.readline().strip().split(',')
bus_ids = [{'value': int(values[i]), 'index': i} for i in range(len(values)) if values[i] != 'x']
return (timestamp, bus_ids)
def part1(timestamp: int, bus_ids: list) -> int:
min = timestamp
min_id = None
for bus in bus_ids:
waiting_time = bus['value'] - timestamp % bus['value']
if waiting_time < min:
min = waiting_time
min_id = bus['value']
return min * min_id
def part2(bus_ids: list) -> int:
(time, step) = (1, 1)
for bus in bus_ids:
while (time + bus['index']) % bus['value'] != 0:
time += step
step *= bus['value']
return time
if __name__ == '__main__':
input = read_file()
print(f'Part 1: {part1(*input)}')
print(f'Part 2: {part2(input[1])}') |
class File:
def __init__(self, code: str, name: str, ast):
self.lines = code.splitlines()
self.name = name
self.ast = ast
def line(self, number):
return self.lines[number]
| class File:
def __init__(self, code: str, name: str, ast):
self.lines = code.splitlines()
self.name = name
self.ast = ast
def line(self, number):
return self.lines[number] |
class LogicStringUtil:
@staticmethod
def getBytes(string):
return string.encode()
@staticmethod
def getByteLength(string):
return len(string)
| class Logicstringutil:
@staticmethod
def get_bytes(string):
return string.encode()
@staticmethod
def get_byte_length(string):
return len(string) |
# MIT License
#
# Copyright (c) 2017 Changsung
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
class BaseStrategy:
''' class for strategy.
write an algorithm in this class'''
__signals = {}
def __init__(self):
pass
def addSignals(self, key, signal):
self.__signals[key] = signal
signal.setStrategy(self)
def getSignal(self, key):
return self.__signals[key].getSignal()
def handleData(self):
raise NotImplementedError()
def setAlphaman(self, alphaman):
self.__alphaman = alphaman
def buy(self, instrument, volume, limit_price=None, stop_price=None, days=None):
self.__alphaman.buy(instrument, volume, limit_price, stop_price, days)
def sell(self, instrument, volume, limit_price=None, stop_price=None, days=None):
self.__alphaman.sell(instrument, volume, limit_price, stop_price, days)
def orderTarget(self, instrument, percentage, limit_price=None, stop_price=None, days=None):
self.__alphaman.orderTarget(instrument, percentage, limit_price, stop_price, days)
def getSchedules(self):
return self.__alphaman.getSchedules()
def getFeed(self):
return self.__alphaman.getFeed()
def get(self, instrument, key, date_idx):
# assert to only access to previous data
feed = self.getFeed()
if isinstance(date_idx, int):
assert(date_idx <= 0)
today_idx = self.__alphaman.getTodayIdx() + date_idx
if today_idx < 0:
today_idx = 0
try:
return feed.getDailyInstrumentData(today_idx, instrument).getBarData(key)
except KeyError:
return feed.getDailyInstrumentData(today_idx, instrument).getExtraData(key)
elif isinstance(date_idx, list):
assert(date_idx[-1] <= 0)
today_idx_list = map(lambda x: x+self.__alphaman.getTodayIdx(), date_idx)
#today_idx_list = list(set(today_idx_list)).sort()
data_list = []
for today_idx in today_idx_list:
if today_idx < 0:
continue
try:
data_list.append(feed.getDailyInstrumentData(today_idx, instrument).getBarData(key))
except KeyError:
data_list.append(feed.getDailyInstrumentData(today_idx, instrument).getExtraData(key))
return data_list
else:
raise Exception('date_idx must be int or list of int')
| class Basestrategy:
""" class for strategy.
write an algorithm in this class"""
__signals = {}
def __init__(self):
pass
def add_signals(self, key, signal):
self.__signals[key] = signal
signal.setStrategy(self)
def get_signal(self, key):
return self.__signals[key].getSignal()
def handle_data(self):
raise not_implemented_error()
def set_alphaman(self, alphaman):
self.__alphaman = alphaman
def buy(self, instrument, volume, limit_price=None, stop_price=None, days=None):
self.__alphaman.buy(instrument, volume, limit_price, stop_price, days)
def sell(self, instrument, volume, limit_price=None, stop_price=None, days=None):
self.__alphaman.sell(instrument, volume, limit_price, stop_price, days)
def order_target(self, instrument, percentage, limit_price=None, stop_price=None, days=None):
self.__alphaman.orderTarget(instrument, percentage, limit_price, stop_price, days)
def get_schedules(self):
return self.__alphaman.getSchedules()
def get_feed(self):
return self.__alphaman.getFeed()
def get(self, instrument, key, date_idx):
feed = self.getFeed()
if isinstance(date_idx, int):
assert date_idx <= 0
today_idx = self.__alphaman.getTodayIdx() + date_idx
if today_idx < 0:
today_idx = 0
try:
return feed.getDailyInstrumentData(today_idx, instrument).getBarData(key)
except KeyError:
return feed.getDailyInstrumentData(today_idx, instrument).getExtraData(key)
elif isinstance(date_idx, list):
assert date_idx[-1] <= 0
today_idx_list = map(lambda x: x + self.__alphaman.getTodayIdx(), date_idx)
data_list = []
for today_idx in today_idx_list:
if today_idx < 0:
continue
try:
data_list.append(feed.getDailyInstrumentData(today_idx, instrument).getBarData(key))
except KeyError:
data_list.append(feed.getDailyInstrumentData(today_idx, instrument).getExtraData(key))
return data_list
else:
raise exception('date_idx must be int or list of int') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.