Update actions and agents to get all tests passing post-refactor

This commit is contained in:
Marek Wolan
2025-01-20 14:07:51 +00:00
parent c521528a0a
commit 18a665e562
5 changed files with 18 additions and 44 deletions

View File

@@ -110,9 +110,9 @@ agents:
permission: PERMIT
src_ip: 192.168.0.10
dst_ip: ALL
src_port: 80
dst_port: HTTP
protocol_name: TCP
src_port: ALL
dst_port: ALL
protocol_name: ALL
src_wildcard: NONE
dst_wildcard: NONE
2:
@@ -131,7 +131,7 @@ agents:
position: 1
permission: DENY
src_ip: 192.168.0.10 # client 1
dest_ip: ALL
dst_ip: ALL
src_port: ARP
dst_port: DNS
protocol_name: ICMP
@@ -153,7 +153,7 @@ agents:
position: 1
permission: DENY
src_ip: 192.168.10.10 # dmz_server
dest_ip: 192.168.0.10 # client_1
dst_ip: 192.168.0.10 # client_1
src_port: HTTP
dst_port: HTTP
protocol_name: UDP
@@ -175,7 +175,7 @@ agents:
position: 2
permission: DENY
src_ip: 192.168.10.10 # dmz_server
dest_ip: 192.168.0.10 # client_1
dst_ip: 192.168.0.10 # client_1
src_port: HTTP
dst_port: HTTP
protocol_name: TCP
@@ -197,7 +197,7 @@ agents:
position: 10
permission: DENY
src_ip: 192.168.20.10 # external_computer
dest_ip: 192.168.10.10 # dmz
dst_ip: 192.168.10.10 # dmz
src_port: POSTGRES_SERVER
dst_port: POSTGRES_SERVER
protocol_name: ICMP
@@ -219,7 +219,7 @@ agents:
position: 1
permission: DENY
src_ip: 192.168.20.10 # external_computer
dest_ip: 192.168.0.10 # client_1
dst_ip: 192.168.0.10 # client_1
src_port: NONE
dst_port: NONE
protocol_name: none

View File

@@ -127,12 +127,12 @@ def test_router_acl_addrule_integration(game_and_agent: Tuple[PrimaiteGame, Prox
"position": 4,
"permission": "DENY",
"src_ip": "10.0.1.2",
"src_wildcard": 0,
"src_port": "HTTP",
"src_wildcard": "NONE",
"src_port": "ALL",
"dst_ip": "10.0.2.3",
"dst_wildcard": 0,
"dst_port": "HTTP",
"protocol_name": "udp",
"dst_wildcard": "NONE",
"dst_port": "ALL",
"protocol_name": "icmp",
},
)
agent.store_action(action)
@@ -155,7 +155,7 @@ def test_router_acl_addrule_integration(game_and_agent: Tuple[PrimaiteGame, Prox
"permission": "DENY", # DENY
"src_ip": "10.0.2.2", # 10.0.2.2 (server_1)
"src_wildcard": 0,
"source_port": "ALL", # ALL
"src_port": "ALL", # ALL
"dst_ip": "10.0.2.3", # 10.0.2.3 (server_2)
"dst_wildcard": 0,
"dst_port": "ALL", # ALL
@@ -424,7 +424,7 @@ def test_network_router_port_disable_integration(game_and_agent: Tuple[PrimaiteG
"network_port_disable",
{
"target_nodename": "router", # router
"port_num": 2, # port 1
"port_num": 1, # port 1
},
)
agent.store_action(action)
@@ -456,7 +456,7 @@ def test_network_router_port_enable_integration(game_and_agent: Tuple[PrimaiteGa
"network_port_enable",
{
"target_nodename": "router", # router
"port_num": 2, # port 1
"port_num": 1, # port 1
},
)
agent.store_action(action)