Hello, I have the following diagram:
@startuml
start
:Entrada do pacote no iptables;
partition "Fechada a política de entrada (linha 1)" {
if (O pacote que entra vem de 10.0.0.1? (linha 2)) then (SIM)
:Rejeitado;
' kill
else (NÃO)
if (O pacote vem de 10.0.0.2 e é destinado à porta 80 tcp? (linha 3)) then (SIM)
:Aceito;
' kill
else (NÃO)
if (O pacote vem da rede 172.20.0.0/16? (linha 4)) then (SIM)
:Aceito;
' kill
else (NÃO)
:Rejeitado (não satisfaz à nenhuma regra);
endif
endif
endif
}
stop
@enduml
I would like to remove the diamond (choose - red squares on image below) and go directly to the end (red arrow).
https://ibb.co/jkG9H1sK