Commit 6edc9d28 authored by Luis de la Cal's avatar Luis de la Cal
Browse files

Changed grpc calls to client in l3_attackmitigator and...

Changed grpc calls to client in l3_attackmitigator and l3_centralizedattackdetector components and added attack mitigator port and name to constants
parent 06d38829
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -204,7 +204,7 @@ fi
for COMPONENT in $TFS_COMPONENTS; do
    echo "Waiting for '$COMPONENT' component..."
    kubectl wait --namespace $TFS_K8S_NAMESPACE \
        --for='condition=available' --timeout=300s deployment/${COMPONENT}service
        --for='condition=available' --timeout=10s deployment/${COMPONENT}service
    printf "\n"
done

launch_webui.sh

0 → 100755
+1 −0
Original line number Diff line number Diff line
ssh -L 12345:localhost:80 ubuntu@192.168.165.78

log_am.txt

0 → 100644
+3410 −0

File added.

Preview size limit exceeded, changes collapsed.

log_device.txt

0 → 100644
+1539 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −0
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ class ServiceNameEnum(Enum):
    COMPUTE       = 'compute'
    CYBERSECURITY = 'cybersecurity'
    INTERDOMAIN   = 'interdomain'
    L3AM          = 'l3-attackmitigator'
    PATHCOMP      = 'pathcomp'
    WEBUI         = 'webui'

@@ -61,6 +62,7 @@ DEFAULT_SERVICE_GRPC_PORTS = {
    ServiceNameEnum.DLT          .value :  8080,
    ServiceNameEnum.COMPUTE      .value :  9090,
    ServiceNameEnum.CYBERSECURITY.value : 10000,
    ServiceNameEnum.L3AM         .value : 10002,  
    ServiceNameEnum.INTERDOMAIN  .value : 10010,
    ServiceNameEnum.PATHCOMP     .value : 10020,
}
Loading